Browse Source

added hackney scraper

master
memespring 17 years ago
parent
commit
84ba7eea34
1 changed files with 23 additions and 0 deletions
  1. +23
    -0
      docs/scrapers/hackney.php

+ 23
- 0
docs/scrapers/hackney.php View File

@@ -0,0 +1,23 @@
<?php

//Includes
require_once('config.php');
require_once('application.php');

//build date url
$request_time = get_time_from_get();

//search url
$search_url = "http://idox.hackney.gov.uk/WAM/weeklyApplications.do?action=showWeeklyList&areaCode=%25&sortOrder=1&endDate=#enddate&applicationType=%25&Button=Search";
$search_url = str_replace("#enddate", $request_time * 1000, $search_url);

//comment and info urls
$info_url_base = "http://idox.hackney.gov.uk/WAM/showCaseFile.do?action=show&appType=Planning&appNumber=";
$comment_url_base = "http://idox.hackney.gov.uk/WAM/createComment.do?action=CreateApplicationComment&&applicationType=Planning&appNumber=";

//grab urls
$applications = scrape_applications_wam($search_url, $info_url_base, $comment_url_base, 2);

display_applications($applications, "London Borough of Hackney", "Hackney");

?>

Loading…
Cancel
Save