Created
April 9, 2021 20:38
-
-
Save sfkeller/9b57f6020299d717a81560383cdc22b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- FUNCTION hstore_match_key_prefix(...) | |
-- | |
--drop function hstore_match_key_prefix(hstore, text, text); | |
create or replace function hstore_match_key_prefix(tags hstore, key_prefix text, value_value text default 'yes') | |
returns text[] | |
as $$ | |
select array_agg(substring(key, key_prefix||':#"%#"', '#')) | |
from (select (each(tags)).key as key, (each(tags)).value as value) as "alias" | |
where key like key_prefix||':%' and value = value_value | |
order by 1 | |
$$ language sql; | |
with tbl(tags) as (values | |
('a:a=>yes,payment:cash=>no,payment:american_express=>yes, payment:diners_club=>yes'::hstore), | |
('a:b=>yes,payment:cash=>yes,payment:american_express=>no'::hstore), | |
('a:c=>yes,payment:cash=>no'), | |
('a:d=>yes') | |
) | |
select tags, hstore_match_key_prefix(tags, 'payment') as payment | |
from tbl | |
--where hstore_match_key_prefix(tags, 'payment', 'no') is null -- payment:*=no oder kein payment | |
where hstore_match_key_prefix(tags, 'payment') && '{american_express, diners_club}'; | |
*/ | |
-- | |
-- Demo: List all supermarkets which accept Twint in OpenStreetMap (EOSMDBTwo) | |
-- | |
select osm_id, name, tags, geom | |
from osm_point | |
where tags->'shop' in ('supermarket','convenience','deli') | |
and (hstore_match_key_prefix(tags, 'payment') && '{twint}'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment