+ cur.execute(
+ """insert into location_property_osmline
+ (osm_id, interpolationtype, street, addr_place,
+ postcode, calculated_country_code, linegeo)
+ SELECT osm_id, housenumber, street, addr_place,
+ postcode, country_code, geometry from place
+ WHERE class='place' and type='houses' and osm_type='W'
+ and ST_GeometryType(geometry) = 'ST_LineString'""")