adrianshort / uk_planning_scraper

A Ruby gem to get planning applications data from UK council websites.
GNU Lesser General Public License v3.0
27 stars 19 forks source link

Add ability to scrape property details #38

Open gbp opened 5 years ago

gbp commented 5 years ago

This is based on work done by mySociety as part of the MHCLG Central Register of Planning Permissions project.

It adds ability to scrape property details (UPRN, address, postcode, etc..) from Idox planning portals by adding a .include_property option.

This was only really intended as a quick test, to get more data to work with on our project, but maybe it might come in useful for other people too.

Example

pp UKPlanningScraper::Authority.named('Westminster').
                                decided_days(7).
                                include_property.
                                scrape

Notes