Skip to content

Commit

Permalink
PR voor #265 - finalize upgrade naar python3
Browse files Browse the repository at this point in the history
PR voor #265 - finalize upgrade naar python3
  • Loading branch information
justb4 authored Oct 23, 2020
2 parents b0ca674 + c850378 commit f2974e1
Show file tree
Hide file tree
Showing 159 changed files with 25,697 additions and 713 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[flake8]
ignore =
exclude = doc,externals,bonnebladen\bin\gdalsetnull.py
exclude = doc,externals
max-line-length = 160
max-complexity = 38
8 changes: 4 additions & 4 deletions bag/db/script/adres-tabel.sql
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ INSERT INTO adres (openbareruimtenaam, huisnummer, huisletter, huisnummertoevoeg
l.identificatie as adresseerbaarobject,
n.identificatie as nummeraanduiding,
-- Vlak geometrie wordt punt
ST_Force_3D(ST_Centroid(l.geovlak)) as geopunt
ST_Force3D(ST_Centroid(l.geovlak)) as geopunt
FROM ligplaatsactueelbestaand l
JOIN nummeraanduidingactueelbestaand n
ON (n.identificatie = l.hoofdadres)
Expand Down Expand Up @@ -163,7 +163,7 @@ INSERT INTO adres (openbareruimtenaam, huisnummer, huisletter, huisnummertoevoeg
s.identificatie as adresseerbaarobject,
n.identificatie as nummeraanduiding,
-- Vlak geometrie wordt punt
ST_Force_3D(ST_Centroid(s.geovlak)) as geopunt
ST_Force3D(ST_Centroid(s.geovlak)) as geopunt
FROM standplaatsactueelbestaand s
JOIN nummeraanduidingactueelbestaand n
ON (n.identificatie = s.hoofdadres)
Expand Down Expand Up @@ -301,7 +301,7 @@ INSERT INTO adres (openbareruimtenaam, huisnummer, huisletter, huisnummertoevoeg
an.identificatie as adresseerbaarobject,
n.identificatie as nummeraanduiding,
TRUE,
ST_Force_3D(ST_Centroid(l.geovlak)) as geopunt
ST_Force3D(ST_Centroid(l.geovlak)) as geopunt
FROM
adresseerbaarobjectnevenadresactueel an
JOIN
Expand Down Expand Up @@ -372,7 +372,7 @@ INSERT INTO adres (openbareruimtenaam, huisnummer, huisletter, huisnummertoevoeg
an.identificatie as adresseerbaarobject,
n.identificatie as nummeraanduiding,
TRUE,
ST_Force_3D(ST_Centroid(s.geovlak)) as geopunt
ST_Force3D(ST_Centroid(s.geovlak)) as geopunt
FROM
adresseerbaarobjectnevenadresactueel an
JOIN
Expand Down
8 changes: 4 additions & 4 deletions bag/db/script/geocode/geocode-tabellen-full.sql
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ INSERT INTO geo_adres_full (openbareruimtenaam, huisnummer, huisletter, huisnumm
'', -- pandstatus
NULL, -- pandbouwjaar
-- Vlak geometrie wordt punt
-- ST_Force3D is Postgis 2.x, gebruik st_force_3d voor Postgis 1.x
-- ST_Force3D is Postgis 2.x, gebruik ST_Force3D voor Postgis 1.x
ST_Force3D(ST_Centroid(l.geovlak)) as geopunt
FROM
ligplaatsactueel l
Expand Down Expand Up @@ -187,7 +187,7 @@ INSERT INTO geo_adres_full (openbareruimtenaam, huisnummer, huisletter, huisnumm
'', -- pandstatus
NULL, -- pandbouwjaar
-- Vlak geometrie wordt punt
-- ST_Force3D is Postgis 2.x, gebruik st_force_3d voor Postgis 1.x
-- ST_Force3D is Postgis 2.x, gebruik ST_Force3D voor Postgis 1.x
ST_Force3D(ST_Centroid(s.geovlak)) as geopunt
FROM
standplaatsactueel s
Expand Down Expand Up @@ -304,7 +304,7 @@ INSERT INTO geo_adres_full (openbareruimtenaam, huisnummer, huisletter, huisnumm
'', -- pandstatus
NULL, -- pandbouwjaar
-- Vlak geometrie wordt punt
-- ST_Force3D is Postgis 2.x, gebruik st_force_3d voor Postgis 1.x
-- ST_Force3D is Postgis 2.x, gebruik ST_Force3D voor Postgis 1.x
ST_Force3D(ST_Centroid(l.geovlak)) as geopunt
FROM
adresseerbaarobjectnevenadresactueel aon
Expand Down Expand Up @@ -351,7 +351,7 @@ INSERT INTO geo_adres_full (openbareruimtenaam, huisnummer, huisletter, huisnumm
'', -- pandstatus
NULL, -- pandbouwjaar
-- Vlak geometrie wordt punt
-- ST_Force3D is Postgis 2.x, gebruik st_force_3d voor Postgis 1.x
-- ST_Force3D is Postgis 2.x, gebruik ST_Force3D voor Postgis 1.x
ST_Force3D(ST_Centroid(s.geovlak)) as geopunt
FROM
adresseerbaarobjectnevenadresactueel aon
Expand Down
8 changes: 4 additions & 4 deletions bag/db/script/geocode/geocode-tabellen.sql
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ INSERT INTO geo_adres (straatnaam, huisnummer, huisletter, toevoeging, postcode,
p.gemeentenaam,
p.provincienaam,
-- Vlak geometrie wordt punt
-- ST_Force3D is Postgis 2.x, gebruik st_force_3d voor Postgis 1.x
-- ST_Force3D is Postgis 2.x, gebruik ST_Force3D voor Postgis 1.x
ST_Force3D(ST_Centroid(l.geovlak)) as geopunt
FROM
(SELECT identificatie, geovlak, hoofdadres from ligplaatsactueelbestaand) l,
Expand Down Expand Up @@ -105,7 +105,7 @@ INSERT INTO geo_adres (straatnaam, huisnummer, huisletter, toevoeging, postcode,
p.gemeentenaam,
p.provincienaam,
-- Vlak geometrie wordt punt
-- ST_Force3D is Postgis 2.x, gebruik st_force_3d voor Postgis 1.x
-- ST_Force3D is Postgis 2.x, gebruik ST_Force3D voor Postgis 1.x
ST_Force3D(ST_Centroid(l.geovlak)) as geopunt
FROM
(SELECT identificatie, geovlak, hoofdadres from standplaatsactueelbestaand) l,
Expand Down Expand Up @@ -161,7 +161,7 @@ INSERT INTO geo_adres (straatnaam, huisnummer, huisletter, toevoeging, postcode,
p.gemeentenaam,
p.provincienaam,
-- Vlak geometrie wordt punt
-- ST_Force3D is Postgis 2.x, gebruik st_force_3d voor Postgis 1.x
-- ST_Force3D is Postgis 2.x, gebruik ST_Force3D voor Postgis 1.x
ST_Force3D(ST_Centroid(l.geovlak)) as geopunt
FROM
(SELECT identificatie, nevenadres from adresseerbaarobjectnevenadresactueel) aon,
Expand Down Expand Up @@ -191,7 +191,7 @@ INSERT INTO geo_adres (straatnaam, huisnummer, huisletter, toevoeging, postcode,
p.gemeentenaam,
p.provincienaam,
-- Vlak geometrie wordt punt
-- ST_Force3D is Postgis 2.x, gebruik st_force_3d voor Postgis 1.x
-- ST_Force3D is Postgis 2.x, gebruik ST_Force3D voor Postgis 1.x
ST_Force3D(ST_Centroid(s.geovlak)) as geopunt
FROM
(SELECT identificatie, nevenadres from adresseerbaarobjectnevenadresactueel) aon,
Expand Down
Binary file modified bag/test/bag-test.dump
Binary file not shown.
Binary file added bag/test/data/GEM-WPL-RELATIE-08052020.zip
Binary file not shown.
Binary file added bag/test/datazip/data.zip
Binary file not shown.
Loading

0 comments on commit f2974e1

Please sign in to comment.