Election results in the London Borough of Sutton.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

26 řádky
489 B

  1. # load polling districts data
  2. require './models'
  3. require 'csv'
  4. require 'pp'
  5. DataMapper::Model.raise_on_save_failure = true
  6. PollingStation.destroy
  7. CSV.foreach(ARGV.shift, :headers => true) do |row|
  8. begin
  9. @p = PollingStation.create(
  10. :id => row['District'].strip,
  11. :easting => row['Eastings'],
  12. :northing => row['Northings'],
  13. :lat => row['lat'],
  14. :lng => row['lng']
  15. )
  16. @p.save
  17. rescue
  18. pp @p
  19. # puts p.errors
  20. end
  21. end