Fix some rubocop todos

This commit is contained in:
Tom Hughes 2020-08-02 19:38:58 +01:00
parent f881a8c83c
commit 2d3972249c
17 changed files with 48 additions and 70 deletions

View file

@ -124,10 +124,10 @@ class BoundingBox
# there are two forms used for bounds with and without an underscore,
# cater for both forms eg minlon and min_lon
def add_bounds_to(hash, underscore = "")
hash["min#{underscore}lat"] = format("%.7f", min_lat)
hash["min#{underscore}lon"] = format("%.7f", min_lon)
hash["max#{underscore}lat"] = format("%.7f", max_lat)
hash["max#{underscore}lon"] = format("%.7f", max_lon)
hash["min#{underscore}lat"] = format("%<lat>.7f", :lat => min_lat)
hash["min#{underscore}lon"] = format("%<lon>.7f", :lon => min_lon)
hash["max#{underscore}lat"] = format("%<lat>.7f", :lat => max_lat)
hash["max#{underscore}lon"] = format("%<lon>.7f", :lon => max_lon)
hash
end