end
add_index :countries, [:code], :name => "countries_code_idx", :unique => true
-
- Net::HTTP.start('ws.geonames.org') do |http|
- xml = REXML::Document.new(http.get("/countryInfo").body)
-
- xml.elements.each("geonames/country") do |ele|
- code = ele.get_text("countryCode").to_s
- minlon = ele.get_text("bBoxWest").to_s
- minlat = ele.get_text("bBoxSouth").to_s
- maxlon = ele.get_text("bBoxEast").to_s
- maxlat = ele.get_text("bBoxNorth").to_s
-
- Country.create({
- :code => code,
- :min_lat => minlat.to_f, :max_lat => maxlat.to_f,
- :min_lon => minlon.to_f, :max_lon => maxlon.to_f
- }, :without_protection => true)
- end
- end
end
def self.down