spatial_features 2.10.8 → 2.12.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e304bd5be296e4094c384df03f72117452bce5bafc5364dd3277c9826c374f28
4
- data.tar.gz: d0bddea53fc9210bbc192160c490b7ba8b85dcafc8ee6dc238f8f8f8d4ea6a43
3
+ metadata.gz: 589cebda0f09ed3f2568a2ddcd91908b556e1690062004d7158b2db98ba5fc96
4
+ data.tar.gz: d69b66a8242de5feffd71a33390cedf671eaa7e8652a26e2f6a8a23d586b3e75
5
5
  SHA512:
6
- metadata.gz: bef25168be8628a563a5aff4026c3dd3de26ba5cbcd82ed6b3de155bfed59d6e8ac72af4f05b8a12f3755125772732fe14238f5ea9daccc6d62bfb8fc9739311
7
- data.tar.gz: 9f0969a84cd00fca613384cbf8dfdd5989421de2b63c56db600729f94dc5c65a6333ba96dd99377b9339823bca8657fd7eaa51e1aff91abb8bfcd34bb3db9cb0
6
+ metadata.gz: 8732f12f99fab1fcad7c58ccab5d0956937f36cedb2f6fd16b02d004016ca36207a4bc601fb8c3804fabec28fa8b444ae3f0e74a93333f099eacaf74129b4034
7
+ data.tar.gz: bae08792bc07a63c25f1eeb0d0037d55ec55d438e376f61551203773e2e24ccfc89351a58f6f559bcc954ad41076653cf500fe7204298ed61c7cdf6f9942b3c3
@@ -40,6 +40,11 @@ class AbstractFeature < ActiveRecord::Base
40
40
  where(:feature_type => 'point')
41
41
  end
42
42
 
43
+ def self.within_distance(lat, lng, distance_in_meters)
44
+ # where("ST_DWithin(features.geog, ST_SetSRID( ST_Point( -71.104, 42.315), 4326)::geography, :distance)", :lat => lat, :lng => lng, :distance => distance_in_meters)
45
+ where("ST_DWithin(features.geog, ST_Point(:lng, :lat), :distance)", :lat => lat, :lng => lng, :distance => distance_in_meters)
46
+ end
47
+
43
48
  def self.area_in_square_meters(geom = 'geom_lowres')
44
49
  current_scope = all.polygons
45
50
  unscoped { connection.select_value(select("ST_Area(ST_Union(#{geom}))").from(current_scope, :features)).to_f }
@@ -143,6 +148,10 @@ class AbstractFeature < ActiveRecord::Base
143
148
  @make_valid
144
149
  end
145
150
 
151
+ def wkt
152
+ ActiveRecord::Base.connection.select_value("SELECT ST_ASEWKT('#{geom}')")
153
+ end
154
+
146
155
  private
147
156
 
148
157
  def make_valid
@@ -1,8 +1,8 @@
1
1
  module PostGISTypes
2
- def initialize_type_map(mapping)
2
+ def initialize_type_map(m = type_map)
3
3
  super
4
- register_class_with_limit mapping, 'geometry', ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::SpecializedString
5
- register_class_with_limit mapping, 'geography', ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::SpecializedString
4
+ register_class_with_limit m, 'geometry', ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::SpecializedString
5
+ register_class_with_limit m, 'geography', ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::SpecializedString
6
6
  end
7
7
  end
8
8
 
@@ -36,12 +36,8 @@ module SpatialFeatures
36
36
  true
37
37
  end
38
38
 
39
- # Add methods to generate cache keys for a record or all records of this class
40
- # NOTE: features are never updated, only deleted and created, therefore we can
41
- # tell if they have changed by finding the maximum id and count instead of needing timestamps
42
39
  def features_cache_key
43
- # Do two separate queries because it is much faster for some reason
44
- "#{name}/#{features.cache_key}"
40
+ "#{name}/#{aggregate_features.cache_key}"
45
41
  end
46
42
 
47
43
  def intersecting(other, options = {})
@@ -81,6 +77,15 @@ module SpatialFeatures
81
77
  end
82
78
  end
83
79
 
80
+ def aggregate_features
81
+ type = base_class.to_s # Rails stores polymorphic foreign keys as the base class
82
+ if all == unscoped
83
+ AggregateFeature.where(:spatial_model_type => type)
84
+ else
85
+ AggregateFeature.where(:spatial_model_type => type, :spatial_model_id => all.unscope(:select))
86
+ end
87
+ end
88
+
84
89
  # Returns true if the model stores a hash of the features so we don't need to process the features if they haven't changed
