RB Kingston upon Thames planning applications
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 regels
2.6 KiB

  1. require 'bundler'
  2. Bundler.setup
  3. require 'scraperwiki'
  4. require 'mechanize'
  5. require 'pp'
  6. require 'time'
  7. require 'date'
  8. require 'active_support/all'
  9. # Use the column names from planningalerts.org.au:
  10. # https://www.planningalerts.org.au/how_to_write_a_scraper
  11. BASEURL = "https://maps.kingston.gov.uk/propertyServices/planning/"
  12. # Parse and save a single planning application
  13. def parse(app)
  14. record = {}
  15. record['title'] = app.at("h4").inner_text
  16. matches = record['title'].match(/(\d+\/\d+\/\w+)\s+-\s+(.+)/)
  17. record['council_reference'] = matches[1]
  18. record['type'] = matches[2]
  19. app.search("a").each do |link|
  20. record['info_url'] = BASEURL + link['href'].strip if link['href'].match(/Details/)
  21. record['map_url'] = link['href'].strip if link['href'].match(/\?map=/)
  22. record['images_url'] = BASEURL + link['href'].strip if link['href'].match(/ImageMenu/)
  23. record['comment_url'] = BASEURL + link['href'].strip if link['href'].match(/PlanningComments/)
  24. end
  25. spans = app.search("span")
  26. record['description'] = spans[0].inner_text
  27. record['address'] = spans[1].inner_text
  28. record['ward'] = spans[2].inner_text
  29. # Decision and decision date
  30. if matches = spans[4].inner_text.match(/(.+?)\s+(\d{1,2}\/\d{1,2}\/\d{4})/)
  31. record['decision'] = matches[1]
  32. record['date_decision'] = Date.parse(matches[2])
  33. end
  34. # Comments/consultation - consultation end date can change during lifetime of application
  35. app.search("dd").each do |dd|
  36. if matches = dd.inner_text.match(/The current closing date for comments on this application is (\d{1,2}-[A-Z][a-z]{2}-\d{4})/)
  37. record['on_notice_to'] = Date.parse(matches[1])
  38. end
  39. end
  40. # Date valid
  41. begin
  42. record['date_valid'] = Date.parse(spans[3].inner_text)
  43. record['date_valid_text'] = nil
  44. rescue ArgumentError
  45. record['date_valid'] = nil
  46. record['date_valid_text'] = spans[3].inner_text
  47. end
  48. # Scraper timestamps
  49. record['updated_at'] = Time.now
  50. record['date_scraped'] = Date.today.to_s
  51. ScraperWiki.save_sqlite(['council_reference'], record)
  52. end
  53. agent = Mechanize.new
  54. agent.verify_mode = OpenSSL::SSL::VERIFY_NONE
  55. # Get all valid applications for the last 12 * 30 days
  56. d = Date.today
  57. 12.times do
  58. d_start = (d - 29.days).strftime("%d/%m/%Y")
  59. d_end = d.strftime("%d/%m/%Y")
  60. url = "#{BASEURL}Summary?weekListType=SRCH&recFrom=#{d_start}&recTo=#{d_end}&ward=ALL&appTyp=ALL&wardTxt=All%20Wards&appTypTxt=All%20Application%20Types&limit=500"
  61. puts url
  62. page = agent.get(url)
  63. apps = page.search("#planningApplication")
  64. puts apps.size, ''
  65. apps.each { |app| parse(app) }
  66. d -= 30.days
  67. sleep 5
  68. end
  69. # page = Nokogiri::HTML(open("page.html"))