From 74e3121f2829b4f546544c47a45982d596a27552 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Mon, 15 Apr 2019 09:55:03 +0100 Subject: [PATCH 1/7] Nuke whitespace --- lib/uk_planning_scraper/application.rb | 2 +- lib/uk_planning_scraper/authority.rb | 28 +++++++++---------- .../authority_scrape_params.rb | 28 +++++++++---------- lib/uk_planning_scraper/idox.rb | 28 +++++++++---------- lib/uk_planning_scraper/northgate.rb | 4 +-- 5 files changed, 45 insertions(+), 45 deletions(-) diff --git a/lib/uk_planning_scraper/application.rb b/lib/uk_planning_scraper/application.rb index 5c17550..5fced94 100644 --- a/lib/uk_planning_scraper/application.rb +++ b/lib/uk_planning_scraper/application.rb @@ -37,7 +37,7 @@ module UKPlanningScraper appeal_decision: @appeal_decision } end - + def valid? return true if @authority_name && @council_reference && @info_url false diff --git a/lib/uk_planning_scraper/authority.rb b/lib/uk_planning_scraper/authority.rb index 621e7a3..a4c08d6 100644 --- a/lib/uk_planning_scraper/authority.rb +++ b/lib/uk_planning_scraper/authority.rb @@ -3,7 +3,7 @@ require 'csv' module UKPlanningScraper class Authority attr_reader :name, :url - + @@authorities = [] def initialize(name, url) @@ -31,7 +31,7 @@ module UKPlanningScraper raise SystemNotSupported.new("Planning system not supported for \ #{@name} at URL: #{@url}") end - + # Post processing @applications.each do |app| app.authority_name = @name @@ -41,32 +41,32 @@ module UKPlanningScraper output = [] # FIXME - silently ignores invalid apps. How should we handle them? @applications.each { |app| output << app.to_hash if app.valid? } - + # Reset so that old params don't get used for new scrapes clear_scrape_params - + output # Single point of successful exit end - + def tags @tags.sort end - + # Add multiple tags to existing tags def add_tags(tags) tags.each { |t| add_tag(t) } end - + # Add a single tag to existing tags def add_tag(tag) clean_tag = tag.strip.downcase.gsub(' ', '') @tags << clean_tag unless tagged?(clean_tag) # prevent duplicates end - + def tagged?(tag) @tags.include?(tag) end - + def system if @url.match(/search\.do\?action=advanced/i) 'idox' @@ -84,18 +84,18 @@ module UKPlanningScraper def self.all @@authorities end - + # List all the tags in use def self.tags tags = [] @@authorities.each { |a| tags << a.tags } tags.flatten.uniq.sort end - + def self.named(name) authority = @@authorities.find { |a| name == a.name } raise AuthorityNotFound if authority.nil? - authority + authority end # Tagged x @@ -125,11 +125,11 @@ module UKPlanningScraper CSV.foreach(File.join(File.dirname(__dir__), 'uk_planning_scraper', \ 'authorities.csv'), :headers => true) do |line| auth = Authority.new(line['authority_name'], line['url']) - + if line['tags'] auth.add_tags(line['tags'].split(/\s+/)) end - + auth.add_tag(auth.system) @@authorities << auth end diff --git a/lib/uk_planning_scraper/authority_scrape_params.rb b/lib/uk_planning_scraper/authority_scrape_params.rb index 819c6e2..0024732 100644 --- a/lib/uk_planning_scraper/authority_scrape_params.rb +++ b/lib/uk_planning_scraper/authority_scrape_params.rb @@ -4,7 +4,7 @@ module UKPlanningScraper class Authority # Parameter methods for Authority#scrape # Desgined to be method chained, eg: - # + # # applications = UKPlanningScraper::Authority.named("Barnet"). \ # development_type("Q22").keywords("illuminat"). \ # validated_days(30).scrape @@ -17,7 +17,7 @@ module UKPlanningScraper unless n > 0 raise ArgumentError.new("validated_days must be greater than 0") end - + validated_from(Date.today - (n - 1)) validated_to(Date.today) self @@ -31,7 +31,7 @@ module UKPlanningScraper unless n > 0 raise ArgumentError.new("received_days must be greater than 0") end - + received_from(Date.today - (n - 1)) received_to(Date.today) self @@ -45,18 +45,18 @@ module UKPlanningScraper unless n > 0 raise ArgumentError.new("decided_days must be greater than 0") end - + decided_from(Date.today - (n - 1)) decided_to(Date.today) self end - + def applicant_name(s) unless system == 'idox' raise NoMethodError.new("applicant_name is only implemented for Idox. \ This authority (#{@name}) is #{system.capitalize}.") end - + check_class(s, String) @scrape_params[:applicant_name] = s.strip self @@ -67,7 +67,7 @@ module UKPlanningScraper raise NoMethodError.new("application_type is only implemented for \ Idox. This authority (#{@name}) is #{system.capitalize}.") end - + check_class(s, String) @scrape_params[:application_type] = s.strip self @@ -78,14 +78,14 @@ module UKPlanningScraper raise NoMethodError.new("development_type is only implemented for \ Idox. This authority (#{@name}) is #{system.capitalize}.") end - + check_class(s, String) @scrape_params[:development_type] = s.strip self end private - + # Handle the simple params with this def method_missing(method_name, *args) sc_params = { @@ -97,18 +97,18 @@ module UKPlanningScraper decided_to: Date, keywords: String } - + value = args[0] - + if sc_params[method_name] check_class(value, sc_params[method_name], method_name.to_s) value.strip! if value.class == String - + if value.class == Date && value > Date.today raise ArgumentError.new("#{method_name} can't be a date in the " + \ "future (#{value.to_s})") end - + @scrape_params[method_name] = value self else @@ -119,7 +119,7 @@ module UKPlanningScraper def clear_scrape_params @scrape_params = {} end - + # https://stackoverflow.com/questions/5100299/how-to-get-the-name-of-the-calling-method def check_class( param_value, diff --git a/lib/uk_planning_scraper/idox.rb b/lib/uk_planning_scraper/idox.rb index 20cd434..5ba773d 100644 --- a/lib/uk_planning_scraper/idox.rb +++ b/lib/uk_planning_scraper/idox.rb @@ -7,7 +7,7 @@ module UKPlanningScraper def scrape_idox(params, options) puts "Using Idox scraper." base_url = @url.match(/(https?:\/\/.+?)\//)[1] - + apps = [] agent = Mechanize.new @@ -31,7 +31,7 @@ module UKPlanningScraper }.each { |f| form.add_field!(f) unless form.has_field?(f) } date_format = "%d/%m/%Y" - + form.send(:"date(applicationReceivedStart)", params[:received_from].strftime(date_format)) if params[:received_from] form.send(:"date(applicationReceivedEnd)", params[:received_to].strftime(date_format)) if params[:received_to] @@ -42,12 +42,12 @@ module UKPlanningScraper form.send(:"date(applicationDecisionEnd)", params[:decided_to].strftime(date_format)) if params[:decided_to] form.send(:"searchCriteria\.description", params[:keywords]) - + # Some councils don't have the applicant name on their form, eg Bexley form.send(:"searchCriteria\.applicantName", params[:applicant_name]) if form.has_field? 'searchCriteria.applicantName' - + form.send(:"searchCriteria\.caseType", params[:application_type]) if form.has_field? 'searchCriteria.caseType' - + # Only some Idox sites (eg Bolton) have a 'searchCriteria.developmentType' parameter form.send(:"searchCriteria\.developmentType", params[:development_type]) if form.has_field? 'searchCriteria.developmentType' @@ -56,7 +56,7 @@ module UKPlanningScraper if page.search('.errors').inner_text.match(/Too many results found/i) raise TooManySearchResults.new("Scrape in smaller chunks. Use shorter date ranges and/or more search parameters.") end - + loop do # Parse search results items = page.search('li.searchresult') @@ -69,7 +69,7 @@ module UKPlanningScraper # Parse info line info_line = app.at("p.metaInfo").inner_text.strip bits = info_line.split('|').map { |e| e.strip.delete("\r\n") } - + bits.each do |bit| if matches = bit.match(/Ref\. No:\s+(.+)/) data.council_reference = matches[1] @@ -78,7 +78,7 @@ module UKPlanningScraper if matches = bit.match(/(Received|Registered):\s+.*(\d{2}\s\w{3}\s\d{2}\d{2}?)/) data.date_received = Date.parse(matches[2]) end - + if matches = bit.match(/Validated:\s+.*(\d{2}\s\w{3}\s\d{2}\d{2}?)/) data.date_validated = Date.parse(matches[1]) end @@ -92,10 +92,10 @@ module UKPlanningScraper data.info_url = base_url + app.at('a')['href'] data.address = app.at('p.address').inner_text.strip data.description = app.at('a').inner_text.strip - + apps << data end - + # Get the Next button from the pager, if there is one if next_button = page.at('a.next') next_url = base_url + next_button[:href]# + '&searchCriteria.resultsPerPage=100' @@ -106,13 +106,13 @@ module UKPlanningScraper break end end - + # Scrape the summary tab for each app apps.each_with_index do |app, i| sleep options[:delay] puts "#{i + 1} of #{apps.size}: #{app.info_url}" res = agent.get(app.info_url) - + if res.code == '200' # That's a String not an Integer, ffs # Parse the summary tab for this app @@ -133,14 +133,14 @@ module UKPlanningScraper app.documents_url = base_url + documents_link[:href] end end - + # We need to find values in the table by using the th labels. # The row indexes/positions change from site to site (or even app to app) so we can't rely on that. res.search('#simpleDetailsTable tr').each do |row| key = row.at('th').inner_text.strip value = row.at('td').inner_text.strip - + case key when 'Reference' app.council_reference = value diff --git a/lib/uk_planning_scraper/northgate.rb b/lib/uk_planning_scraper/northgate.rb index c979e77..1ab923f 100644 --- a/lib/uk_planning_scraper/northgate.rb +++ b/lib/uk_planning_scraper/northgate.rb @@ -8,10 +8,10 @@ module UKPlanningScraper def scrape_northgate(params, options) puts "Using Northgate scraper." base_url = @url.match(/(https?:\/\/.+?)\//)[1] - + # Remove 'generalsearch.aspx' from the end and add '/Generic/' - case sensitive? generic_url = @url.match(/.+\//)[0] + 'Generic/' - + apps = [] $stdout.sync = true # Flush output buffer after every write so log messages appear immediately. From 1efb7c57d44ccd3718138dc0b7d6a030b359102f Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Mon, 15 Apr 2019 09:56:12 +0100 Subject: [PATCH 2/7] Extract summary scraping into separate method --- lib/uk_planning_scraper/idox.rb | 138 +++++++++++++++++--------------- 1 file changed, 75 insertions(+), 63 deletions(-) diff --git a/lib/uk_planning_scraper/idox.rb b/lib/uk_planning_scraper/idox.rb index 5ba773d..d483dcf 100644 --- a/lib/uk_planning_scraper/idox.rb +++ b/lib/uk_planning_scraper/idox.rb @@ -4,13 +4,20 @@ require 'pp' module UKPlanningScraper class Authority private + + def base_url + @base_url ||= @url.match(/(https?:\/\/.+?)\//)[1] + end + + def agent + @agent ||= Mechanize.new + end + def scrape_idox(params, options) puts "Using Idox scraper." - base_url = @url.match(/(https?:\/\/.+?)\//)[1] apps = [] - agent = Mechanize.new puts "Getting: #{@url}" page = agent.get(@url) # load the search form page @@ -111,72 +118,77 @@ module UKPlanningScraper apps.each_with_index do |app, i| sleep options[:delay] puts "#{i + 1} of #{apps.size}: #{app.info_url}" - res = agent.get(app.info_url) - if res.code == '200' # That's a String not an Integer, ffs - # Parse the summary tab for this app + parse_info_url(app) if app.info_url + end # scrape summary tab for apps + apps + end # scrape_idox - app.scraped_at = Time.now + def parse_info_url(app) + res = agent.get(app.info_url) - # The Documents tab doesn't show if there are no documents (we get li.nodocuments instead) - # Bradford has #tab_documents but without the document count on it - app.documents_count = 0 + if res.code == '200' # That's a String not an Integer, ffs + # Parse the summary tab for this app - if documents_link = res.at('.associateddocument a') - if documents_link.inner_text.match(/\d+/) - app.documents_count = documents_link.inner_text.match(/\d+/)[0].to_i - app.documents_url = base_url + documents_link[:href] - end - elsif documents_link = res.at('#tab_documents') - if documents_link.inner_text.match(/\d+/) - app.documents_count = documents_link.inner_text.match(/\d+/)[0].to_i - app.documents_url = base_url + documents_link[:href] - end + app.scraped_at = Time.now + + # The Documents tab doesn't show if there are no documents (we get li.nodocuments instead) + # Bradford has #tab_documents but without the document count on it + app.documents_count = 0 + + if documents_link = res.at('.associateddocument a') + if documents_link.inner_text.match(/\d+/) + app.documents_count = documents_link.inner_text.match(/\d+/)[0].to_i + app.documents_url = base_url + documents_link[:href] end + elsif documents_link = res.at('#tab_documents') + if documents_link.inner_text.match(/\d+/) + app.documents_count = documents_link.inner_text.match(/\d+/)[0].to_i + app.documents_url = base_url + documents_link[:href] + end + end - # We need to find values in the table by using the th labels. - # The row indexes/positions change from site to site (or even app to app) so we can't rely on that. - - res.search('#simpleDetailsTable tr').each do |row| - key = row.at('th').inner_text.strip - value = row.at('td').inner_text.strip - - case key - when 'Reference' - app.council_reference = value - when 'Alternative Reference' - app.alternative_reference = value unless value.empty? - when 'Planning Portal Reference' - app.alternative_reference = value unless value.empty? - when 'Application Received' - app.date_received = Date.parse(value) if value.match(/\d/) - when 'Application Registered' - app.date_received = Date.parse(value) if value.match(/\d/) - when 'Application Validated' - app.date_validated = Date.parse(value) if value.match(/\d/) - when 'Address' - app.address = value unless value.empty? - when 'Proposal' - app.description = value unless value.empty? - when 'Status' - app.status = value unless value.empty? - when 'Decision' - app.decision = value unless value.empty? - when 'Decision Issued Date' - app.date_decision = Date.parse(value) if value.match(/\d/) - when 'Appeal Status' - app.appeal_status = value unless value.empty? - when 'Appeal Decision' - app.appeal_decision = value unless value.empty? - else - puts "Error: key '#{key}' not found" - end # case - end # each row - else - puts "Error: HTTP #{res.code}" - end # if - end # scrape summary tab for apps - apps - end # scrape_idox + # We need to find values in the table by using the th labels. + # The row indexes/positions change from site to site (or even app to app) so we can't rely on that. + + res.search('#simpleDetailsTable tr').each do |row| + key = row.at('th').inner_text.strip + value = row.at('td').inner_text.strip + + case key + when 'Reference' + app.council_reference = value + when 'Alternative Reference' + app.alternative_reference = value unless value.empty? + when 'Planning Portal Reference' + app.alternative_reference = value unless value.empty? + when 'Application Received' + app.date_received = Date.parse(value) if value.match(/\d/) + when 'Application Registered' + app.date_received = Date.parse(value) if value.match(/\d/) + when 'Application Validated' + app.date_validated = Date.parse(value) if value.match(/\d/) + when 'Address' + app.address = value unless value.empty? + when 'Proposal' + app.description = value unless value.empty? + when 'Status' + app.status = value unless value.empty? + when 'Decision' + app.decision = value unless value.empty? + when 'Decision Issued Date' + app.date_decision = Date.parse(value) if value.match(/\d/) + when 'Appeal Status' + app.appeal_status = value unless value.empty? + when 'Appeal Decision' + app.appeal_decision = value unless value.empty? + else + puts "Error: key '#{key}' not found" + end # case + end # each row + else + puts "Error: HTTP #{res.code}" + end # if + end end # class end From 452e39a867f6f311962ea64291619e056945c3cb Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Mon, 15 Apr 2019 09:59:22 +0100 Subject: [PATCH 3/7] Scape properties details --- lib/uk_planning_scraper.rb | 1 + lib/uk_planning_scraper/application.rb | 9 +++- lib/uk_planning_scraper/idox.rb | 66 ++++++++++++++++++++++++++ lib/uk_planning_scraper/property.rb | 30 ++++++++++++ 4 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 lib/uk_planning_scraper/property.rb diff --git a/lib/uk_planning_scraper.rb b/lib/uk_planning_scraper.rb index 3dd2d0a..71100a9 100644 --- a/lib/uk_planning_scraper.rb +++ b/lib/uk_planning_scraper.rb @@ -2,6 +2,7 @@ require "uk_planning_scraper/version" require "uk_planning_scraper/authority" require "uk_planning_scraper/authority_scrape_params" require "uk_planning_scraper/application" +require "uk_planning_scraper/property" require 'uk_planning_scraper/idox' require 'uk_planning_scraper/northgate' require 'logger' diff --git a/lib/uk_planning_scraper/application.rb b/lib/uk_planning_scraper/application.rb index 5fced94..b8e7508 100644 --- a/lib/uk_planning_scraper/application.rb +++ b/lib/uk_planning_scraper/application.rb @@ -16,6 +16,10 @@ module UKPlanningScraper attr_accessor :date_decision attr_accessor :appeal_status attr_accessor :appeal_decision + attr_accessor :property_count + attr_accessor :property_url + attr_accessor :property_detail_urls + attr_accessor :properties def to_hash { @@ -34,7 +38,10 @@ module UKPlanningScraper documents_url: @documents_url, alternative_reference: @alternative_reference, appeal_status: @appeal_status, - appeal_decision: @appeal_decision + appeal_decision: @appeal_decision, + property_count: @property_count, + property_detail_urls: @property_detail_urls, + properties: @properties } end diff --git a/lib/uk_planning_scraper/idox.rb b/lib/uk_planning_scraper/idox.rb index d483dcf..230799e 100644 --- a/lib/uk_planning_scraper/idox.rb +++ b/lib/uk_planning_scraper/idox.rb @@ -120,6 +120,8 @@ module UKPlanningScraper puts "#{i + 1} of #{apps.size}: #{app.info_url}" parse_info_url(app) if app.info_url + parse_property_url(app) if app.property_url + parse_property_detail_urls(app) if app.property_detail_urls end # scrape summary tab for apps apps end # scrape_idox @@ -186,9 +188,73 @@ module UKPlanningScraper puts "Error: key '#{key}' not found" end # case end # each row + + # find associated property link + property_association_link = res.at('p.associatedproperty a') + + if property_association_link + app.property_url = base_url + property_association_link[:href] + app.property_count = property_association_link.inner_text.to_i + end else puts "Error: HTTP #{res.code}" end # if end + + def parse_property_url(app) + # get URLs of property pages + app.property_detail_urls = [] + + res = agent.get(app.property_url) + + if res.code == '200' + res.search('#Property li a').each do |property_link| + app.property_detail_urls << base_url + property_link[:href] + end + else + puts "Error: HTTP #{res.code}" + end + end + + def parse_property_detail_urls(app) + # get property details + app.properties = [] + + app.property_detail_urls.each do |property_url| + res = agent.get(property_url) + + if res.code == '200' + property = Property.new + + res.search('#propertyAddress tr').each do |row| + key = row.at('th').inner_text.strip + value = row.at('td').inner_text.strip + + case key + when 'UPRN:' + property.uprn = value + when 'Full Address:' + property.address = value unless value.empty? + when 'Property Number:' + property.number = value unless value.empty? + when 'Street:' + property.street = value unless value.empty? + when 'Town:' + property.town = value unless value.empty? + when 'Postcode:' + property.postcode = value unless value.empty? + when 'Ward:' + property.ward = value unless value.empty? + when 'Parish:' + property.parish = value unless value.empty? + end + end + + app.properties << property + else + puts "Error: HTTP #{res.code}" + end + end + end end # class end diff --git a/lib/uk_planning_scraper/property.rb b/lib/uk_planning_scraper/property.rb new file mode 100644 index 0000000..8154ca8 --- /dev/null +++ b/lib/uk_planning_scraper/property.rb @@ -0,0 +1,30 @@ +module UKPlanningScraper + class Property + attr_accessor :uprn + attr_accessor :address + attr_accessor :number + attr_accessor :street + attr_accessor :town + attr_accessor :postcode + attr_accessor :ward + attr_accessor :parish + + def to_hash + { + uprn: @uprn, + address: @address, + number: @number, + street: @street, + town: @town, + postcode: @postcode, + ward: @ward, + parish: @parish + } + end + + def valid? + return true if @uprn + false + end + end +end From 9b86779fe7c9c5e3d720b14ee6d272e8433f9740 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Mon, 15 Apr 2019 11:58:27 +0100 Subject: [PATCH 4/7] Extract common Mechanize error handling --- lib/uk_planning_scraper/idox.rb | 39 +++++++++++++++------------------ 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/lib/uk_planning_scraper/idox.rb b/lib/uk_planning_scraper/idox.rb index 230799e..0e10c08 100644 --- a/lib/uk_planning_scraper/idox.rb +++ b/lib/uk_planning_scraper/idox.rb @@ -13,13 +13,23 @@ module UKPlanningScraper @agent ||= Mechanize.new end + def get(url, &block) + puts "Getting: #{url}" + res = agent.get(url) + + if res.code == '200' # That's a String not an Integer, ffs + block_given? ? block.call(res) : res + else + puts "Error: HTTP #{res.code}" + end + end + def scrape_idox(params, options) puts "Using Idox scraper." apps = [] - puts "Getting: #{@url}" - page = agent.get(@url) # load the search form page + page = get(@url) # load the search form page # Check that the search form is actually present. # When Idox has an internal error it returns an error page with HTTP 200. @@ -107,8 +117,7 @@ module UKPlanningScraper if next_button = page.at('a.next') next_url = base_url + next_button[:href]# + '&searchCriteria.resultsPerPage=100' sleep options[:delay] - puts "Getting: #{next_url}" - page = agent.get(next_url) + page = get(next_url) else break end @@ -117,7 +126,7 @@ module UKPlanningScraper # Scrape the summary tab for each app apps.each_with_index do |app, i| sleep options[:delay] - puts "#{i + 1} of #{apps.size}: #{app.info_url}" + puts "#{i + 1} of #{apps.size}" parse_info_url(app) if app.info_url parse_property_url(app) if app.property_url @@ -127,9 +136,7 @@ module UKPlanningScraper end # scrape_idox def parse_info_url(app) - res = agent.get(app.info_url) - - if res.code == '200' # That's a String not an Integer, ffs + get(app.info_url) do |res| # Parse the summary tab for this app app.scraped_at = Time.now @@ -196,23 +203,17 @@ module UKPlanningScraper app.property_url = base_url + property_association_link[:href] app.property_count = property_association_link.inner_text.to_i end - else - puts "Error: HTTP #{res.code}" - end # if + end # get end def parse_property_url(app) # get URLs of property pages app.property_detail_urls = [] - res = agent.get(app.property_url) - - if res.code == '200' + get(app.property_url) do |res| res.search('#Property li a').each do |property_link| app.property_detail_urls << base_url + property_link[:href] end - else - puts "Error: HTTP #{res.code}" end end @@ -221,9 +222,7 @@ module UKPlanningScraper app.properties = [] app.property_detail_urls.each do |property_url| - res = agent.get(property_url) - - if res.code == '200' + get(property_url) do |res| property = Property.new res.search('#propertyAddress tr').each do |row| @@ -251,8 +250,6 @@ module UKPlanningScraper end app.properties << property - else - puts "Error: HTTP #{res.code}" end end end From 97f5eb0c7e53890e0b80f686493887d166e0f072 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Mon, 15 Apr 2019 09:53:00 +0100 Subject: [PATCH 5/7] Don't scrape properties by default --- .../authority_scrape_params.rb | 10 + lib/uk_planning_scraper/idox.rb | 2 + spec/property_details_spec.rb | 25 + .../for_2_days_with_property_details.yml | 7183 +++++++++++++++++ 4 files changed, 7220 insertions(+) create mode 100644 spec/property_details_spec.rb create mode 100644 spec/vcr_cassettes/for_2_days_with_property_details.yml diff --git a/lib/uk_planning_scraper/authority_scrape_params.rb b/lib/uk_planning_scraper/authority_scrape_params.rb index 0024732..2ecbbea 100644 --- a/lib/uk_planning_scraper/authority_scrape_params.rb +++ b/lib/uk_planning_scraper/authority_scrape_params.rb @@ -84,6 +84,16 @@ module UKPlanningScraper self end + def include_property + unless system == 'idox' + raise NoMethodError.new("include_property is only implemented for \ + Idox. This authority (#{@name}) is #{system.capitalize}.") + end + + @scrape_params[:include_property] = true + self + end + private # Handle the simple params with this diff --git a/lib/uk_planning_scraper/idox.rb b/lib/uk_planning_scraper/idox.rb index 0e10c08..878a546 100644 --- a/lib/uk_planning_scraper/idox.rb +++ b/lib/uk_planning_scraper/idox.rb @@ -129,6 +129,8 @@ module UKPlanningScraper puts "#{i + 1} of #{apps.size}" parse_info_url(app) if app.info_url + + next unless params[:include_property] parse_property_url(app) if app.property_url parse_property_detail_urls(app) if app.property_detail_urls end # scrape summary tab for apps diff --git a/spec/property_details_spec.rb b/spec/property_details_spec.rb new file mode 100644 index 0000000..eb0d3ab --- /dev/null +++ b/spec/property_details_spec.rb @@ -0,0 +1,25 @@ +require 'spec_helper' + +describe UKPlanningScraper::Authority do + + describe '#include_property' do + + let(:scraper) { UKPlanningScraper::Authority.named(authority_name) } + + context 'for 2 days with property details' do + let(:authority_name) { 'Cardiff' } + + it 'returns apps' do + apps = VCR.use_cassette("#{self.class.description}") { + scraper.include_property + .decided_from(Date.new(2019, 4, 8)) + .decided_to(Date.new(2019, 4, 9)) + .scrape(delay: 0) + } + pp apps + end + end + + end + +end diff --git a/spec/vcr_cassettes/for_2_days_with_property_details.yml b/spec/vcr_cassettes/for_2_days_with_property_details.yml new file mode 100644 index 0000000..bd7b7e9 --- /dev/null +++ b/spec/vcr_cassettes/for_2_days_with_property_details.yml @@ -0,0 +1,7183 @@ +--- +http_interactions: +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/search.do?action=advanced + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:04 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; path=/; + HttpOnly + - WSLang-CFC001=en; expires=Mon, 15-Apr-2069 11:14:03 GMT; path=/; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:04 GMT + Content-Length: + - '37801' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\nApplications Search \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n\t\r\n + \ \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Applications Search

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n\r\n \r\n