85
90
  def has_spatial_features_hash?
86
91
  column_names.include? 'features_hash'
@@ -163,7 +168,7 @@ module SpatialFeatures
163
168
  end
164
169
 
165
170
  def features_cache_key
166
- "#{self.class.name}/#{self.id}-#{features.cache_key}"
171
+ "#{self.class.name}/#{id}-#{has_spatial_features_hash? ? features_hash : aggregate_feature.cache_key}"
167
172
  end
168
173
 
169
174
  def polygons?
@@ -183,7 +188,7 @@ module SpatialFeatures
183
188
  end
184
189
 
185
190
  def intersects?(other)
186
- self.class.intersecting(other).exists?(self)
191
+ self.class.unscoped { self.class.intersecting(other).exists?(id) }
187
192
  end
188
193
 
189
194
  def total_intersection_area_percentage(klass)
@@ -67,9 +67,10 @@ module SpatialFeatures
67
67
  private
68
68
 
69
69
  def spatial_feature_imports(import_options, make_valid)
70
- import_options.collect do |data_method, importer_name|
71
- data = send(data_method)
72
- spatial_importer_from_name(importer_name).new(data, :make_valid => make_valid) if data.present?
70
+ import_options.flat_map do |data_method, importer_name|
71
+ Array.wrap(send(data_method)).map do |data|
72
+ spatial_importer_from_name(importer_name).new(data, :make_valid => make_valid) if data.present?
73
+ end
73
74
  end.compact
74
75
  end
75
76
 
@@ -6,22 +6,24 @@ module SpatialFeatures
6
6
  private
7
7
 
8
8
  def each_record(&block)
9
- Nokogiri::XML(@data).css('Placemark').each do |placemark|
10
- name = placemark.css('name').text
11
- metadata = extract_metadata(placemark)
12
-
13
- {'Polygon' => 'POLYGON', 'LineString' => 'LINE', 'Point' => 'POINT'}.each do |kml_type, sql_type|
14
- placemark.css(kml_type).each do |placemark|
15
- next if blank_placemark?(placemark)
16
-
17
- yield OpenStruct.new(:feature_type => sql_type, :geog => geom_from_kml(placemark), :name => name, :metadata => metadata)
9
+ {'Polygon' => 'POLYGON', 'LineString' => 'LINE', 'Point' => 'POINT'}.each do |kml_type, sql_type|
10
+ Nokogiri::XML(@data).css(kml_type).each do |feature|
11
+ if placemark = feature.ancestors('Placemark').first
12
+ name = placemark.css('name').text
13
+ metadata = extract_metadata(placemark)
14
+ else
15
+ metadata = {}
18
16
  end
17
+
18
+ next if blank_feature?(feature)
19
+
20
+ yield OpenStruct.new(:feature_type => sql_type, :geog => geom_from_kml(feature), :name => name, :metadata => metadata)
19
21
  end
20
22
  end
21
23
  end
22
24
 
23
- def blank_placemark?(placemark)
24
- placemark.css('coordinates').text.blank?
25
+ def blank_feature?(feature)
26
+ feature.css('coordinates').text.blank?
25
27
  end
26
28
 
27
29
  def geom_from_kml(kml)
@@ -1,3 +1,3 @@
1
1
  module SpatialFeatures
2
- VERSION = "2.10.8"
2
+ VERSION = "2.12.1"
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spatial_features
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.10.8
4
+ version: 2.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Wallace
8
8
  - Nicholas Jakobsen
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-05-28 00:00:00.000000000 Z
12
+ date: 2020-07-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -20,7 +20,7 @@ dependencies:
20
20
  version: '4.2'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '5.2'
23
+ version: '6.0'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  version: '4.2'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '5.2'
33
+ version: '6.0'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: delayed_job_active_record
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -205,7 +205,7 @@ homepage: https://github.com/culturecode/spatial_features
205
205
  licenses:
206
206
  - MIT
207
207
  metadata: {}
208
- post_install_message:
208
+ post_install_message:
209
209
  rdoc_options: []
210
210
  require_paths:
211
211
  - lib
@@ -220,9 +220,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
220
220
  - !ruby/object:Gem::Version
221
221
  version: '0'
222
222
  requirements: []
223
- rubyforge_project:
224
- rubygems_version: 2.7.9
225
- signing_key:
223
+ rubygems_version: 3.0.8
224
+ signing_key:
226
225
  specification_version: 4
227
226
  summary: Adds spatial methods to a model.
228
227
  test_files: []