uk_planning_scraper 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b2ab7bdad39f4d0f1d21cf6be4bee19e2c057489ca70bc5b1c43a0049288a891
4
+ data.tar.gz: 224053c0db4ad89713243f36bf75ba07d53225785d75be779f465c9eecc1a2ef
5
+ SHA512:
6
+ metadata.gz: 341fd23b9dfacd526a321b9ade67a775caf0c91dee4993d9fa337d9df0701c02f2a7cc28695740f49b95a36dd9a7f9dc781ec344739fd127db86d371fa519fc3
7
+ data.tar.gz: c4da448f99653f7624a81dcf21bcdc94c55ec209a7699a49b4a879e11afa6a4ebc58556ef9334c7a149447364aa705fff7616b042adc38f64367334cab5675d2
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --require spec_helper
2
+ --format=documentation
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in idox_planning_scraper.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
data/README.md ADDED
@@ -0,0 +1,250 @@
1
+ # UK Planning Scraper
2
+
3
+ **PRE-ALPHA: Only works with Idox and Northgate sites and spews a lot of stuff
4
+ to STDOUT. Not for production use.**
5
+
6
+ This gem scrapes planning applications data from UK local planning authority
7
+ websites, eg Westminster City Council. Data is returned as an array of hashes,
8
+ one hash for each planning application.
9
+
10
+ This scraper gem doesn't use a database. Storing the output is up to you. It's
11
+ just a convenient way to get the data.
12
+
13
+ Currently this only works for Idox and Northgate sites. The ultimate aim is to
14
+ provide a consistent interface in a single gem for all variants of all planning
15
+ systems: Idox Public Access, Northgate Planning Explorer, OcellaWeb, Agile
16
+ Planning and all the one-off systems.
17
+
18
+ This project is not affiliated with any organisation.
19
+
20
+ ## Installation
21
+
22
+ Add this line to your application's Gemfile:
23
+
24
+ ```ruby
25
+ gem 'uk_planning_scraper'
26
+ ```
27
+
28
+ And then execute:
29
+
30
+ $ bundle install
31
+
32
+ Or install it directly:
33
+
34
+ $ gem install uk_planning_scraper
35
+
36
+ ## Usage
37
+
38
+ ### First, require your stuff
39
+
40
+ ```ruby
41
+ require 'uk_planning_scraper'
42
+ require 'pp'
43
+ ```
44
+
45
+ ### Scrape from a council
46
+
47
+ Applications in Westminster decided in the last seven days:
48
+
49
+ ```ruby
50
+ pp UKPlanningScraper::Authority.named('Westminster').decided_days(7).scrape
51
+ ```
52
+
53
+ ### Scrape from a bunch of councils
54
+
55
+ Scrape the last week's planning decisions across the whole of
56
+ London (actually 23 of the 35 authorities right now):
57
+
58
+ ```ruby
59
+ authorities = UKPlanningScraper::Authority.tagged('london')
60
+
61
+ authorities.each do |authority|
62
+ applications = authority.decided_days(7).scrape
63
+ pp applications
64
+ # You'll probably want to save `applications` to your database here
65
+ end
66
+ ```
67
+
68
+ ### Satisfy your niche interests
69
+
70
+ Launderette applications validated in the last seven days in Scotland:
71
+
72
+ ```ruby
73
+ authorities = UKPlanningScraper::Authority.tagged('scotland')
74
+
75
+ authorities.each do |authority|
76
+ applications = authority.validated_days(7).keywords('launderette').scrape
77
+ pp applications # You'll probably want to save `apps` to your database here
78
+ end
79
+ ```
80
+
81
+ ### More scrape parameter methods
82
+
83
+ Chain as many scrape parameter methods on a `UKPlanningScraper::Authority`
84
+ object as you like, making sure that `scrape` comes last.
85
+
86
+ ```ruby
87
+ received_from(Date.parse("1 Jan 2016"))
88
+ received_to(Date.parse("31 Dec 2016"))
89
+
90
+ # Received in the last n days (including today)
91
+ # Use instead of received_to, received_from
92
+ received_days(7)
93
+
94
+ validated_to(Date.today)
95
+ validated_from(Date.today - 30)
96
+ validated_days(7) # instead of validated_to, validated_from
97
+
98
+ decided_to(Date.today)
99
+ decided_from(Date.today - 30)
100
+ decided_days(7) # instead of decided_to, decided_from
101
+
102
+ # Check that the systems you're scraping return the
103
+ # results you expect for multiple keywords (AND or OR?)
104
+ keywords("hip gable")
105
+
106
+ applicant_name("Mr and Mrs Smith") # Currently Idox only
107
+ application_type("Householder") # Currently Idox only
108
+ development_type("") # Currently Idox only
109
+
110
+ scrape # runs the scraper
111
+ ```
112
+
113
+ ### Save to a SQLite database
114
+
115
+ This gem has no interest whatsoever in persistence. What you do with the data it
116
+ outputs is up to you: relational databases, document stores, VHS and clay
117
+ tablets are all blissfully none of its business. But using the
118
+ [ScraperWiki](https://github.com/openaustralia/scraperwiki-ruby) gem is a really
119
+ easy way to store your data:
120
+
121
+ ```ruby
122
+ require 'scraperwiki' # Must be installed, of course
123
+ ScraperWiki.save_sqlite([:authority_name, :council_reference], applications)
124
+ ```
125
+
126
+ That `applications` param can be a hash or an array of hashes, which is what
127
+ gets returned by our `Authority.scrape`.
128
+
129
+ ### Find authorities by tag
130
+
131
+ Tags are always lowercase and one word.
132
+
133
+ ```ruby
134
+ london_auths = UKPlanningScraper::Authority.tagged('london')
135
+ ```
136
+
137
+ We've got tags for areas:
138
+
139
+ - london
140
+ - innerlondon
141
+ - outerlondon
142
+ - northlondon
143
+ - southlondon
144
+ - greatermanchester
145
+ - surrey
146
+ - wales
147
+
148
+ We also automatically add tags for software systems:
149
+
150
+ - idox
151
+ - northgate
152
+ - ocellaweb
153
+ - agileplanning
154
+ - unknownsystem -- for when we can't identify the system
155
+
156
+ and whatever you'd like to add that would be useful to others.
157
+
158
+ ### WTF is up with London?
159
+
160
+ London has got 32 London Boroughs, tagged `londonboroughs`. These are the
161
+ councils under the authority of the Mayor of London and the Greater London
162
+ Authority.
163
+
164
+ It has 33 councils: the London Boroughs plus the City of London (named `City of
165
+ London`). We don't currently have a tag for this, but if you want to add
166
+ `londoncouncils` please go ahead.
167
+
168
+ And it's got 35 local planning authorities: the 33 councils plus the two
169
+ `londondevelopmentcorporations`, named `London Legacy Development Corporation`
170
+ and `Old Oak and Park Royal Development Corporation`. The tag `london` covers
171
+ all (and only) the 35 local planning authorities in London.
172
+
173
+ ```ruby
174
+ UKPlanningScraper::Authority.tagged('londonboroughs').size
175
+ # => 32
176
+
177
+ UKPlanningScraper::Authority.tagged('londondevelopmentcorporations').size
178
+ # => 2
179
+
180
+ UKPlanningScraper::Authority.tagged('london').size
181
+ # => 35
182
+ ```
183
+
184
+ ### More fun with Authority tags
185
+
186
+ ```ruby
187
+ UKPlanningScraper::Authority.named('Merton').tags
188
+ # => ["england", "london", "londonboroughs", "northgate", "outerlondon", "southlondon"]
189
+
190
+ UKPlanningScraper::Authority.not_tagged('london')
191
+ # => [...]
192
+
193
+ UKPlanningScraper::Authority.named('Islington').tagged?('southlondon')
194
+ # => false
195
+ ```
196
+
197
+ ### List all authorities
198
+
199
+ ```ruby
200
+ UKPlanningScraper::Authority.all.each { |a| puts a.name }
201
+ ```
202
+
203
+ ### List all tags
204
+
205
+ ```ruby
206
+ pp UKPlanningScraper::Authority.tags
207
+ ```
208
+ ## Add your favourite local planning authorities
209
+
210
+ The list of authorities is in a CSV file in `/lib/uk_planning_scraper`:
211
+
212
+ https://github.com/adrianshort/uk_planning_scraper/blob/master/lib/uk_planning_scraper/authorities.csv
213
+
214
+ The easiest way to add to or edit this list is to edit within GitHub (use the
215
+ pencil icon) and create a new pull request for your changes. If accepted, your
216
+ changes will be available to everyone with the next version of the gem.
217
+
218
+ The file format is one line per authority, with comma-separated:
219
+
220
+ - Name (omit "the", "council", "borough of", "city of", etc. and write "and" not
221
+ "&", except for `City of London` which is a special case)
222
+ - URL of the search form (use the advanced search URL if there is one)
223
+ - Tags (use as many comma-separated tags as is reasonable, lowercase and all one
224
+ word.)
225
+
226
+ There's no need to manually add tags to the `authorities.csv` file for the
227
+ software systems like `idox`, `northgate` etc as these are added automatically.
228
+
229
+ Please check the tag list before you change anything:
230
+
231
+ ```ruby
232
+ pp UKPlanningScraper::Authority.tags
233
+ ```
234
+
235
+ ## Development
236
+
237
+ After checking out the repo, run `bin/setup` to install dependencies. You can
238
+ also run `bin/console` for an interactive prompt that will allow you to
239
+ experiment.
240
+
241
+ To install this gem onto your local machine, run `bundle exec rake install`. To
242
+ release a new version, update the version number in `version.rb`, and then run
243
+ `bundle exec rake release`, which will create a git tag for the version, push
244
+ git commits and tags, and push the `.gem` file to
245
+ [rubygems.org](https://rubygems.org).
246
+
247
+ ## Contributing
248
+
249
+ Bug reports and pull requests are welcome on GitHub at
250
+ https://github.com/adrianshort/uk_planning_scraper.
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "uk_planning_scraper"
5
+ require "pry"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ Pry.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,46 @@
1
+ module UKPlanningScraper
2
+ class Application
3
+ attr_accessor :authority_name
4
+ attr_accessor :council_reference
5
+ attr_accessor :date_received
6
+ attr_accessor :date_validated
7
+ attr_accessor :status
8
+ attr_accessor :scraped_at
9
+ attr_accessor :info_url
10
+ attr_accessor :address
11
+ attr_accessor :description
12
+ attr_accessor :documents_count
13
+ attr_accessor :documents_url
14
+ attr_accessor :alternative_reference
15
+ attr_accessor :decision
16
+ attr_accessor :date_decision
17
+ attr_accessor :appeal_status
18
+ attr_accessor :appeal_decision
19
+
20
+ def to_hash
21
+ {
22
+ scraped_at: @scraped_at,
23
+ authority_name: @authority_name,
24
+ council_reference: @council_reference,
25
+ date_received: @date_received,
26
+ date_validated: @date_validated,
27
+ status: @status,
28
+ decision: @decision,
29
+ date_decision: @date_decision,
30
+ info_url: @info_url,
31
+ address: @address,
32
+ description: @description,
33
+ documents_count: @documents_count,
34
+ documents_url: @documents_url,
35
+ alternative_reference: @alternative_reference,
36
+ appeal_status: @appeal_status,
37
+ appeal_decision: @appeal_decision
38
+ }
39
+ end
40
+
41
+ def valid?
42
+ return true if @authority_name && @council_reference && @info_url
43
+ false
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,113 @@
1
+ authority_name,url,tags
2
+ Aberdeen,https://publicaccess.aberdeencity.gov.uk/online-applications/search.do?action=advanced,scotland
3
+ Adur and Worthing,https://planning.adur-worthing.gov.uk/online-applications/search.do?action=advanced,england
4
+ Allerdale,https://planning.allerdale.gov.uk/portal/servlets/ApplicationSearchServlet,england
5
+ Amber Valley,https://www.ambervalley.gov.uk/environment-and-planning/planning/development-management/planning-applications/view-a-planning-application.aspx,england
6
+ Arun,https://www.arun.gov.uk/weekly-lists,england
7
+ Ashfield,https://www2.ashfield.gov.uk/cfusion/Planning/plan_findfile.cfm,england
8
+ Ashford,http://planning.ashford.gov.uk/planning/Default.aspx?new=true,england
9
+ Aylesbury Vale,https://publicaccess.aylesburyvaledc.gov.uk/online-applications//search.do?action=advanced&searchType=Application,england
10
+ Babergh,https://planning.baberghmidsuffolk.gov.uk/online-applications/search.do?action=advanced,england
11
+ Barking and Dagenham,http://paplan.lbbd.gov.uk/online-applications/search.do?action=advanced,london outerlondon northlondon england londonboroughs
12
+ Barnet,https://publicaccess.barnet.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
13
+ Bedford,http://www.publicaccess.bedford.gov.uk/online-applications/search.do?action=advanced,england
14
+ Bexley,http://pa.bexley.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
15
+ Birmingham,https://eplanning.birmingham.gov.uk/Northgate/PlanningExplorer/GeneralSearch.aspx,england
16
+ Blackpool,https://idoxpa.blackpool.gov.uk/online-applications/search.do?action=advanced,england
17
+ Bolton,https://www.planningpa.bolton.gov.uk/online-applications-17/search.do?action=advanced,england greatermanchester
18
+ Bracknell Forest,https://planapp.bracknell-forest.gov.uk/online-applications/search.do?action=advanced,england
19
+ Bradford,https://planning.bradford.gov.uk/online-applications/search.do?action=advanced,england westyorkshire
20
+ Brent,https://pa.brent.gov.uk/online-applications/search.do?action=advanced&searchType=Application,londonboroughs london
21
+ Brighton and Hove,https://planningapps.brighton-hove.gov.uk/online-applications/search.do?action=advanced,england
22
+ Bristol,https://planningonline.bristol.gov.uk/online-applications/search.do?action=advanced,england
23
+ Bromley,https://searchapplications.bromley.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
24
+ Bury,https://planning.bury.gov.uk/online-applications/search.do?action=advanced,england greatermanchester
25
+ Calderdale,https://portal.calderdale.gov.uk/online-applications/search.do?action=advanced,england westyorkshire
26
+ Camden,http://planningrecords.camden.gov.uk/Northgate/PlanningExplorer17/GeneralSearch.aspx,londonboroughs london
27
+ Cardiff,https://planningonline.cardiff.gov.uk/online-applications/search.do?action=advanced,wales
28
+ Cheshire West and Chester,https://pa.cheshirewestandchester.gov.uk/online-applications/search.do?action=advanced,chester cheshire england
29
+ City of London,http://www.planning2.cityoflondon.gov.uk/online-applications/search.do?action=advanced,london innerlondon northlondon england
30
+ Croydon,http://publicaccess2.croydon.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
31
+ Cornwall,http://planning.cornwall.gov.uk/online-applications/search.do?action=advanced,england
32
+ County Durham,https://publicaccess.durham.gov.uk/online-applications/search.do?action=advanced,england
33
+ Darlington,https://publicaccess.darlington.gov.uk/online-applications/search.do?action=advanced,england
34
+ Doncaster,https://planning.doncaster.gov.uk/online-applications/search.do?action=advanced,england southyorkshire
35
+ Ealing,https://pam.ealing.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
36
+ East Riding of Yorkshire,https://newplanningaccess.eastriding.gov.uk/newplanningaccess/search.do?action=advanced,england
37
+ Edinburgh,https://citydev-portal.edinburgh.gov.uk/idoxpa-web/search.do?action=advanced,scotland
38
+ Enfield,https://planningandbuildingcontrol.enfield.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
39
+ Epsom and Ewell,http://eplanning.epsom-ewell.gov.uk/online-applications/search.do?action=advanced,surrey england
40
+ Glasgow,https://publicaccess.glasgow.gov.uk/online-applications/search.do?action=advanced,scotland
41
+ Greenwich,https://planning.royalgreenwich.gov.uk/online-applications/search.do?action=advanced,london innerlondon southlondon england londonboroughs
42
+ Hackney,http://planning.hackney.gov.uk/Northgate/PlanningExplorer/generalsearch.aspx,londonboroughs london
43
+ Halton,https://webapp.halton.gov.uk/planningapps/,england cheshire liverpoolcityregion
44
+ Hammersmith and Fulham,http://public-access.lbhf.gov.uk/online-applications/search.do?action=advanced,london innerlondon northlondon england londonboroughs
45
+ Haringey,http://www.planningservices.haringey.gov.uk/portal/servlets/ApplicationSearchServlet,london londonboroughs
46
+ Harrow,http://www.harrow.gov.uk/planningsearch/lg/plansearch.page?org.apache.shale.dialog.DIALOG_NAME=planningsearch&Param=lg.Planning&searchType=detailed,london londonboroughs
47
+ Havering,http://development.havering.gov.uk/OcellaWeb/planningSearch,london londonboroughs eastlondon outerlondon
48
+ Hillingdon,http://planning.hillingdon.gov.uk/OcellaWeb/planningSearch,london londonboroughs westlondon outerlondon
49
+ Hounslow,http://planning.hounslow.gov.uk/planning_search.aspx,london londonboroughs
50
+ Hull,https://www.hullcc.gov.uk/padcbc/publicaccess-live/search.do?action=advanced,england
51
+ Islington,http://planning.islington.gov.uk/northgate/planningexplorer/generalsearch.aspx,londonboroughs london
52
+ Kensington and Chelsea,https://www.rbkc.gov.uk/planning/searches/default.aspx?adv=1#advancedSearch,london londonboroughs
53
+ Kingston upon Thames,https://publicaccess.kingston.gov.uk/online-applications/search.do?action=advanced,london londonboroughs
54
+ Knowsley,https://planapp.knowsley.gov.uk/online-applications/search.do?action=advanced,england merseyside liverpoolcityregion
55
+ Lambeth,https://planning.lambeth.gov.uk/online-applications/search.do?action=advanced,londonboroughs london southlondon
56
+ Leeds,https://publicaccess.leeds.gov.uk/online-applications/search.do?action=advanced,england westyorkshire
57
+ Lewisham,http://planning.lewisham.gov.uk/online-applications/search.do?action=advanced,londonboroughs london southlondon
58
+ Liverpool,http://northgate.liverpool.gov.uk/PlanningExplorer17/GeneralSearch.aspx,england merseyside liverpoolcityregion
59
+ London Legacy Development Corporation,http://planningregister.londonlegacy.co.uk/swift/apas/run/wphappcriteria.display,london developmentcorporations londondevelopmentcorporations
60
+ Manchester,https://pa.manchester.gov.uk/online-applications/search.do?action=advanced,england greatermanchester
61
+ Merton,http://planning.merton.gov.uk/Northgate/PlanningExplorerAA/GeneralSearch.aspx,london outerlondon southlondon england londonboroughs
62
+ Milton Keynes,https://publicaccess2.milton-keynes.gov.uk/online-applications/search.do?action=advanced,england
63
+ Newcastle upon Tyne,https://publicaccessapplications.newcastle.gov.uk/online-applications/search.do?action=advanced,england tyneandwear
64
+ Newham,https://pa.newham.gov.uk/online-applications/search.do?action=advanced,londonboroughs london londonboroughs
65
+ North East Lincolnshire,http://planninganddevelopment.nelincs.gov.uk/online-applications/search.do?action=advanced,england
66
+ North Lincolnshire,http://www.planning.northlincs.gov.uk/plan/search/,england
67
+ North Somerset,https://planning.n-somerset.gov.uk/online-applications/search.do?action=advanced,england
68
+ Northern Ireland,http://epicpublic.planningni.gov.uk/publicaccess/search.do?action=advanced&searchType=Application,northernireland belfast
69
+ North Tyneside,https://idoxpublicaccess.northtyneside.gov.uk/online-applications/search.do?action=advanced,england tyneandwear
70
+ Northumberland,https://publicaccess.northumberland.gov.uk/online-applications/search.do?action=advanced,england
71
+ Nottingham,http://publicaccess.nottinghamcity.gov.uk/online-applications/search.do?action=advanced,nottingham eastmidlands england
72
+ Old Oak and Park Royal Development Corporation,http://planningregister.opdc.london.gov.uk/swift/apas/run/wphappcriteria.display,london developmentcorporations londondevelopmentcorporations
73
+ Oldham,http://planningpa.oldham.gov.uk/online-applications/search.do?action=advanced,england greatermanchester
74
+ Peterborough,https://planpa.peterborough.gov.uk/online-applications/search.do?action=advanced,england
75
+ Plymouth,https://planning.plymouth.gov.uk/online-applications/search.do?action=advanced,england
76
+ Poole,https://boppa.poole.gov.uk/online-applications/search.do?action=advanced,england
77
+ Portsmouth,http://publicaccess.portsmouth.gov.uk/online-applications/search.do?action=advanced,england
78
+ Redbridge,http://planning.redbridge.gov.uk/swiftlg/apas/run/wphappcriteria.display,london londonboroughs
79
+ Richmond,http://www2.richmond.gov.uk/PlanData2/Planning_Report.aspx,london londonboroughs
80
+ Rochdale,http://publicaccess.rochdale.gov.uk/online-applications/search.do?action=advanced,england greatermanchester
81
+ Rutland,https://publicaccess.rutland.gov.uk/online-applications/search.do?action=advanced,england
82
+ Salford,http://publicaccess.salford.gov.uk/publicaccess/search.do?action=advanced,england greatermanchester
83
+ Sefton,https://pa.sefton.gov.uk/online-applications/search.do?action=advanced,england merseyside liverpoolcityregion
84
+ Sheffield,https://planningapps.sheffield.gov.uk/online-applications/search.do?action=advanced,england
85
+ Solihull,https://publicaccess.solihull.gov.uk/online-applications/search.do?action=advanced,england westmidlands
86
+ Southend-on-Sea,https://publicaccess.southend.gov.uk/online-applications/search.do?action=advanced,england
87
+ South Downs,https://planningpublicaccess.southdowns.gov.uk/online-applications/search.do?action=advanced,nationalparks england
88
+ Southampton,https://planningpublicaccess.southampton.gov.uk/online-applications/search.do?action=advanced,england
89
+ South Gloucestershire,https://developments.southglos.gov.uk/online-applications/search.do?action=advanced,england
90
+ South Tyneside,http://planning.southtyneside.info/Northgate/PlanningExplorer/GeneralSearch.aspx,england tyneandwear
91
+ Southwark,https://planning.southwark.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
92
+ St. Helens,https://publicaccess.sthelens.gov.uk/online-applications/search.do?action=advanced,england merseyside liverpoolcityregion
93
+ Stockport,http://planning.stockport.gov.uk/PlanningData-live/search.do?action=advanced,england greatermanchester
94
+ Stockton-on-Tees,https://www.developmentmanagement.stockton.gov.uk/online-applications/search.do?action=advanced,england
95
+ Stoke-on-Trent,https://planning.stoke.gov.uk/online-applications/search.do?action=advanced,england
96
+ Sunderland,https://www.sunderland.gov.uk/online-applications/search.do?action=advanced,england tyneandwear
97
+ Sutton,https://planningregister.sutton.gov.uk/online-applications/search.do?action=advanced,london londonboroughs outerlondon southlondon england
98
+ Swindon,https://pa1.swindon.gov.uk/publicaccess/search.do?action=advanced,england
99
+ Tameside,https://public.tameside.gov.uk/plan/f422planapp.asp,england greatermanchester
100
+ Thurrock,https://regs.thurrock.gov.uk/online-applications/search.do?action=advanced,england
101
+ Torbay,https://www.torbay.gov.uk/newpublicaccess/search.do?action=advanced,""
102
+ Tower Hamlets,https://development.towerhamlets.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
103
+ Trafford,https://publicaccess.trafford.gov.uk/online-applications/search.do?action=advanced,england greatermanchester
104
+ Wakefield,https://planning.wakefield.gov.uk/online-applications/search.do?action=advanced,england
105
+ Waltham Forest,http://planning.walthamforest.gov.uk/application-search?civica.query.ReceivedDateFrom=20%2F05%2F2018&civica.query.ReceivedDateTo=26%2F05%2F2018,london londonboroughs
106
+ Wandsworth,https://planning1.wandsworth.gov.uk/Northgate/PlanningExplorer/GeneralSearch.aspx,london innerlondon southlondon england londonboroughs
107
+ West Berkshire,https://publicaccess.westberks.gov.uk/online-applications/search.do?action=advanced,england
108
+ Westminster,http://idoxpa.westminster.gov.uk/online-applications/search.do?action=advanced,londonboroughs london
109
+ Wigan,https://apps.wigan.gov.uk/planapps/PlanAppsAppSearch.asp,england greatermanchester
110
+ Windsor and Maidenhead,http://publicaccess.rbwm.gov.uk/online-applications/search.do?action=advanced,england
111
+ Wirral,https://planning.wirral.gov.uk/online-applications/search.do?action=advanced,wirral england merseyside liverpoolcityregion
112
+ Wolverhampton,http://planningonline.wolverhampton.gov.uk/online-applications/search.do?action=advanced,england westmidlands
113
+ York,https://planningaccess.york.gov.uk/online-applications/search.do?action=advanced,england