Search + \ for Planning Applications, Appeals and Enforcements by matching at least + one search option in the form below.

\r\n\r\n \r\n \r\n \r\n \r\n \r\n + \ \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \ \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n
\r\n
\r\n\r\n\r\n\t

\r\n Reference Numbers\r\n + \

\n\r\n\t
\r\n
\r\n \r\n + \ Reference Numbers\r\n \r\n\r\n \r\n + \
\r\n \r\n + \ \r\n
\r\n \r\n\r\n \r\n + \
\r\n \r\n \r\n
\r\n \r\n\r\n + \ \r\n
\r\n \r\n \r\n
\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n + \
\r\n
\r\n\r\n\r\n\r\n

\r\n Application + Details\r\n

\n\r\n
\r\n
\r\n + \ \r\n Application Details\r\n \r\n\r\n + \ \r\n
\r\n \r\n + \ \r\n
\r\n \r\n\r\n \r\n + \
\r\n \r\n + \ \r\n
\r\n \r\n\r\n + \ \r\n
\r\n \r\n + \ \r\n
\r\n + \ \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n
\r\n + \ \r\n \r\n
\r\n + \ \r\n\r\n \r\n\r\n \r\n
\r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
\r\n \r\n\r\n \r\n + \
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n\r\n \r\n + \
\r\n \r\n \r\n + \
\r\n \r\n\r\n \r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n\r\n \r\n + \
\r\n \r\n + \ \r\n
\r\n + \ \r\n\r\n \r\n
\r\n + \ \r\n \r\n
\r\n + \ \r\n\r\n \r\n
\r\n + \ \r\n \r\n + \
\r\n \r\n\r\n \r\n\r\n \r\n\r\n + \ \r\n
\r\n \r\n \r\n + \
\r\n \r\n\r\n \r\n
\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n \r\n\r\n + \ \r\n \r\n + \ \r\n \"Help\r\n \r\n + \ \r\n \r\n \r\n + \ \r\n\r\n
\r\n \r\n
\r\n + \
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n Dates\r\n + \

