You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--- Get a csv ---createtablewdosm.GE_noWdId (
osm_type char,osm_id bigint, wd_member_ids text
);
copy wdosm.GE_noWdIdfrom'/tmp/GE_noWdId.csv' CSV HEADER;
--- Suspects heuristic1 ---
with t as (
select osm_type,osm_id, wdosm.wd_id_unformat(wd_member_ids) as members
fromwdosm.ge_nowdid
) selectwdosm.osm_link(osm_id,osm_type)
from t
where jsonb_int_maxval(members)>3and jsonb_object_length(members)=1
;