Skip to content

Commit

Permalink
Import optimisations
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Oct 19, 2018
1 parent 68251c5 commit 1ac1db1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions createdatabase.PL
Original file line number Diff line number Diff line change
Expand Up @@ -1152,9 +1152,9 @@ if(my $oa = $ENV{'OPENADDR_HOME'}) {
print "diff postcode\n" if(DEBUG);
}
if(($number && ($c{'property_identifier'} ne $number)) ||
(uc($c{'street_name'}) ne $street) ||
($street && (uc($c{'street_name'}) ne $street)) ||
(uc($c{'suburb'}) ne uc($city)) ||
($post_code && ($post_code ne $postcode))) {
($postcode && ($post_code && ($post_code ne $postcode)))) {
print 'After ', Data::Dumper->new([$row])->Dump() if(DEBUG);
$row = {
'LAT' => $properties->{'geom:latitude'},
Expand Down

0 comments on commit 1ac1db1

Please sign in to comment.