\n\r\n
\r\n\t\t\r\n

\r\n + \ Enter a date range (a start date and an end date) for the criteria + that you are interested in. The date fields may be entered manually using + the date format dd/mm/yyyy (e.g. 21/06/2008). Alternatively, click on the + calendar button and pick a date.\r\n

\r\n\t\t\r\n
\r\n + \ \r\n Dates\r\n \r\n\r\n + \ \r\n \r\n \n
\n
\n \n \n \n + \ \"Date\n \n
\n \n \n \n + \ \"Date\n \n
\n\r\n \r\n \r\n + \ \n
\n
\n \n \n \n + \ \"Date\n \n
\n \n \n \n + \ \"Date\n \n
\n\r\n \r\n \r\n + \ \n
\n
\n \n \n \n + \ \"Date\n \n
\n + \ \n \n \n + \ \"Date\n \n
\n\r\n \r\n + \ \r\n \n
\n
\n + \ \n \n \n + \ \"Decision\n \n
\n \n \n \n + \ \"Decision\n + \ \n
\n\r\n \r\n \r\n \n
\n
\n \n \n \n + \ \"Appeal\n \n
\n + \ \n + \ \n \n + \ \"Appeal\n \n
\n\r\n \r\n\r\n + \ \r\n \r\n \r\n \r\n \r\n\r\n + \ \r\n \r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n
\r\n + \
\r\n\r\n\r\n
\r\n\r\n \r\n \r\n\r\n \r\n \r\n
\r\n \r\n
\r\n
\r\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:13:33 GMT +- request: + method: post + uri: https://planningonline.cardiff.gov.uk/online-applications/advancedSearchResults.do?action=firstPage + body: + encoding: UTF-8 + string: searchCriteria.reference=&searchCriteria.planningPortalReference=&searchCriteria.alternativeReference=&searchCriteria.description=&searchCriteria.applicantName=&searchCriteria.caseType=&searchCriteria.ward=&searchCriteria.conservationArea=&searchCriteria.agent=&searchCriteria.caseStatus=&searchCriteria.caseDecision=&searchCriteria.appealStatus=&searchCriteria.appealDecision=&searchCriteria.developmentType=&caseAddressType=Application&searchCriteria.address=&date%28applicationReceivedStart%29=&date%28applicationReceivedEnd%29=&date%28applicationValidatedStart%29=&date%28applicationValidatedEnd%29=&date%28applicationCommitteeStart%29=&date%28applicationCommitteeEnd%29=&date%28applicationDecisionStart%29=08%2F04%2F2019&date%28applicationDecisionEnd%29=09%2F04%2F2019&date%28appealDecisionStart%29=&date%28appealDecisionEnd%29=&searchType=Application + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=en + Host: + - planningonline.cardiff.gov.uk + Referer: + - https://planningonline.cardiff.gov.uk/online-applications/search.do?action=advanced + Content-Type: + - application/x-www-form-urlencoded + Content-Length: + - '856' + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:07 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:05 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:07 GMT + Content-Length: + - '25482' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \ \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\tSearch Results\r\n \r\n\t\r\n + \ \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – \r\n \n\n\n\n\n\n\n\n\n\nResults for Application Search\n\n\n\n\r\n

\r\n \r\n
\r\n \r\n + \ \r\n
\r\n + \ \r\n \r\n \r\n \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n
\r\n\t
    \r\n\r\n \r\n + \ \r\n
  • \r\n \"Refine\r\n
  • \r\n \r\n + \ \r\n
  • \r\n \"Save\r\n
  • \r\n \r\n + \ \r\n\r\n \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n
  • \r\n + \ \r\n\t\t
