SELECT
COALESCE(plx.country_code, get_country_code(ST_Centroid(pl.geometry))) as cc,
token_normalized_postcode(pl.address->'postcode') as pc,
- ST_Centroid(ST_Collect(ST_Centroid(pl.geometry))) as centroid
+ COALESCE(ST_Centroid(ST_Collect(plx.centroid)), ST_Centroid(ST_Collect(ST_Centroid(pl.geometry)))) as centroid
FROM place AS pl LEFT OUTER JOIN placex AS plx ON pl.osm_id = plx.osm_id AND pl.osm_type = plx.osm_type
WHERE pl.address ? 'postcode' AND pl.geometry IS NOT null
GROUP BY cc, pc
postcodes can be computed.
"""
with connect(dsn) as conn:
- with conn.cursor() as cur:
- cur.execute("""
- select exists(select 1 from information_schema.tables where table_name='place')
- """)
- return cur.fetchone()[0]
+ return conn.table_exists('place')