X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/be3baea4de2522eae935db262b29490d35c011ee..43ce6e68c09cdb4e66a7af9849e36c9406d2eb05:/lib/bounding_box.rb?ds=sidebyside diff --git a/lib/bounding_box.rb b/lib/bounding_box.rb index 0cc4c5fd4..462f45a9f 100644 --- a/lib/bounding_box.rb +++ b/lib/bounding_box.rb @@ -88,6 +88,14 @@ class BoundingBox end end + def linear_size + if complete? + (max_lon - min_lon) + (max_lat - min_lat) + else + 0 + end + end + def complete? to_a.exclude?(nil) end