\r\n
\r\n\r\n\r\n\r\n \r\n
\r\n\r\n
\r\n + \ \r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n\r\n\t\t\t\t\r\n \r\n \r\n\t\t\t\t\r\n\r\n\t\t\t\t\r\n \r\n + \ \r\n\t\t\t\t\r\n + \ \r\n
\r\n
\r\n \r\n\r\n\r\n\r\n
\r\n\r\n \r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n \r\n\r\n
\r\n\r\n
    \r\n + \ \r\n \r\n\r\n
  • \r\n\r\n \r\n + \ USE AS A (C4) 6 BEDROOM HOUSE IN MULTIPLE OCCUPATION\r\n \r\n\r\n + \ \r\n \r\n \"Open\r\n \r\n \r\n\r\n \r\n + \ \r\n \r\n \r\n\r\n \r\n + \

    \r\n \r\n + \ \r\n 47 ELM STREET, ROATH, + CARDIFF, CF24 3QS\r\n

    \r\n \r\n\r\n + \

    \r\n Ref. No:\r\n + \ 19/00552/MNR\r\n |\r\n\r\n\r\n\r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n Received:\r\n + \ Thu 07 Mar 2019\r\n |\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n + \ \r\n \r\n \r\n + \ Validated:\r\n Thu 21 Mar 2019\r\n + \ |\r\n \r\n + \ \r\n \r\n\r\n \r\n\r\n + \ Status:\r\n Withdrawn\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n + \

    \r\n\r\n \r\n\r\n \r\n\r\n
  • \r\n\r\n + \ \r\n\r\n
  • \r\n\r\n \r\n + \ SINGLE STOREY REAR EXTENSION WITH PITCH ROOF\r\n \r\n\r\n + \ \r\n \r\n \"Open\r\n \r\n \r\n\r\n \r\n + \ \r\n \r\n \r\n\r\n \r\n + \

    \r\n \r\n + \ \r\n 81 KYLE CRESCENT, WHITCHURCH, + CARDIFF, CF14 1SU\r\n

    \r\n \r\n\r\n + \

    \r\n Ref. No:\r\n + \ 19/00503/DCH\r\n |\r\n\r\n\r\n\r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n Received:\r\n + \ Tue 05 Mar 2019\r\n |\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n + \ \r\n \r\n \r\n + \ Validated:\r\n Thu 07 Mar 2019\r\n + \ |\r\n \r\n + \ \r\n \r\n\r\n \r\n\r\n + \ Status:\r\n Decided\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n + \

    \r\n\r\n \r\n\r\n \r\n\r\n
  • \r\n\r\n + \ \r\n\r\n
  • \r\n\r\n \r\n + \ HEATING AND COOLING PLANT TO THE ROOF AND REAR COURTYARD\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n\r\n \r\n

    \r\n \r\n \r\n + \ 23 WOMANBY STREET, CITY CENTRE, CARDIFF, CF10 1BR\r\n + \

    \r\n \r\n\r\n

    \r\n + \ Ref. No:\r\n 19/00309/MJR\r\n |\r\n\r\n\r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n Received:\r\n + \ Thu 14 Feb 2019\r\n |\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n + \ \r\n \r\n \r\n + \ Validated:\r\n Thu 14 Feb 2019\r\n + \ |\r\n \r\n + \ \r\n \r\n\r\n \r\n\r\n + \ Status:\r\n Decided\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n + \

    \r\n\r\n \r\n\r\n \r\n\r\n
  • \r\n\r\n + \ \r\n\r\n
  • \r\n\r\n \r\n + \ 1ST FLOOR REAR AND GROUND FLOOR SIDE EXTENSION\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n

    \r\n + \ \r\n \r\n 3 + RHYD Y PENAU ROAD, CYNCOED, CARDIFF, CF23 6PX\r\n

    \r\n + \ \r\n\r\n

    \r\n Ref. + No:\r\n 19/00284/DCH\r\n |\r\n\r\n\r\n\r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n Received:\r\n + \ Tue 12 Feb 2019\r\n |\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n + \ \r\n \r\n \r\n + \ Validated:\r\n Thu 21 Feb 2019\r\n + \ |\r\n \r\n + \ \r\n \r\n\r\n \r\n\r\n + \ Status:\r\n Decided\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n + \

    \r\n\r\n \r\n\r\n \r\n\r\n
  • \r\n\r\n + \ \r\n\r\n
  • \r\n\r\n \r\n + \ VARIATION OF CONDITION 2 (APPROVED PLANS) OF 17/03122/DCH\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n\r\n \r\n

    \r\n \r\n \r\n + \ MILL FARM HOUSE, MILL FARM, ST MELLONS ROAD, LISVANE, + CARDIFF, CF14 0SH\r\n

    \r\n \r\n\r\n + \

    \r\n Ref. No:\r\n + \ 19/00263/DCH\r\n |\r\n\r\n\r\n\r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n Received:\r\n + \ Fri 08 Feb 2019\r\n |\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n + \ \r\n \r\n \r\n + \ Validated:\r\n Mon 11 Feb 2019\r\n + \ |\r\n \r\n + \ \r\n \r\n\r\n \r\n\r\n + \ Status:\r\n Decided\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n + \

    \r\n\r\n \r\n\r\n \r\n\r\n
  • \r\n\r\n + \ \r\n\r\n
  • \r\n\r\n \r\n + \ NEW BUILD EXTENSION TO EXISTING POOL HALL TO CREATE SMALL + RELAX AREA\r\n \r\n\r\n \r\n\r\n \r\n + \ \r\n \r\n \r\n\r\n \r\n + \

    \r\n \r\n + \ \r\n BANNATYNE HEALTH CLUB, + PARC TY GLAS, LLANISHEN, CARDIFF, CF14 5DU\r\n

    \r\n + \ \r\n\r\n

    \r\n Ref. + No:\r\n 19/00257/MNR\r\n |\r\n\r\n\r\n\r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n Received:\r\n + \ Fri 08 Feb 2019\r\n |\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n + \ \r\n \r\n \r\n + \ Validated:\r\n Fri 08 Feb 2019\r\n + \ |\r\n \r\n + \ \r\n \r\n\r\n \r\n\r\n + \ Status:\r\n Decided\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n + \

    \r\n\r\n \r\n\r\n \r\n\r\n
  • \r\n\r\n + \ \r\n\r\n
  • \r\n\r\n \r\n + \ REMOVE EXISTING DECKING AT REAR AND REPLACE WITH GROUND LEVEL + AND RAISED PATIOS\r\n \r\n\r\n \r\n\r\n \r\n + \ \r\n \r\n \r\n\r\n \r\n + \

    \r\n \r\n + \ \r\n 17 PANTGLAS, PENTYRCH, + CARDIFF, CF15 9TH\r\n

    \r\n \r\n\r\n + \

    \r\n Ref. No:\r\n + \ 19/00214/DCH\r\n |\r\n\r\n\r\n\r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n Received:\r\n + \ Mon 04 Feb 2019\r\n |\r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n\r\n + \ \r\n \r\n \r\n + \ Validated:\r\n Mon 11 Feb 2019\r\n + \ |\r\n \r\n + \ \r\n \r\n\r\n \r\n\r\n + \ Status:\r\n Decided\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n + \

    \r\n\r\n \r\n\r\n \r\n\r\n
  • \r\n\r\n + \ \r\n
\r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n
\r\n\r\n\r\n \r\n
\r\n + \ \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:13:36 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=summary&keyVal=_CARDIFF_DCAPR_126851 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:20 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:17 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:19 GMT + Content-Length: + - '28290' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00552/MNR\r\n |\r\n + \ \r\n USE AS A (C4) 6 BEDROOM HOUSE IN MULTIPLE OCCUPATION\r\n \r\n + \ |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n 47 ELM STREET, ROATH, CARDIFF, + CF24 3QS\r\n \r\n \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n\t\r\n \r\n \r\n \r\n + \ \r\n\t\r\n \r\n\r\n\r\n\r\n\r\n Skip + to main content\r\n\r\n \r\n
\r\n + \
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Summary

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n\r\n \r\n 19/00552/MNR\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n + \ \r\n USE AS A (C4) + 6 BEDROOM HOUSE IN MULTIPLE OCCUPATION\r\n \r\n \r\n + \ |\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 47 + ELM STREET, ROATH, CARDIFF, CF24 3QS\r\n \r\n \r\n + \ \r\n
\r\n\r\n\r\n
\r\n
    \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n\n
\n\n \n \n \n\n \n \n\n + \ \n \n \n \n\n \n + \ \n\n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n + \ \n \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n\n + \
\n Reference\n + \ \n + \ \n \n + \ \n 19/00552/MNR\n + \ \n \n + \
\n Alternative Reference\n + \ \n + \ \n \n + \ \n PP-07686229\n + \ \n \n + \
\n Application Received\n + \ \n + \ \n \n + \ \n Thu + 07 Mar 2019\n \n \n + \
\n Application Validated\n + \ \n + \ \n \n + \ \n Thu + 21 Mar 2019\n \n \n + \
\n Address\n \n \n + \ \n \n + \ 47 ELM STREET, ROATH, CARDIFF, + CF24 3QS\n \n \n + \
\n Proposal\n \n \n + \ \n \n + \ USE AS A (C4) 6 BEDROOM HOUSE + IN MULTIPLE OCCUPATION\n \n \n + \
\n Status\n \n \n + \ \n Withdrawn\n \n + \ \n \n + \
\n Decision\n \n \n + \ \n \n + \ Withdrawn by Applicant\n \n + \ \n
\n Decision + Issued Date\n \n + \ \n \n + \ \n Mon + 08 Apr 2019\n \n \n + \
\n Appeal Decision\n \n \n + \ \n \n + \ \n \n + \ \n
\n\n \n \n\n \n\n + \ \n\n \n\n \n\n \n \n \n + \
\n \n \n + \ \n \n \n + \ \n \n\n \n \n + \

There are 8 + documents associated with this application.

There + are 0 cases associated with this application.

There + is 1 + property associated with this application.

\r\n\n \n + \
\n \n \n\n
\n\r\n \r\n
\r\n \r\n + \ \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:13:49 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=relatedCases&keyVal=_CARDIFF_DCAPR_126851 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:22 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:21 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:22 GMT + Content-Length: + - '19897' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00552/MNR\r\n |\r\n + \ \r\n USE AS A (C4) 6 BEDROOM HOUSE IN MULTIPLE OCCUPATION\r\n \r\n + \ |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n 47 ELM STREET, ROATH, CARDIFF, + CF24 3QS\r\n \r\n \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\t\r\n \r\n + \ \r\n \r\n + \ \r\n\t\r\n\r\n\r\n\r\n\r\n Skip to main content\r\n\r\n \r\n + \
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Related Items

\r\n + \ \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n\r\n
\r\n + \ \r\n \r\n\r\n \r\n + \ 19/00552/MNR\r\n \r\n \r\n\r\n |\r\n\r\n \r\n \r\n + \ USE AS A (C4) 6 BEDROOM HOUSE IN MULTIPLE OCCUPATION\r\n \r\n + \ \r\n |\r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ 47 ELM STREET, ROATH, CARDIFF, CF24 3QS\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \
\r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Applications\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Appeals\r\n \r\n + \ (0)\r\n

\n\r\n\r\n \r\n \r\n
\r\n\r\n \r\n + \ \r\n \r\n\r\n \r\n + \
\r\n

