Class: GeographicArea
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- GeographicArea
- Includes:
- DwcSerialization, Housekeeping::Timestamps, Housekeeping::Users, Shared::AlternateValues, Shared::Identifiers, Shared::IsApplicationData, Shared::IsData
- Defined in:
- app/models/geographic_area.rb
Overview
A GeographicArea is a gazeteer entry for some political subdivision. GeographicAreas are presently limited to second level subdivisions (e.g. counties in the United States) or higher (i.e. state/country)
-
“Levels” are non-normalized values for convenience.
There are multiple hierarchies stored in GeographicArea (e.g. TDWG, GADM2). Only when those name “lineages” completely match (via identical string) are they merged.
Defined Under Namespace
Modules: DwcSerialization
Constant Summary collapse
- ALTERNATE_VALUES_FOR =
[:name].freeze
- CACHED_GEOGRAPHIC_AREA_TYPES =
!! If this table changes we need to update this
{ 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze
Instance Attribute Summary collapse
-
#data_origin ⇒ String
Text describing the source of the data used for creation (TDWG, GADM, NaturalEarth, etc.).
-
#geographic_area_type_id ⇒ Integer
The id of the type of this geographic area, index of geographic_area_types.
-
#iso_3166_a2 ⇒ String
Two alpha-character identification of country.
-
#iso_3166_a3 ⇒ String
Three alpha-character identification of country.
-
#level0_id ⇒ Integer
The id of the GeographicArea country that this geographic area belongs to, self.id if self is a country.
-
#level1_id ⇒ Integer
The id of the first level subdivision (starting from country) that this geographic area belongs to, self if self is a first level subdivision.
-
#level2_id ⇒ Integer
The id of the second level subdivision (starting from country) that this geographic area belongs to, self if self is a second level subdivision.
-
#name ⇒ String
The name of the geographic area.
-
#parent_id ⇒ Integer
The id of the parent of this geographic area, will never be self, may be null (for Earth).
-
#tdwgID ⇒ String
If derived from the TDWG hierarchy the tdwgID.
Attributes included from Housekeeping::Users
Class Method Summary collapse
-
.are_contained_in(geographic_area) ⇒ Scope
Geographic_areas which are ‘children’ of the supplied geographic_area.
-
.countries ⇒ Scope
GeographicAreas which are countries.
-
.descendants_of_any(ids = []) ⇒ Object
Same results as descendant_of but starts with Array of IDs.
-
.find_by_lat_long(latitude = 0.0, longitude = 0.0) ⇒ Scope
All areas which contain the point specified.
-
.find_by_self_and_parents(array) ⇒ Scope
Route out to a scope given the length of the search array.
-
.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ⇒ Scope
The finest geographic area in by latitude or longitude, sorted by area, only areas with shapes (geographic items) are matched.
-
.inferred_as_country ⇒ Object
Based strictly on the original data recording a level ID, this is inferrence and it will fail with some data.
- .inferred_as_county ⇒ Object
- .inferred_as_state ⇒ Object
-
.is_contained_by(geographic_area) ⇒ Scope?
Of geographic_areas.
-
.matching(text, has_shape = false, invert = false) ⇒ Hash
Query_line => [Array of GeographicArea].
-
.parent ⇒ Object
TODO: This method can be placed elsewhere inside this class (or even removed if not used) when github.com/ClosureTree/closure_tree/issues/346 is fixed.
-
.select_optimized(user_id, project_id, target = 'CollectingEvent') ⇒ Hash
Geographic_areas optimized for user selection.
-
.used_recently(user_id, project_id, used_on = 'CollectingEvent') ⇒ Scope
The max 10 most recently used (1 week, could parameterize) geographic_areas, as used ‘use_on`.
Instance Method Summary collapse
-
#categorize ⇒ Hash
A key/value pair that classify this GeographicArea into a country, state, our county !! This is an estimation, although likely highly accurate.
-
#categorize_tdwg ⇒ Object
Hack.
- #check_for_children ⇒ Object protected
-
#children_at_level1 ⇒ Scope
All known level 1 children, generally state or province level.
-
#children_at_level2 ⇒ Scope
All known level 2 children, generally county or prefecture level.
- #default_geographic_area_geographic_item ⇒ GeographicAreasGeographicItem?
-
#default_geographic_item ⇒ GeographicItem?
A “preferred” geographic item for this geographic area, where preference is based on an ordering of source gazeteers, the order being 1) Natural Earth Countries 2) Natural Earth States 3) GADM 4) everything else (at present, TDWG).
- #default_geographic_item_id ⇒ Object
-
#descendants_of_geographic_area_type(geographic_area_type) ⇒ Scope
Descendants of this instance which have specific types, such as counties of a state.
-
#descendants_of_geographic_area_types(geographic_area_type_names) ⇒ Scope
Descendants of this instance which have specific types, such as cities and counties of a province.
-
#geo_object ⇒ RGeo object
(also: #shape)
Of the default GeographicItem.
-
#geographic_area_map_focus ⇒ GeographicItem
Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and provide a point on which to focus the map.
-
#geographic_name_classification ⇒ Hash
Use the parent/child relationships of the this GeographicArea to return a country/state/county categorization { state: ”, country: ”, county: ” }.
-
#geolocate_attributes ⇒ Hash
This instance’s attributes applicable to GeoLocate.
- #geolocate_ui_params ⇒ Object
-
#geolocate_ui_params_string ⇒ String
“www.geo-locate.org/web/webgeoreflight.aspx?country=United States of America&state=Illinois&locality=Champaign& points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester”.
- #has_shape? ⇒ Boolean
-
#is_tdwg? ⇒ Scope
def self.have_shape? joins(:geographic_areas_geographic_items) end.
- #name_hash ⇒ Hash
-
#tdwg_ids ⇒ Hash
Keys point to each of the four level components of the ID.
-
#tdwg_level ⇒ String?
1, 2, 3, 4 iff is TDWG data source.
-
#to_geo_json_feature ⇒ Hash
rubocop:disable Style/StringHashKeys.
-
#to_simple_json_feature ⇒ Object
TODO: parametrize to include gazeteer i.e.
-
#with_name_and_parent_name ⇒ Scope
Matches GeographicAreas that have name and parent name.
-
#with_name_and_parent_names ⇒ Scope
TODO: Test, or extend a general method Matches GeographicAreas that match name, parent name, parent.parent name.
Methods included from DwcSerialization
Methods included from Shared::Identifiers
#dwc_occurrence_id, #identified?, #next_by_identifier, #previous_by_identifier, #reject_identifiers, #uri, #uuid
Methods included from Shared::AlternateValues
#all_values_for, #alternate_valued?
Methods included from Shared::IsData
#errors_excepting, #full_error_messages_excepting, #identical, #is_community?, #is_destroyable?, #is_editable?, #is_in_use?, #is_in_users_projects?, #metamorphosize, #similar
Methods included from Housekeeping::Users
#set_created_by_id, #set_updated_by_id
Methods inherited from ApplicationRecord
Instance Attribute Details
#data_origin ⇒ String
Text describing the source of the data used for creation (TDWG, GADM, NaturalEarth, etc.).
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#geographic_area_type_id ⇒ Integer
The id of the type of this geographic area, index of geographic_area_types
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#iso_3166_a2 ⇒ String
Two alpha-character identification of country.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#iso_3166_a3 ⇒ String
Three alpha-character identification of country.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#level0_id ⇒ Integer
The id of the GeographicArea country that this geographic area belongs to, self.id if self is a country
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#level1_id ⇒ Integer
The id of the first level subdivision (starting from country) that this geographic area belongs to, self if self is a first level subdivision
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#level2_id ⇒ Integer
The id of the second level subdivision (starting from country) that this geographic area belongs to, self if self is a second level subdivision
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#name ⇒ String
The name of the geographic area
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#parent_id ⇒ Integer
The id of the parent of this geographic area, will never be self, may be null (for Earth). Generally, sovereign countries have ‘Earth’ as parent.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
#tdwgID ⇒ String
If derived from the TDWG hierarchy the tdwgID. Should be accessed through self#tdwg_ids, not directly.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'app/models/geographic_area.rb', line 48 class GeographicArea < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::IsData include Shared::IsApplicationData include Shared::AlternateValues include Shared::Identifiers include GeographicArea::DwcSerialization ALTERNATE_VALUES_FOR = [:name].freeze # @return class # this method calls Module#module_parent # TODO: This method can be placed elsewhere inside this class (or even removed if not used) # when https://github.com/ClosureTree/closure_tree/issues/346 is fixed. def self.parent self.module_parent end has_closure_tree # !! If this table changes we need to update this CACHED_GEOGRAPHIC_AREA_TYPES = { 2 => 'Unknown', 3 => 'Country', 15 => 'Parish', 18 => 'Province', 33 => 'County', 63 => 'State' }.freeze before_destroy :check_for_children belongs_to :geographic_area_type, inverse_of: :geographic_areas belongs_to :level0, class_name: 'GeographicArea' belongs_to :level1, class_name: 'GeographicArea' belongs_to :level2, class_name: 'GeographicArea' has_many :asserted_distributions, inverse_of: :geographic_area has_many :collecting_events, inverse_of: :geographic_area has_many :common_names, inverse_of: :geographic_area has_many :geographic_areas_geographic_items, -> { ordered_by_data_origin }, dependent: :destroy, inverse_of: :geographic_area has_many :geographic_items, through: :geographic_areas_geographic_items accepts_nested_attributes_for :geographic_areas_geographic_items validates :geographic_area_type, presence: true validates_presence_of :geographic_area_type_id validates :parent, presence: true, unless: -> { self.name == 'Earth' } # || ENV['NO_GEO_VALID']} validates :level0, presence: true, allow_nil: true, unless: -> { self.name == 'Earth' } validates :level1, presence: true, allow_nil: true validates :level2, presence: true, allow_nil: true validates :name, presence: true, length: {minimum: 1} validates :data_origin, presence: true # @param geographic_area [Array, GeographicArea] # all descendants of one or more GeographicAreas, *not* including geogrpahic_area scope :descendants_of, -> (geographic_area) { with_ancestor(geographic_area) } scope :ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies).order('geographic_area_hierarchies.generations DESC').where(geographic_area_hierarchies: {descendant_id: geographic_area.id}).where('geographic_area_hierarchies.ancestor_id != ?', geographic_area.id) } scope :self_and_ancestors_of, -> (geographic_area) { joins(:descendant_hierarchies) .where(geographic_area_hierarchies: {descendant_id: geographic_area.id}) } # HashAggregate (cost=24274.42..24274.79 rows=37 width=77) # this is subtly different, it includes self in present form # scope :ancestors_and_descendants_of, -> (geographic_area) { # joins('LEFT OUTER JOIN geographic_area_hierarchies a ON geographic_areas.id = a.descendant_id ' \ # 'LEFT JOIN geographic_area_hierarchies b ON geographic_areas.id = b.ancestor_id') # .where("(a.ancestor_id = ?) OR (b.descendant_id = ?)", geographic_area.id, geographic_area.id) # .uniq # } # HashAggregate (cost=100.89..100.97 rows=8 width=77) scope :ancestors_and_descendants_of, -> (geographic_area) do scoping do a = GeographicArea.self_and_ancestors_of(geographic_area) b = GeographicArea.descendants_of(geographic_area) GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end end scope :with_name_like, lambda { |string| where(['name like ?', "#{string}%"]) } # @param [Array] of names of self and parent # @return [Scope] # Matches GeographicAreas that have name and parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois}). scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } # @param [Array] names of self and parents # @return [Scope] GeographicAreas which have the names of self and parents # TODO: Test, or extend a general method # Matches GeographicAreas that match name, parent name, parent.parent name. # Call via find_by_self_and_parents(%w{Champaign Illinois United\ States}). scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } scope :with_data_origin, -> (data_origin) { if data_origin.present? if data_origin == 'tdwg' where('geographic_areas.data_origin LIKE ?' , 'tdwg_%') .order(data_origin: :desc) elsif data_origin == 'ne' where('geographic_areas.data_origin LIKE ?', 'ne_%') .order(data_origin: :desc) else where(data_origin:) end end } scope :has_shape, -> (has_shape = true) { if has_shape joins(:geographic_areas_geographic_items) end } scope :ordered_by_area, -> (direction = :ASC) { joins(:geographic_items).order("geographic_items.cached_total_area #{direction || 'ASC'}") } # Based strictly on the original data recording a level ID, # this is *inferrence* and it will fail with some data. def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end # Same results as descendant_of but starts with Array of IDs def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end # @param array [Array] of strings of names for areas # @return [Scope] of GeographicAreas which match name and parent.name. # Route out to a scope given the length of the # search array. Could be abstracted to # build nesting on the fly if we actually # needed more than three nesting levels. def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end # @return [Scope] GeographicAreas which are countries. def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end # @param [GeographicArea] # @return [Scope, nil] of geographic_areas def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param [GeographicArea] # @return [Scope] geographic_areas which are 'children' of the supplied geographic_area. def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end # @param latitude [Double] Decimal degrees # @param longitude [Double] Decimal degrees # @return [Scope] all areas which contain the point specified. def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end # @return [Scope] # the finest geographic area in by latitude or longitude, sorted by area, only # areas with shapes (geographic items) are matched def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end # @return [Scope] of areas which have at least one shape # def self.have_shape? # joins(:geographic_areas_geographic_items) # end def is_tdwg? data_origin =~ /tdwg/ end # @return [Hash] # A key/value pair that classify this GeographicArea # into a country, state, our county # !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas # to derive additional data, particularly for State def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end # Hack. If TDWG Gazetteer data are eliminated this needs to be removed. # # TODO: # * This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place # def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end # @return [Hash] # use the parent/child relationships of the this GeographicArea to return a country/state/county categorization # { # state: '', # country: '', # county: '' # } def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end # @return [Scope] all known level 1 children, generally state or province level. def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end # @return [Scope] all known level 2 children, generally county or prefecture level. def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end # @param [String] geographic_area_type name of geographic_area_type (e.g., 'Country', 'State', 'City') # @return [Scope] descendants of this instance which have specific types, such as counties of a state. def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end # @param [Array] geographic_area_type_names names # @return [Scope] descendants of this instance which have specific types, such as cities and counties of a province. def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end # @return [Hash] keys point to each of the four level components of the ID. Matches values in original data. def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end # @return [String, nil] 1, 2, 3, 4 iff is TDWG data source def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end # @return [Boolean] def has_shape? geographic_areas_geographic_items.any? end # @return [RGeo object] of the default GeographicItem def geo_object default_geographic_item end alias shape geo_object # @return [GeographicItem, nil] # a "preferred" geographic item for this geographic area, where preference # is based on an ordering of source gazeteers, the order being # 1) Natural Earth Countries # 2) Natural Earth States # 3) GADM # 4) everything else (at present, TDWG) def default_geographic_item default_geographic_area_geographic_item&.geographic_item end def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end # @return [GeographicAreasGeographicItem, nil] def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end # rubocop:disable Style/StringHashKeys # @return [Hash] of the pieces of a GeoJSON 'Feature' def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end # TODO: parametrize to include gazeteer # i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string') def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end # Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and # provide a point on which to focus the map. Return 'nil' if there are no GIs in the chain. # @return [GeographicItem] a point. def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end # @return [Hash] # this instance's attributes applicable to GeoLocate def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end # @return [Hash] def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end # "http://www.geo-locate.org/web/webgeoreflight.aspx?country=United States of # America&state=Illinois&locality=Champaign& # points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester" # @return [String] def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end # @return [Hash] # query_line => [Array of GeographicArea] # @params [text] # one result set per line (\r\n) # lines can have child:parent:parent name patterns def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end # rubocop:enable Style/StringHashKeys # @param used_on [String] one of `CollectingEvent` (default) or `AssertedDistribution` # @return [Scope] # the max 10 most recently used (1 week, could parameterize) geographic_areas, as used `use_on` def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end # @params target [String] one of `CollectingEvent` or `AssertedDistribution` # @return [Hash] geographic_areas optimized for user selection def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end protected before_destroy :check_for_children def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end end |
Class Method Details
.are_contained_in(geographic_area) ⇒ Scope
Returns geographic_areas which are ‘children’ of the supplied geographic_area.
260 261 262 263 264 265 266 267 268 269 270 271 |
# File 'app/models/geographic_area.rb', line 260 def self.are_contained_in(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.are_contained_in_item('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end |
.countries ⇒ Scope
Returns GeographicAreas which are countries.
239 240 241 |
# File 'app/models/geographic_area.rb', line 239 def self.countries includes(:geographic_area_type).where(geographic_area_types: {name: 'Country'}) end |
.descendants_of_any(ids = []) ⇒ Object
Same results as descendant_of but starts with Array of IDs
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'app/models/geographic_area.rb', line 204 def self.descendants_of_any(ids = []) ids = [ids].flatten.compact.uniq return nil if ids.empty? descendants_subquery = GeographicAreaHierarchy.where( GeographicAreaHierarchy.arel_table[:descendant_id].eq(GeographicArea.arel_table[:id]).and( GeographicAreaHierarchy.arel_table[:ancestor_id].in(ids)) ) #unless descendants_max_depth.nil? || descendants_max_depth.to_i < 0 # descendants_subquery = descendants_subquery.where(GeographicAreaHierarchy.arel_table[:generations].lteq(descendants_max_depth.to_i)) #end GeographicArea.where(descendants_subquery.arel.exists) end |
.find_by_lat_long(latitude = 0.0, longitude = 0.0) ⇒ Scope
Returns all areas which contain the point specified.
276 277 278 279 280 281 |
# File 'app/models/geographic_area.rb', line 276 def self.find_by_lat_long(latitude = 0.0, longitude = 0.0) point = ActiveRecord::Base.send(:sanitize_sql_array, ['POINT(:long :lat)', long: longitude, lat: latitude]) a = ::GeographicArea.joins(:geographic_items).where("ST_Contains(polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") b = ::GeographicArea.joins(:geographic_items).where("ST_Contains(multi_polygon::geometry, GeomFromEWKT('srid=4326;#{point}'))") GeographicArea.from("((#{a.to_sql}) UNION (#{b.to_sql})) as geographic_areas") end |
.find_by_self_and_parents(array) ⇒ Scope
Route out to a scope given the length of the search array. Could be abstracted to build nesting on the fly if we actually needed more than three nesting levels.
226 227 228 229 230 231 232 233 234 235 236 |
# File 'app/models/geographic_area.rb', line 226 def self.find_by_self_and_parents(array) if array.length == 1 where(name: array.first) elsif array.length == 2 with_name_and_parent_name(array) elsif array.length == 3 with_name_and_parent_names(array) else where { 'false' } end end |
.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ⇒ Scope
Returns the finest geographic area in by latitude or longitude, sorted by area, only areas with shapes (geographic items) are matched.
286 287 288 289 290 291 292 293 |
# File 'app/models/geographic_area.rb', line 286 def self.find_smallest_by_lat_long(latitude = 0.0, longitude = 0.0) ::GeographicArea .joins(:geographic_items) .merge(GeographicArea.find_by_lat_long(latitude, longitude)) .select("geographic_areas.*, ST_Area(#{::GeographicItem::GEOMETRY_SQL.to_sql}) As sqft") .order('sqft') .distinct end |
.inferred_as_country ⇒ Object
Based strictly on the original data recording a level ID, this is inferrence and it will fail with some data.
191 192 193 |
# File 'app/models/geographic_area.rb', line 191 def self.inferred_as_country where('geographic_areas.level0_id = geographic_areas.id') end |
.inferred_as_county ⇒ Object
199 200 201 |
# File 'app/models/geographic_area.rb', line 199 def self.inferred_as_county where('geographic_areas.level2_id = geographic_areas.id') end |
.inferred_as_state ⇒ Object
195 196 197 |
# File 'app/models/geographic_area.rb', line 195 def self.inferred_as_state where('geographic_areas.level1_id = geographic_areas.id') end |
.is_contained_by(geographic_area) ⇒ Scope?
Returns of geographic_areas.
245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'app/models/geographic_area.rb', line 245 def self.is_contained_by(geographic_area) pieces = nil if geographic_area.geographic_items.any? pieces = GeographicItem.is_contained_by('any_poly', geographic_area.geo_object) others = [] pieces.each { |other| others.push(other.geographic_areas.to_a) } pieces = GeographicArea.where('id in (?)', others.flatten.map(&:id).uniq) end pieces end |
.matching(text, has_shape = false, invert = false) ⇒ Hash
Returns query_line => [Array of GeographicArea].
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
# File 'app/models/geographic_area.rb', line 526 def self.matching(text, has_shape = false, invert = false) if text.nil? || text.length == 0 return Hash.new('No query provided!' => []) end text.gsub!(/\r\n/, "\n") result = {} queries = text.split("\n") queries.each do |q| names = q.strip.split(':') names.reverse! if invert names.collect { |s| s.strip } r = GeographicArea.with_name_and_parent_names(names) r = r.joins(:geographic_items) if has_shape result[q] = r end result end |
.parent ⇒ Object
TODO: This method can be placed elsewhere inside this class (or even removed if not used)
when https://github.com/ClosureTree/closure_tree/issues/346 is fixed.
64 65 66 |
# File 'app/models/geographic_area.rb', line 64 def self.parent self.module_parent end |
.select_optimized(user_id, project_id, target = 'CollectingEvent') ⇒ Hash
Returns geographic_areas optimized for user selection.
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 |
# File 'app/models/geographic_area.rb', line 589 def self.select_optimized(user_id, project_id, target = 'CollectingEvent') r = used_recently(user_id, project_id, target) h = { quick: [], pinboard: GeographicArea.pinned_by(user_id).where(pinboard_items: {project_id:}).to_a, recent: [] } if r.empty? h[:quick] = GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a else case target when 'CollectingEvent' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(10) ).order(:name).to_a when 'AssertedDistribution' h[:recent] = GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(15) ).order(:name).to_a end h[:quick] = (GeographicArea.pinned_by(user_id).pinboard_inserted.where(pinboard_items: {project_id:}).to_a + GeographicArea.where('"geographic_areas"."id" IN (?)', r.first(5) ).order(:name).to_a).uniq end h end |
.used_recently(user_id, project_id, used_on = 'CollectingEvent') ⇒ Scope
Returns the max 10 most recently used (1 week, could parameterize) geographic_areas, as used ‘use_on`.
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
# File 'app/models/geographic_area.rb', line 550 def self.used_recently(user_id, project_id, used_on = 'CollectingEvent') case used_on when 'CollectingEvent' t = CollectingEvent.arel_table # i is a select manager i = t.project(t['geographic_area_id'], t['updated_at']).from(t) .where(t['updated_at'].gt(1.week.ago)) .where(t['updated_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['updated_at'].desc) # z is a table alias z = i.as('recent_t') p = GeographicArea.arel_table GeographicArea.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['geographic_area_id'].eq(p['id']))) ).pluck(:geographic_area_id).uniq when 'AssertedDistribution' t = Citation.arel_table # i is a select manager i = t.project(t['citation_object_id'], t['citation_object_type'], t['created_at']).from(t) .where(t['created_at'].gt(1.week.ago)) .where(t['created_by_id'].eq(user_id)) .where(t['project_id'].eq(project_id)) .order(t['created_at'].desc) # z is a table alias z = i.as('recent_t') p = AssertedDistribution.arel_table ad = AssertedDistribution.joins( Arel::Nodes::InnerJoin.new(z, Arel::Nodes::On.new(z['citation_object_id'].eq(p['id']).and(z['citation_object_type'].eq('AssertedDistribution'))) ) ).pluck(:geographic_area_id).uniq end end |
Instance Method Details
#categorize ⇒ Hash
Returns A key/value pair that classify this GeographicArea into a country, state, our county !! This is an estimation, although likely highly accurate. It uses assumptions about how data are stored in GeographicAreas to derive additional data, particularly for State.
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'app/models/geographic_area.rb', line 309 def categorize s = name if m = ::Utilities::Geo::DICTIONARY[s] s = m end # TODO: Wrap this a pre-loading constant. This makes specs very fragile. unless Rails.env.test? n = CACHED_GEOGRAPHIC_AREA_TYPES[geographic_area_type_id] end n ||= GeographicAreaType.where(id: geographic_area_type_id).limit(1).pick(:name) return {country: s} if GeographicAreaType::COUNTRY_LEVEL_TYPES.include?(n) || (id == level0_id) || (parent&.name == 'Earth' && !is_tdwg?) return {state: s} if GeographicAreaType::STATE_LEVEL_TYPES.include?(n) || (data_origin == 'ne_states') || (id == level1_id) || (!parent.nil? && (parent&.id == parent&.level0_id)) || ((parent&.parent&.name == 'Earth') && !is_tdwg?) return {county: s} if GeographicAreaType::COUNTY_LEVEL_TYPES.include?(n) return categorize_tdwg if is_tdwg? {} end |
#categorize_tdwg ⇒ Object
Hack. If TDWG Gazetteer data are eliminated this needs to be removed.
TODO:
* This seems very wrong in many was, TDWG does not have levels corresponding to countries in any place
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
# File 'app/models/geographic_area.rb', line 336 def categorize_tdwg g = GeographicArea .where(name:) .where.not(geographic_area_type: [109, 110, 111,112]) if g.any? return g.first.categorize end # !! Do not use ::Utilities::Geo::DICTIONARY here, this is particular to TDWG's names # TODO: more manual checks can be added here intermediate areas like "Western Canada" # Many other countries are a mess here. # TODO: - Nothing about TDWG follows a hierarchy of level 0,1,2 == country, state, county style paradigm # - Could build some controlled vocabulary that translates values return {country: 'United States'} if name =~ /U\.S\.A/ return {country: 'Canada'} if name =~ /Canada/ return {country: 'Chile'} if name =~ /Chile.Central/ return {country: name} if %w{Brazil New\ Zealand Mexico Brazil China Australia}.include?(name) {} end |
#check_for_children ⇒ Object (protected)
617 618 619 620 621 622 |
# File 'app/models/geographic_area.rb', line 617 def check_for_children unless leaf? errors[:base] << 'has attached names, delete these first' return false end end |
#children_at_level1 ⇒ Scope
Returns all known level 1 children, generally state or province level.
376 377 378 |
# File 'app/models/geographic_area.rb', line 376 def children_at_level1 GeographicArea.descendants_of(self).where('level1_id IS NOT NULL AND level2_id IS NULL') end |
#children_at_level2 ⇒ Scope
Returns all known level 2 children, generally county or prefecture level.
381 382 383 |
# File 'app/models/geographic_area.rb', line 381 def children_at_level2 GeographicArea.descendants_of(self).where('level2_id IS NOT NULL') end |
#default_geographic_area_geographic_item ⇒ GeographicAreasGeographicItem?
443 444 445 |
# File 'app/models/geographic_area.rb', line 443 def default_geographic_area_geographic_item GeographicAreasGeographicItem.where(geographic_area_id: id).default_geographic_item_data.first end |
#default_geographic_item ⇒ GeographicItem?
Returns a “preferred” geographic item for this geographic area, where preference
is based on an ordering of source gazeteers, the order being
1) Natural Earth Countries 2) Natural Earth States 3) GADM 4) everything else (at present, TDWG).
434 435 436 |
# File 'app/models/geographic_area.rb', line 434 def default_geographic_item default_geographic_area_geographic_item&.geographic_item end |
#default_geographic_item_id ⇒ Object
438 439 440 |
# File 'app/models/geographic_area.rb', line 438 def default_geographic_item_id GeographicAreasGeographicItem.where(geographic_area_id: self.id).default_geographic_item_data.pluck(:geographic_item_id).first end |
#descendants_of_geographic_area_type(geographic_area_type) ⇒ Scope
Returns descendants of this instance which have specific types, such as counties of a state.
387 388 389 390 |
# File 'app/models/geographic_area.rb', line 387 def descendants_of_geographic_area_type(geographic_area_type) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type}) end |
#descendants_of_geographic_area_types(geographic_area_type_names) ⇒ Scope
Returns descendants of this instance which have specific types, such as cities and counties of a province.
394 395 396 397 |
# File 'app/models/geographic_area.rb', line 394 def descendants_of_geographic_area_types(geographic_area_type_names) GeographicArea.descendants_of(self).includes([:geographic_area_type]) .where(geographic_area_types: {name: geographic_area_type_names}) end |
#geo_object ⇒ RGeo object Also known as: shape
Returns of the default GeographicItem.
421 422 423 |
# File 'app/models/geographic_area.rb', line 421 def geo_object default_geographic_item end |
#geographic_area_map_focus ⇒ GeographicItem
Find a centroid by scaling this object tree up to the first antecedent which provides a geographic_item, and provide a point on which to focus the map. Return ‘nil’ if there are no GIs in the chain.
476 477 478 479 480 481 482 483 484 485 |
# File 'app/models/geographic_area.rb', line 476 def geographic_area_map_focus item = nil if geographic_items.count == 0 # this nil signals the top of the stack: Everything terminates at 'Earth' item = parent.geographic_area_map_focus unless parent.nil? else item = GeographicItem.new(point: geographic_items.first.st_centroid) end item end |
#geographic_name_classification ⇒ Hash
Returns use the parent/child relationships of the this GeographicArea to return a country/state/county categorization
state: '',
country: '',
county: ''
.
367 368 369 370 371 372 373 |
# File 'app/models/geographic_area.rb', line 367 def geographic_name_classification v = {} self_and_ancestors.each do |a| v.merge!(a.categorize) end v end |
#geolocate_attributes ⇒ Hash
Returns this instance’s attributes applicable to GeoLocate.
489 490 491 492 493 494 495 496 497 498 |
# File 'app/models/geographic_area.rb', line 489 def geolocate_attributes h = name_hash if item = geographic_area_map_focus # rubocop:disable Lint/AssignmentInCondition h['Longitude'] = item.point.x h['Latitude'] = item.point.y end h end |
#geolocate_ui_params ⇒ Object
509 510 511 |
# File 'app/models/geographic_area.rb', line 509 def geolocate_ui_params Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_hash end |
#geolocate_ui_params_string ⇒ String
“www.geo-locate.org/web/webgeoreflight.aspx?country=United States of America&state=Illinois&locality=Champaign& points=40.091622|-88.241179|Champaign|low|7000&georef=run|false|false|true|true|false|false|false|0&gc=Tester”
517 518 519 |
# File 'app/models/geographic_area.rb', line 517 def geolocate_ui_params_string Georeference::GeoLocate::RequestUI.new(geolocate_attributes).request_params_string end |
#has_shape? ⇒ Boolean
416 417 418 |
# File 'app/models/geographic_area.rb', line 416 def has_shape? geographic_areas_geographic_items.any? end |
#is_tdwg? ⇒ Scope
def self.have_shape?
joins(:geographic_areas_geographic_items)
end
300 301 302 |
# File 'app/models/geographic_area.rb', line 300 def is_tdwg? data_origin =~ /tdwg/ end |
#name_hash ⇒ Hash
501 502 503 504 505 506 507 |
# File 'app/models/geographic_area.rb', line 501 def name_hash return { 'country' => level0&.name, 'state' => level1&.name, 'county' => level2&.name } end |
#tdwg_ids ⇒ Hash
Returns keys point to each of the four level components of the ID. Matches values in original data.
400 401 402 403 404 405 406 407 |
# File 'app/models/geographic_area.rb', line 400 def tdwg_ids { lvl1: tdwgID.slice(0), lvl2: tdwgID.slice(0, 2), lvl3: tdwgID.slice(2, 3), lvl4: tdwgID.slice(2, 6) } end |
#tdwg_level ⇒ String?
Returns 1, 2, 3, 4 iff is TDWG data source.
410 411 412 413 |
# File 'app/models/geographic_area.rb', line 410 def tdwg_level return nil unless data_origin =~ /TDWG/ data_origin[-1] end |
#to_geo_json_feature ⇒ Hash
rubocop:disable Style/StringHashKeys
449 450 451 452 453 454 455 456 457 458 |
# File 'app/models/geographic_area.rb', line 449 def to_geo_json_feature to_simple_json_feature.merge( 'properties' => { 'geographic_area' => { 'id' => id, 'tag' => name } } ) end |
#to_simple_json_feature ⇒ Object
TODO: parametrize to include gazeteer
i.e. geographic_areas_geogrpahic_items.where( gaz = 'some string')
462 463 464 465 466 467 468 469 470 471 |
# File 'app/models/geographic_area.rb', line 462 def to_simple_json_feature result = { 'type' => 'Feature', 'properties' => {} } area = geographic_items.order(:id) # Not prioritized!? result['geometry'] = area.first.to_geo_json unless area.empty? result end |
#with_name_and_parent_name ⇒ Scope
Returns Matches GeographicAreas that have name and parent name. Call via find_by_self_and_parents(%wIllinois).
141 142 143 144 145 146 147 148 |
# File 'app/models/geographic_area.rb', line 141 scope :with_name_and_parent_name, lambda { |names| if names[1].nil? where(name: names[0]) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .where(name: names[0]).where(['ga.name = ?', names[1]]) end } |
#with_name_and_parent_names ⇒ Scope
TODO: Test, or extend a general method Matches GeographicAreas that match name, parent name, parent.parent name. Call via find_by_self_and_parents(%wIllinois United\ States).
155 156 157 158 159 160 161 162 163 164 165 |
# File 'app/models/geographic_area.rb', line 155 scope :with_name_and_parent_names, lambda { |names| if names[2].nil? with_name_and_parent_name(names.compact) else joins('join geographic_areas ga on ga.id = geographic_areas.parent_id') .joins('join geographic_areas gb on gb.id = ga.parent_id') .where(name: names[0]) .where(['ga.name = ?', names[1]]) .where(['gb.name = ?', names[2]]) end } |