瀏覽代碼

added hackney scraper

master
memespring 17 年之前
父節點
當前提交
84ba7eea34
共有 1 個文件被更改,包括 23 次插入0 次删除
  1. +23
    -0
      docs/scrapers/hackney.php

+ 23
- 0
docs/scrapers/hackney.php 查看文件

@@ -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…
取消
儲存