\r\n \r\n + \ \r\n Planning Enforcements\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Properties\r\n \r\n + \ (1)\r\n

\n\r\n\r\n \r\n \r\n \r\n \r\n + \
\r\n\r\n \r\n\r\n
\r\n
\r\n\r\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:13:51 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/propertyDetails.do?activeTab=summary&keyVal=_CARDIFF_PROPLPI_100422_1&previousCaseNumber=19/00552/MNR&previousCaseType=Application&previousKeyVal=_CARDIFF_DCAPR_126851 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:24 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:23 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:24 GMT + Content-Length: + - '13491' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\r\n\t\r\n \r\n _CARDIFF_PROPLPI_100422_1\r\n + \ |\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n 47 ELM STREET, ROATH, CARDIFF, CF24 3QS\r\n \r\n + \ \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \t\r\n + \ \r\n\r\n \r\n \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
+ \r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n
\r\n \r\n + \ \t\t\t
\r\n \r\n
\r\n + \

Property Address

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n 100100058644 \r\n \r\n\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 47 + ELM STREET, ROATH, CARDIFF, CF24 3QS\r\n \r\n \r\n + \ \r\n
\r\n\r\n\r\n
\r\n \r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n \n + \ \n \n\n
\n\n \n + \ \n \n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
UPRN:100100058644
Full Address:47 ELM STREET, + ROATH, CARDIFF, CF24 3QS
Property + Number:47
Street:ELM + STREET
Town:CARDIFF
Postcode:CF24 3QS
Ward:PLASNEWYDD
Parish:\r\n
\r\n\n + \ \n\n \n \n\n \n \n \n \n\n + \
\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:13:53 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=summary&keyVal=_CARDIFF_DCAPR_126784 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:39 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:35 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:39 GMT + Content-Length: + - '28283' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00503/DCH\r\n |\r\n + \ \r\n SINGLE STOREY REAR EXTENSION WITH PITCH ROOF\r\n \r\n + \ |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n 81 KYLE CRESCENT, WHITCHURCH, + CARDIFF, CF14 1SU\r\n \r\n \r\n \r\n\r\n + \ \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n\t\r\n \r\n \r\n \r\n + \ \r\n\t\r\n \r\n\r\n\r\n\r\n\r\n Skip + to main content\r\n\r\n \r\n
\r\n + \
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Summary

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n\r\n \r\n 19/00503/DCH\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n + \ \r\n SINGLE STOREY + REAR EXTENSION WITH PITCH ROOF\r\n \r\n \r\n + \ |\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 81 + KYLE CRESCENT, WHITCHURCH, CARDIFF, CF14 1SU\r\n \r\n \r\n + \ \r\n
\r\n\r\n\r\n
\r\n
    \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n\n
\n\n \n \n \n\n \n \n\n + \ \n \n \n \n\n \n + \ \n\n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n + \ \n \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n\n + \
\n Reference\n + \ \n + \ \n \n + \ \n 19/00503/DCH\n + \ \n \n + \
\n Alternative Reference\n + \ \n + \ \n \n + \ \n PP-07678469\n + \ \n \n + \
\n Application Received\n + \ \n + \ \n \n + \ \n Tue + 05 Mar 2019\n \n \n + \
\n Application Validated\n + \ \n + \ \n \n + \ \n Thu + 07 Mar 2019\n \n \n + \
\n Address\n \n \n + \ \n \n + \ 81 KYLE CRESCENT, WHITCHURCH, + CARDIFF, CF14 1SU\n \n \n + \
\n Proposal\n \n \n + \ \n \n + \ SINGLE STOREY REAR EXTENSION WITH + PITCH ROOF\n \n \n + \
\n Status\n \n \n + \ \n Decided\n \n + \ \n \n + \
\n Decision\n \n \n + \ \n \n + \ Permission be granted\n \n + \ \n
\n Decision + Issued Date\n \n + \ \n \n + \ \n Mon + 08 Apr 2019\n \n \n + \
\n Appeal Decision\n \n \n + \ \n \n + \ \n \n + \ \n
\n\n \n \n\n \n\n + \ \n\n \n\n \n\n \n \n \n + \
\n \n \n + \ \n \n \n + \ \n \n\n \n \n + \

There are 6 + documents associated with this application.

There + are 0 cases associated with this application.

There + is 1 + property associated with this application.

\r\n\n \n + \
\n \n \n\n
\n\r\n \r\n
\r\n \r\n + \ \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:07 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=relatedCases&keyVal=_CARDIFF_DCAPR_126784 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:40 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:39 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:40 GMT + Content-Length: + - '19901' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00503/DCH\r\n |\r\n + \ \r\n SINGLE STOREY REAR EXTENSION WITH PITCH ROOF\r\n \r\n + \ |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n 81 KYLE CRESCENT, WHITCHURCH, + CARDIFF, CF14 1SU\r\n \r\n \r\n \r\n\r\n + \ \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\t\r\n \r\n + \ \r\n \r\n + \ \r\n\t\r\n\r\n\r\n\r\n\r\n Skip to main content\r\n\r\n \r\n + \
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Related Items

\r\n + \ \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n\r\n
\r\n + \ \r\n \r\n\r\n \r\n + \ 19/00503/DCH\r\n \r\n \r\n\r\n |\r\n\r\n \r\n \r\n + \ SINGLE STOREY REAR EXTENSION WITH PITCH ROOF\r\n \r\n + \ \r\n |\r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ 81 KYLE CRESCENT, WHITCHURCH, CARDIFF, CF14 1SU\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \
\r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Applications\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Appeals\r\n \r\n + \ (0)\r\n

\n\r\n\r\n \r\n \r\n
\r\n\r\n \r\n + \ \r\n \r\n\r\n \r\n + \
\r\n

\r\n \r\n + \ \r\n Planning Enforcements\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Properties\r\n \r\n + \ (1)\r\n

\n\r\n\r\n \r\n \r\n \r\n \r\n + \
\r\n\r\n \r\n\r\n
\r\n
\r\n\r\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:09 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/propertyDetails.do?activeTab=summary&keyVal=_CARDIFF_PROPLPI_124800_1&previousCaseNumber=19/00503/DCH&previousCaseType=Application&previousKeyVal=_CARDIFF_DCAPR_126784 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:42 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:41 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:41 GMT + Content-Length: + - '13513' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\r\n\t\r\n \r\n _CARDIFF_PROPLPI_124800_1\r\n + \ |\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n 81 KYLE CRESCENT, WHITCHURCH, CARDIFF, CF14 1SU\r\n + \ \r\n \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \t\r\n + \ \r\n\r\n \r\n \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
+ \r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n
\r\n \r\n + \ \t\t\t
\r\n \r\n
\r\n + \

Property Address

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n 100100033792 \r\n \r\n\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 81 + KYLE CRESCENT, WHITCHURCH, CARDIFF, CF14 1SU\r\n \r\n \r\n + \ \r\n
\r\n\r\n\r\n
\r\n \r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n \n + \ \n \n\n
\n\n \n + \ \n \n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
UPRN:100100033792
Full Address:81 KYLE CRESCENT, + WHITCHURCH, CARDIFF, CF14 1SU
Property Number:81
Street:KYLE CRESCENT
Town:CARDIFF
Postcode:CF14 1SU
Ward:HEATH
Parish:\r\n
\r\n\n \n\n + \ \n \n\n \n \n \n \n\n
\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:11 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=summary&keyVal=_CARDIFF_DCAPR_126566 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:14:58 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:53 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:14:58 GMT + Content-Length: + - '28341' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00309/MJR\r\n |\r\n + \ \r\n HEATING AND COOLING PLANT TO THE ROOF AND REAR COURTYARD\r\n + \ \r\n |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n + \ \r\n \r\n \r\n \r\n \r\n \r\n 23 WOMANBY STREET, + CITY CENTRE, CARDIFF, CF10 1BR\r\n \r\n \r\n \r\n\r\n \r\n\t\r\n + \ \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n\t\r\n \r\n \r\n \r\n + \ \r\n\t\r\n \r\n\r\n\r\n\r\n\r\n Skip + to main content\r\n\r\n \r\n
\r\n + \
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Summary

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n\r\n \r\n 19/00309/MJR\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n + \ \r\n HEATING AND COOLING + PLANT TO THE ROOF AND REAR COURTYARD\r\n \r\n \r\n + \ |\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 23 + WOMANBY STREET, CITY CENTRE, CARDIFF, CF10 1BR\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n\n
\n\n \n \n \n\n \n \n\n + \ \n \n \n \n\n \n + \ \n\n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n + \ \n \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n\n + \
\n Reference\n + \ \n + \ \n \n + \ \n 19/00309/MJR\n + \ \n \n + \
\n Alternative Reference\n + \ \n + \ \n \n + \ \n PP-07606471\n + \ \n \n + \
\n Application Received\n + \ \n + \ \n \n + \ \n Thu + 14 Feb 2019\n \n \n + \
\n Application Validated\n + \ \n + \ \n \n + \ \n Thu + 14 Feb 2019\n \n \n + \
\n Address\n \n \n + \ \n \n + \ 23 WOMANBY STREET, CITY CENTRE, + CARDIFF, CF10 1BR\n \n \n + \
\n Proposal\n \n \n + \ \n \n + \ HEATING AND COOLING PLANT TO THE + ROOF AND REAR COURTYARD\n \n \n + \
\n Status\n \n \n + \ \n Decided\n \n + \ \n \n + \
\n Decision\n \n \n + \ \n \n + \ Permission be granted\n \n + \ \n
\n Decision + Issued Date\n \n + \ \n \n + \ \n Mon + 08 Apr 2019\n \n \n + \
\n Appeal Decision\n \n \n + \ \n \n + \ \n \n + \ \n
\n\n \n \n\n \n\n + \ \n\n \n\n \n\n \n \n \n + \
\n \n \n + \ \n \n \n + \ \n \n\n \n \n + \

There are 11 + documents associated with this application.

There + are 0 cases associated with this application.

There + is 1 + property associated with this application.

\r\n\n \n + \
\n \n \n\n
\n\r\n \r\n
\r\n \r\n + \ \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:27 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=relatedCases&keyVal=_CARDIFF_DCAPR_126566 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:00 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:14:58 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:00 GMT + Content-Length: + - '19945' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00309/MJR\r\n |\r\n + \ \r\n HEATING AND COOLING PLANT TO THE ROOF AND REAR COURTYARD\r\n + \ \r\n |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n + \ \r\n \r\n \r\n \r\n \r\n \r\n 23 WOMANBY STREET, + CITY CENTRE, CARDIFF, CF10 1BR\r\n \r\n \r\n \r\n\r\n \r\n\t\r\n + \ \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\t\r\n \r\n + \ \r\n \r\n + \ \r\n\t\r\n\r\n\r\n\r\n\r\n Skip to main content\r\n\r\n \r\n + \
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Related Items

