Sha256: 286316beca965c0b4ac45fadacc65c2b587bf187e28f3fded6c8c5263aef47ff

Contents?: true

Size: 204 Bytes

Versions: 5

Compression:

Stored size: 204 Bytes

Contents

# frozen_string_literal: true

module USGeo
  # Urban area with population < 50,000.
  class UrbanCluster < UrbanArea
    def urbanized?
      false
    end

    def cluster?
      true
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
us_geo-2.0.4 lib/us_geo/urban_cluster.rb
us_geo-2.0.3 lib/us_geo/urban_cluster.rb
us_geo-2.0.2 lib/us_geo/urban_cluster.rb
us_geo-2.0.1 lib/us_geo/urban_cluster.rb
us_geo-2.0.0 lib/us_geo/urban_cluster.rb