\r\n + \ \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n\r\n
\r\n + \ \r\n \r\n\r\n \r\n + \ 19/00309/MJR\r\n \r\n \r\n\r\n |\r\n\r\n \r\n \r\n + \ HEATING AND COOLING PLANT TO THE ROOF AND REAR COURTYARD\r\n + \ \r\n \r\n |\r\n + \ \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n \r\n 23 WOMANBY STREET, CITY CENTRE, CARDIFF, + CF10 1BR\r\n \r\n \r\n \r\n
\r\n\r\n\r\n + \
\r\n
    \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \
\r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Applications\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Appeals\r\n \r\n + \ (0)\r\n

\n\r\n\r\n \r\n \r\n
\r\n\r\n \r\n + \ \r\n \r\n\r\n \r\n + \
\r\n

\r\n \r\n + \ \r\n Planning Enforcements\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Properties\r\n \r\n + \ (1)\r\n

\n\r\n\r\n \r\n \r\n \r\n \r\n + \
\r\n\r\n \r\n\r\n
\r\n
\r\n\r\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:29 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/propertyDetails.do?activeTab=summary&keyVal=_CARDIFF_PROPLPI_17986_1&previousCaseNumber=19/00309/MJR&previousCaseType=Application&previousKeyVal=_CARDIFF_DCAPR_126566 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:02 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:00 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:01 GMT + Content-Length: + - '13516' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\r\n\t\r\n \r\n _CARDIFF_PROPLPI_17986_1\r\n + \ |\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n 23 WOMANBY STREET, CITY CENTRE, CARDIFF, CF10 + 1BR\r\n \r\n \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \t\r\n + \ \r\n\r\n \r\n \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
+ \r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n
\r\n \r\n + \ \t\t\t
\r\n \r\n
\r\n + \

Property Address

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n 100100890011 \r\n \r\n\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 23 + WOMANBY STREET, CITY CENTRE, CARDIFF, CF10 1BR\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \ \r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n \n + \ \n \n\n
\n\n \n + \ \n \n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
UPRN:100100890011
Full Address:23 WOMANBY + STREET, CITY CENTRE, CARDIFF, CF10 1BR
Property Number:23
Street:WOMANBY STREET
Town:CARDIFF
Postcode:CF10 1BR
Ward:CATHAYS
Parish:\r\n
\r\n\n \n\n + \ \n \n\n \n \n \n \n\n
\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:30 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=summary&keyVal=_CARDIFF_DCAPR_126537 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:16 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:12 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:16 GMT + Content-Length: + - '28293' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00284/DCH\r\n |\r\n + \ \r\n 1ST FLOOR REAR AND GROUND FLOOR SIDE EXTENSION\r\n \r\n + \ |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n 3 RHYD Y PENAU ROAD, CYNCOED, + CARDIFF, CF23 6PX\r\n \r\n \r\n \r\n\r\n + \ \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n\t\r\n \r\n \r\n \r\n + \ \r\n\t\r\n \r\n\r\n\r\n\r\n\r\n Skip + to main content\r\n\r\n \r\n
\r\n + \
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Summary

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n\r\n \r\n 19/00284/DCH\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n + \ \r\n 1ST FLOOR REAR + AND GROUND FLOOR SIDE EXTENSION\r\n \r\n \r\n + \ |\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 3 + RHYD Y PENAU ROAD, CYNCOED, CARDIFF, CF23 6PX\r\n \r\n \r\n + \ \r\n
\r\n\r\n\r\n
\r\n
    \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n\n
\n\n \n \n \n\n \n \n\n + \ \n \n \n \n\n \n + \ \n\n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n + \ \n \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n\n + \
\n Reference\n + \ \n + \ \n \n + \ \n 19/00284/DCH\n + \ \n \n + \
\n Alternative Reference\n + \ \n + \ \n \n + \ \n PP-07622839\n + \ \n \n + \
\n Application Received\n + \ \n + \ \n \n + \ \n Tue + 12 Feb 2019\n \n \n + \
\n Application Validated\n + \ \n + \ \n \n + \ \n Thu + 21 Feb 2019\n \n \n + \
\n Address\n \n \n + \ \n \n + \ 3 RHYD Y PENAU ROAD, CYNCOED, + CARDIFF, CF23 6PX\n \n \n + \
\n Proposal\n \n \n + \ \n \n + \ 1ST FLOOR REAR AND GROUND FLOOR + SIDE EXTENSION\n \n \n + \
\n Status\n \n \n + \ \n Decided\n \n + \ \n \n + \
\n Decision\n \n \n + \ \n \n + \ Permission be granted\n \n + \ \n
\n Decision + Issued Date\n \n + \ \n \n + \ \n Mon + 08 Apr 2019\n \n \n + \
\n Appeal Decision\n \n \n + \ \n \n + \ \n \n + \ \n
\n\n \n \n\n \n\n + \ \n\n \n\n \n\n \n \n \n + \
\n \n \n + \ \n \n \n + \ \n \n\n \n \n + \

There are 10 + documents associated with this application.

There + are 0 cases associated with this application.

There + is 1 + property associated with this application.

\r\n\n \n + \
\n \n \n\n
\n\r\n \r\n
\r\n \r\n + \ \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:45 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=relatedCases&keyVal=_CARDIFF_DCAPR_126537 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:18 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:17 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:18 GMT + Content-Length: + - '19908' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00284/DCH\r\n |\r\n + \ \r\n 1ST FLOOR REAR AND GROUND FLOOR SIDE EXTENSION\r\n \r\n + \ |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n 3 RHYD Y PENAU ROAD, CYNCOED, + CARDIFF, CF23 6PX\r\n \r\n \r\n \r\n\r\n + \ \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\t\r\n \r\n + \ \r\n \r\n + \ \r\n\t\r\n\r\n\r\n\r\n\r\n Skip to main content\r\n\r\n \r\n + \
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Related Items

\r\n + \ \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n\r\n
\r\n + \ \r\n \r\n\r\n \r\n + \ 19/00284/DCH\r\n \r\n \r\n\r\n |\r\n\r\n \r\n \r\n + \ 1ST FLOOR REAR AND GROUND FLOOR SIDE EXTENSION\r\n \r\n + \ \r\n |\r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ 3 RHYD Y PENAU ROAD, CYNCOED, CARDIFF, CF23 6PX\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \
\r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Applications\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Appeals\r\n \r\n + \ (0)\r\n

\n\r\n\r\n \r\n \r\n
\r\n\r\n \r\n + \ \r\n \r\n\r\n \r\n + \
\r\n

\r\n \r\n + \ \r\n Planning Enforcements\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Properties\r\n \r\n + \ (1)\r\n

\n\r\n\r\n \r\n \r\n \r\n \r\n + \
\r\n\r\n \r\n\r\n
\r\n
\r\n\r\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:47 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/propertyDetails.do?activeTab=summary&keyVal=_CARDIFF_PROPLPI_113940_1&previousCaseNumber=19/00284/DCH&previousCaseType=Application&previousKeyVal=_CARDIFF_DCAPR_126537 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:20 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:18 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:20 GMT + Content-Length: + - '13518' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\r\n\t\r\n \r\n _CARDIFF_PROPLPI_113940_1\r\n + \ |\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n 3 RHYD Y PENAU ROAD, CYNCOED, CARDIFF, CF23 6PX\r\n + \ \r\n \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \t\r\n + \ \r\n\r\n \r\n \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
+ \r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n
\r\n \r\n + \ \t\t\t
\r\n \r\n
\r\n + \

Property Address

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n 100100044782 \r\n \r\n\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 3 + RHYD Y PENAU ROAD, CYNCOED, CARDIFF, CF23 6PX\r\n \r\n \r\n + \ \r\n
\r\n\r\n\r\n
\r\n \r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n \n + \ \n \n\n
\n\n \n + \ \n \n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
UPRN:100100044782
Full Address:3 RHYD Y PENAU + ROAD, CYNCOED, CARDIFF, CF23 6PX
Property Number:3
Street:RHYD Y PENAU ROAD
Town:CARDIFF
Postcode:CF23 6PX
Ward:CYNCOED
Parish:\r\n
\r\n\n \n\n + \ \n \n\n \n \n \n \n\n
\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:14:49 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=summary&keyVal=_CARDIFF_DCAPR_126508 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:35 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:30 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:35 GMT + Content-Length: + - '28544' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00263/DCH\r\n |\r\n + \ \r\n VARIATION OF CONDITION 2 (APPROVED PLANS) OF 17/03122/DCH\r\n + \ \r\n |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n + \ \r\n \r\n \r\n \r\n \r\n \r\n MILL FARM HOUSE, + MILL FARM, ST MELLONS ROAD, LISVANE, CARDIFF, CF14 0SH\r\n \r\n \r\n + \ \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n\t\r\n \r\n \r\n \r\n + \ \r\n\t\r\n \r\n\r\n\r\n\r\n\r\n Skip + to main content\r\n\r\n \r\n
\r\n + \
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Summary

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n\r\n \r\n 19/00263/DCH\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n + \ \r\n VARIATION OF CONDITION + 2 (APPROVED PLANS) OF 17/03122/DCH\r\n \r\n \r\n + \ |\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n MILL + FARM HOUSE, MILL FARM, ST MELLONS ROAD, LISVANE, CARDIFF, CF14 0SH\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n\n
\n\n \n \n \n\n \n \n\n + \ \n \n \n \n\n \n + \ \n\n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n\n + \
\n Reference\n + \ \n + \ \n \n + \ \n 19/00263/DCH\n + \ \n \n + \
\n Alternative Reference\n + \ \n + \ \n \n + \ \n PP-07614385\n + \ \n \n + \
\n Application Received\n + \ \n + \ \n \n + \ \n Fri + 08 Feb 2019\n \n \n + \
\n Application Validated\n + \ \n + \ \n \n + \ \n Mon + 11 Feb 2019\n \n \n + \
\n Address\n \n \n + \ \n \n + \ MILL FARM HOUSE, MILL FARM, ST + MELLONS ROAD, LISVANE, CARDIFF, CF14 0SH\n \n + \ \n
\n Proposal\n + \ \n + \ \n \n + \ \n VARIATION + OF CONDITION 2 (APPROVED PLANS) OF 17/03122/DCH\n \n + \ \n
\n Status\n + \ \n + \ \n \n + \ Decided\n + \ \n \n + \ \n
\n Decision\n + \ \n + \ \n \n + \ \n Permission + be granted\n \n \n + \
\n Decision Issued Date\n + \ \n + \ \n \n + \ \n Mon + 08 Apr 2019\n \n \n + \
\n Appeal Decision\n \n \n + \ \n \n + \ \n \n + \ \n
\n\n \n \n\n \n\n + \ \n\n \n\n \n\n \n \n \n + \
\n \n \n + \ \n \n \n + \ \n \n\n \n \n + \

There are 10 + documents associated with this application.

There + is 1 + case associated with this application.

There + is 1 + property associated with this application.

\r\n\n \n + \
\n \n \n\n
\n\r\n \r\n
\r\n \r\n + \ \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:04 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=relatedCases&keyVal=_CARDIFF_DCAPR_126508 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:37 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:35 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:37 GMT + Content-Length: + - '21444' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00263/DCH\r\n |\r\n + \ \r\n VARIATION OF CONDITION 2 (APPROVED PLANS) OF 17/03122/DCH\r\n + \ \r\n |\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n + \ \r\n \r\n \r\n \r\n \r\n \r\n MILL FARM HOUSE, + MILL FARM, ST MELLONS ROAD, LISVANE, CARDIFF, CF14 0SH\r\n \r\n \r\n + \ \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\t\r\n \r\n + \ \r\n \r\n + \ \r\n\t\r\n\r\n\r\n\r\n\r\n Skip to main content\r\n\r\n \r\n + \
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Related Items

\r\n + \ \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n\r\n
\r\n + \ \r\n \r\n\r\n \r\n + \ 19/00263/DCH\r\n \r\n \r\n\r\n |\r\n\r\n \r\n \r\n + \ VARIATION OF CONDITION 2 (APPROVED PLANS) OF 17/03122/DCH\r\n + \ \r\n \r\n |\r\n + \ \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n \r\n MILL FARM HOUSE, MILL FARM, ST MELLONS + ROAD, LISVANE, CARDIFF, CF14 0SH\r\n \r\n \r\n \r\n + \
\r\n\r\n\r\n
\r\n
    \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \
\r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Applications\r\n + \ \r\n (1)\r\n

\n\r\n\r\n + \ \r\n \r\n \r\n \r\n + \
\r\n\r\n \r\n \r\n \r\n\r\n + \ \r\n
\r\n + \

\r\n \r\n \r\n Planning + Appeals\r\n \r\n (0)\r\n + \

\n\r\n\r\n \r\n + \ \r\n
\r\n\r\n \r\n \r\n + \ \r\n\r\n \r\n
\r\n

\r\n \r\n \r\n + \ Planning Enforcements\r\n \r\n + \ (0)\r\n

\n\r\n\r\n \r\n \r\n
\r\n\r\n \r\n + \ \r\n \r\n\r\n \r\n + \
\r\n

\r\n \r\n + \ \r\n Properties\r\n \r\n + \ (1)\r\n

\n\r\n\r\n \r\n \r\n \r\n + \ \r\n
\r\n\r\n \r\n\r\n
\r\n + \
\r\n\r\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:06 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/propertyDetails.do?activeTab=summary&keyVal=_CARDIFF_PROPLPI_366211_2&previousCaseNumber=19/00263/DCH&previousCaseType=Application&previousKeyVal=_CARDIFF_DCAPR_126508 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:39 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:37 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:39 GMT + Content-Length: + - '13660' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\r\n\t\r\n \r\n _CARDIFF_PROPLPI_366211_2\r\n + \ |\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n MILL FARM HOUSE, MILL FARM, ST MELLONS ROAD, LISVANE, + CARDIFF, CF14 0SH\r\n \r\n \r\n \r\n\r\n + \ \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \t\r\n + \ \r\n\r\n \r\n \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
+ \r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n
\r\n \r\n + \ \t\t\t
\r\n \r\n
\r\n + \

Property Address

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n 10023549353 \r\n \r\n\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n MILL + FARM HOUSE, MILL FARM, ST MELLONS ROAD, LISVANE, CARDIFF, CF14 0SH\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \ \r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n \n + \ \n \n\n
\n\n \n + \ \n \n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
UPRN:10023549353
Full Address:MILL FARM HOUSE, + MILL FARM, ST MELLONS ROAD, LISVANE, CARDIFF, CF14 0SH
Property Description:MILL + FARM
Property Number:\r\n
Street:ST MELLONS ROAD
Town:CARDIFF
Postcode:CF14 0SH
Ward:\r\n
Parish:\r\n
\r\n\n \n\n + \ \n \n\n \n \n \n \n\n
\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:08 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=summary&keyVal=_CARDIFF_DCAPR_126502 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:52 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:49 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:52 GMT + Content-Length: + - '28453' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00257/MNR\r\n |\r\n + \ \r\n NEW BUILD EXTENSION TO EXISTING POOL HALL TO CREATE SMALL + RELAX AREA\r\n \r\n |\r\n \r\n \r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n BANNATYNE + HEALTH CLUB, PARC TY GLAS, LLANISHEN, CARDIFF, CF14 5DU\r\n \r\n \r\n + \ \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n\t\r\n \r\n \r\n \r\n + \ \r\n\t\r\n \r\n\r\n\r\n\r\n\r\n Skip + to main content\r\n\r\n \r\n
\r\n + \
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Summary

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n\r\n \r\n 19/00257/MNR\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n + \ \r\n NEW BUILD EXTENSION + TO EXISTING POOL HALL TO CREATE SMALL RELAX AREA\r\n \r\n + \ \r\n |\r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ BANNATYNE HEALTH CLUB, PARC TY GLAS, LLANISHEN, CARDIFF, CF14 + 5DU\r\n \r\n \r\n \r\n
\r\n\r\n\r\n + \
\r\n
    \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n\n
\n\n \n \n \n\n \n \n\n + \ \n \n \n \n\n \n + \ \n\n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n\n + \
\n Reference\n + \ \n + \ \n \n + \ \n 19/00257/MNR\n + \ \n \n + \
\n Alternative Reference\n + \ \n + \ \n \n + \ \n PP-07613169\n + \ \n \n + \
\n Application Received\n + \ \n + \ \n \n + \ \n Fri + 08 Feb 2019\n \n \n + \
\n Application Validated\n + \ \n + \ \n \n + \ \n Fri + 08 Feb 2019\n \n \n + \
\n Address\n \n \n + \ \n \n + \ BANNATYNE HEALTH CLUB, PARC TY + GLAS, LLANISHEN, CARDIFF, CF14 5DU\n \n + \ \n
\n Proposal\n + \ \n + \ \n \n + \ \n NEW + BUILD EXTENSION TO EXISTING POOL HALL TO CREATE SMALL RELAX AREA\n \n + \ \n
\n Status\n + \ \n + \ \n \n + \ Decided\n + \ \n \n + \ \n
\n Decision\n + \ \n + \ \n \n + \ \n Permission + be granted\n \n \n + \
\n Decision Issued Date\n + \ \n + \ \n \n + \ \n Mon + 08 Apr 2019\n \n \n + \
\n Appeal Decision\n \n \n + \ \n \n + \ \n \n + \ \n
\n\n \n \n\n \n\n + \ \n\n \n\n \n\n \n \n \n + \
\n \n \n + \ \n \n \n + \ \n \n\n \n \n + \

There are 18 + documents associated with this application.

There + are 0 cases associated with this application.

There + is 1 + property associated with this application.

\r\n\n \n + \
\n \n \n\n
\n\r\n \r\n
\r\n \r\n + \ \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:21 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=relatedCases&keyVal=_CARDIFF_DCAPR_126502 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:54 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:53 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:54 GMT + Content-Length: + - '20044' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00257/MNR\r\n |\r\n + \ \r\n NEW BUILD EXTENSION TO EXISTING POOL HALL TO CREATE SMALL + RELAX AREA\r\n \r\n |\r\n \r\n \r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n BANNATYNE + HEALTH CLUB, PARC TY GLAS, LLANISHEN, CARDIFF, CF14 5DU\r\n \r\n \r\n + \ \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\t\r\n \r\n + \ \r\n \r\n + \ \r\n\t\r\n\r\n\r\n\r\n\r\n Skip to main content\r\n\r\n \r\n + \
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Related Items

\r\n + \ \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n\r\n
\r\n + \ \r\n \r\n\r\n \r\n + \ 19/00257/MNR\r\n \r\n \r\n\r\n |\r\n\r\n \r\n \r\n + \ NEW BUILD EXTENSION TO EXISTING POOL HALL TO CREATE SMALL + RELAX AREA\r\n \r\n \r\n |\r\n \r\n \r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n BANNATYNE + HEALTH CLUB, PARC TY GLAS, LLANISHEN, CARDIFF, CF14 5DU\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \
\r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Applications\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Appeals\r\n \r\n + \ (0)\r\n

\n\r\n\r\n \r\n \r\n
\r\n\r\n \r\n + \ \r\n \r\n\r\n \r\n + \
\r\n

\r\n \r\n + \ \r\n Planning Enforcements\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Properties\r\n \r\n + \ (1)\r\n

\n\r\n\r\n \r\n \r\n \r\n \r\n + \
\r\n\r\n \r\n\r\n
\r\n
\r\n\r\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:23 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/propertyDetails.do?activeTab=summary&keyVal=_CARDIFF_PROPLPI_8256_4&previousCaseNumber=19/00257/MNR&previousCaseType=Application&previousKeyVal=_CARDIFF_DCAPR_126502 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:15:56 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:15:54 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:15:56 GMT + Content-Length: + - '13654' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\r\n\t\r\n \r\n _CARDIFF_PROPLPI_8256_4\r\n + \ |\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n BANNATYNE HEALTH CLUB, PARC TY GLAS, LLANISHEN, + CARDIFF, CF14 5DU\r\n \r\n \r\n \r\n\r\n + \ \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \t\r\n + \ \r\n\r\n \r\n \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
+ \r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n
\r\n \r\n + \ \t\t\t
\r\n \r\n
\r\n + \

Property Address

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n 200001097060 \r\n \r\n\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n BANNATYNE + HEALTH CLUB, PARC TY GLAS, LLANISHEN, CARDIFF, CF14 5DU\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \ \r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n \n + \ \n \n\n
\n\n \n + \ \n \n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
UPRN:200001097060
Full Address:BANNATYNE HEALTH + CLUB, PARC TY GLAS, LLANISHEN, CARDIFF, CF14 5DU
Property Description:BANNATYNE HEALTH CLUB
Property Number:\r\n
Street:PARC TY GLAS
Town:CARDIFF
Postcode:CF14 5DU
Ward:LLANISHEN
Parish:\r\n
\r\n\n + \ \n\n \n \n\n \n \n \n \n\n + \
\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:25 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=summary&keyVal=_CARDIFF_DCAPR_126451 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:16:11 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:16:07 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:16:11 GMT + Content-Length: + - '28395' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00214/DCH\r\n |\r\n + \ \r\n REMOVE EXISTING DECKING AT REAR AND REPLACE WITH GROUND LEVEL + AND RAISED PATIOS\r\n \r\n |\r\n \r\n \r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n 17 + PANTGLAS, PENTYRCH, CARDIFF, CF15 9TH\r\n \r\n \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n\t\r\n \r\n \r\n \r\n + \ \r\n\t\r\n \r\n\r\n\r\n\r\n\r\n Skip + to main content\r\n\r\n \r\n
\r\n + \
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Summary

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n\r\n \r\n 19/00214/DCH\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n + \ \r\n REMOVE EXISTING + DECKING AT REAR AND REPLACE WITH GROUND LEVEL AND RAISED PATIOS\r\n \r\n + \ \r\n |\r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ 17 PANTGLAS, PENTYRCH, CARDIFF, CF15 9TH\r\n \r\n + \ \r\n \r\n
\r\n\r\n\r\n
\r\n + \
    \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n\n
\n\n \n \n \n\n \n \n\n + \ \n \n \n \n\n \n + \ \n\n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n \n \n \n + \ \n \n \n + \ \n \n \n \n + \ \n \n \n + \ \n \n + \ \n + \ \n \n \n\n + \
\n Reference\n + \ \n + \ \n \n + \ \n 19/00214/DCH\n + \ \n \n + \
\n Alternative Reference\n + \ \n + \ \n \n + \ \n PP-07582302\n + \ \n \n + \
\n Application Received\n + \ \n + \ \n \n + \ \n Mon + 04 Feb 2019\n \n \n + \
\n Application Validated\n + \ \n + \ \n \n + \ \n Mon + 11 Feb 2019\n \n \n + \
\n Address\n \n \n + \ \n \n + \ 17 PANTGLAS, PENTYRCH, CARDIFF, + CF15 9TH\n \n \n + \
\n Proposal\n \n \n + \ \n \n + \ REMOVE EXISTING DECKING AT REAR + AND REPLACE WITH GROUND LEVEL AND RAISED PATIOS\n \n + \ \n
\n Status\n + \ \n + \ \n \n + \ Decided\n + \ \n \n + \ \n
\n Decision\n + \ \n + \ \n \n + \ \n Permission + be granted\n \n \n + \
\n Decision Issued Date\n + \ \n + \ \n \n + \ \n Mon + 08 Apr 2019\n \n \n + \
\n Appeal Decision\n \n \n + \ \n \n + \ \n \n + \ \n
\n\n \n \n\n \n\n + \ \n\n \n\n \n\n \n \n \n + \
\n \n \n + \ \n \n \n + \ \n \n\n \n \n + \

There are 9 + documents associated with this application.

There + are 0 cases associated with this application.

There + is 1 + property associated with this application.

\r\n\n \n + \
\n \n \n\n
\n\r\n \r\n
\r\n \r\n + \ \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:40 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/applicationDetails.do?activeTab=relatedCases&keyVal=_CARDIFF_DCAPR_126451 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:16:12 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:16:11 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:16:12 GMT + Content-Length: + - '19977' + body: + encoding: UTF-8 + string: "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\n \r\n 19/00214/DCH\r\n |\r\n + \ \r\n REMOVE EXISTING DECKING AT REAR AND REPLACE WITH GROUND LEVEL + AND RAISED PATIOS\r\n \r\n |\r\n \r\n \r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n 17 + PANTGLAS, PENTYRCH, CARDIFF, CF15 9TH\r\n \r\n \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \r\n + \ \r\n\t\r\n \r\n \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\t\r\n \r\n + \ \r\n \r\n + \ \r\n\t\r\n\r\n\r\n\r\n\r\n Skip to main content\r\n\r\n \r\n + \
\r\n
\r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n \t\t\t
\r\n \r\n + \ \t\t\t
\r\n\r\n \t\t\t\r\n \r\n
\r\n + \

Planning – Application Related Items

\r\n + \ \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \r\n \r\n\r\n
\r\n + \ \r\n \r\n\r\n \r\n + \ 19/00214/DCH\r\n \r\n \r\n\r\n |\r\n\r\n \r\n \r\n + \ REMOVE EXISTING DECKING AT REAR AND REPLACE WITH GROUND LEVEL + AND RAISED PATIOS\r\n \r\n \r\n |\r\n \r\n \r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n 17 + PANTGLAS, PENTYRCH, CARDIFF, CF15 9TH\r\n \r\n \r\n + \ \r\n
\r\n\r\n\r\n
\r\n
    \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n + \ \r\n
  • \r\n + \ Back to search results\r\n
  • \r\n + \ \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n\r\n + \ \r\n\r\n \r\n \r\n \r\n
  • \r\n + \
    \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n \r\n \r\n
    \r\n + \
  • \r\n \r\n\r\n \r\n + \ \r\n\r\n\r\n \r\n \r\n \r\n + \ \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n
  • \r\n \r\n \"Print\r\n \r\n + \
  • \r\n \r\n\r\n \r\n
\r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n + \
\r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Applications\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Planning Appeals\r\n \r\n + \ (0)\r\n

\n\r\n\r\n \r\n \r\n
\r\n\r\n \r\n + \ \r\n \r\n\r\n \r\n + \
\r\n

\r\n \r\n + \ \r\n Planning Enforcements\r\n + \ \r\n (0)\r\n

\n\r\n\r\n + \ \r\n \r\n
\r\n\r\n + \ \r\n \r\n \r\n\r\n \r\n
\r\n

\r\n \r\n + \ \r\n Properties\r\n \r\n + \ (1)\r\n

\n\r\n\r\n \r\n \r\n \r\n \r\n + \
\r\n\r\n \r\n\r\n
\r\n
\r\n\r\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\t\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\t\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:41 GMT +- request: + method: get + uri: https://planningonline.cardiff.gov.uk/online-applications/propertyDetails.do?activeTab=summary&keyVal=_CARDIFF_PROPLPI_20269_1&previousCaseNumber=19/00214/DCH&previousCaseType=Application&previousKeyVal=_CARDIFF_DCAPR_126451 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip,deflate,identity + Accept: + - "*/*" + User-Agent: + - Mechanize/2.7.6 Ruby/2.6.2p47 (http://github.com/sparklemotion/mechanize/) + Accept-Charset: + - ISO-8859-1,utf-8;q=0.7,*;q=0.7 + Accept-Language: + - en-us,en;q=0.5 + Cookie: + - JSESSIONID=ss9pKoHL32yHmhJQONSykek96zXCSSZ75skxJ5v1.vmidoxweblve; WSLang-CFC001=EN + Host: + - planningonline.cardiff.gov.uk + Connection: + - keep-alive + Keep-Alive: + - '300' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - private, no-store + Content-Type: + - text/html; charset=UTF-8 + Expires: + - Mon, 15 Apr 2019 11:16:14 GMT + X-Frame-Options: + - SAMEORIGIN + X-Ua-Compatible: + - IE=edge + Server: + - Apache + Set-Cookie: + - WSLang-CFC001=EN; expires=Mon, 15-Apr-2069 11:16:13 GMT; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Mon, 15 Apr 2019 11:16:14 GMT + Content-Length: + - '13484' + body: + encoding: UTF-8 + string: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\r\n\r\n\r\n\r\n\t\r\n \r\n _CARDIFF_PROPLPI_20269_1\r\n + \ |\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n 17 PANTGLAS, PENTYRCH, CARDIFF, CF15 9TH\r\n \r\n + \ \r\n \r\n\r\n \r\n\t\r\n \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n \r\n\t\r\n \r\n \t\r\n + \ \r\n\r\n \r\n \r\n + \ \r\n + \ \r\n\t\r\n\t\r\n\t\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n + \ Skip to main content\r\n\r\n + \ \r\n
\r\n
+ \r\n\t\t\t
\r\n\r\n
\r\n\r\nCymraeg\r\n
\r\n\t\t\t\t
\r\n\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\t\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t
    \r\n\t\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t
\r\n + \
\r\n
\r\n \r\n + \ \t\t\t
\r\n \r\n
\r\n + \

Property Address

\r\n \r\n

\r\n\t\r\n\t\tHelp + with this page\r\n\t (opens in a new window)\r\n\t\r\n

\r\n\r\n
\r\n \r\n \r\n
\r\n \n \n \n\n \n \n + \ \r\n \r\n\r\n
\r\n \r\n + \ \r\n 100100140556 \r\n \r\n\r\n \r\n + \ \r\n\r\n |\r\n\r\n \r\n\r\n + \ \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n + \ \r\n \r\n \r\n 17 + PANTGLAS, PENTYRCH, CARDIFF, CF15 9TH\r\n \r\n \r\n + \ \r\n
\r\n\r\n\r\n
\r\n \r\n\r\n + \
\r\n\r\n\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n \r\n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n + \ \n \n \n \n\n \n \n \n \n \n \n + \ \n \n\n
\n\n \n + \ \n \n \n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
UPRN:100100140556
Full Address:17 PANTGLAS, + PENTYRCH, CARDIFF, CF15 9TH
Property + Number:17
Street:PANTGLAS
Town:CARDIFF
Postcode:CF15 9TH
Ward:PENTYRCH
Parish:\r\n
\r\n\n + \ \n\n \n \n\n \n \n \n \n\n + \
\n\r\n \r\n
\r\n \r\n \r\n

\"an

\r\n
\r\n\t\t\t
\r\n\t\t\t\t
\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t
\r\n\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t

© + + Cardiff Council

\r\n\t\t\t
\r\n\t\t\t + \
\r\n\t\t\t
\r\n
\r\n
\r\n \r\n\r\n\r\n\r\n" + http_version: + recorded_at: Mon, 15 Apr 2019 11:15:43 GMT +recorded_with: VCR 4.0.0 From 779f0f8d91719f1484e27a24e43652e320b2d486 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Thu, 18 Apr 2019 09:16:21 +0100 Subject: [PATCH 6/7] Flatten application hash Instead of properties hashes within application hash we now prepends the hash keys so the values are accessible at `property_1_uprn`... --- lib/uk_planning_scraper/application.rb | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/lib/uk_planning_scraper/application.rb b/lib/uk_planning_scraper/application.rb index b8e7508..c7cc3b8 100644 --- a/lib/uk_planning_scraper/application.rb +++ b/lib/uk_planning_scraper/application.rb @@ -22,7 +22,7 @@ module UKPlanningScraper attr_accessor :properties def to_hash - { + base = { scraped_at: @scraped_at, authority_name: @authority_name, council_reference: @council_reference, @@ -39,10 +39,21 @@ module UKPlanningScraper alternative_reference: @alternative_reference, appeal_status: @appeal_status, appeal_decision: @appeal_decision, - property_count: @property_count, - property_detail_urls: @property_detail_urls, - properties: @properties + property_count: @property_count } + + @property_detail_urls.each_with_index do |url, idx| + base["property_detail_url_#{idx + 1}".to_sym] = url + end if @property_detail_urls + + @properties.each_with_index do |property, idx| + property_hash = property.to_hash + property_hash.transform_keys! { |k| "property_#{idx + 1}_#{k}".to_sym } + + base.merge!(property_hash) + end if @properties + + base end def valid? From d6ff621eace0292f0f3146c4a1d660d0fcda100e Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Wed, 24 Apr 2019 08:19:54 +0100 Subject: [PATCH 7/7] Limit number of properties retrieved per application --- lib/uk_planning_scraper/idox.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/uk_planning_scraper/idox.rb b/lib/uk_planning_scraper/idox.rb index 878a546..333da14 100644 --- a/lib/uk_planning_scraper/idox.rb +++ b/lib/uk_planning_scraper/idox.rb @@ -213,7 +213,9 @@ module UKPlanningScraper app.property_detail_urls = [] get(app.property_url) do |res| - res.search('#Property li a').each do |property_link| + res.search('#Property li a').each_with_index do |property_link, index| + break if index >= 10 + app.property_detail_urls << base_url + property_link[:href] end end