From a36c746b56a52323802d7ace2b1074741fba210b Mon Sep 17 00:00:00 2001 From: Tobias Zwick Date: Tue, 30 Apr 2019 23:26:20 +0200 Subject: [PATCH] Add bust, graffiti and installation artwork type preset --- .../presets/presets/tourism/artwork/bust.json | 22 ++++++++++++++++ .../presets/tourism/artwork/graffiti.json | 26 +++++++++++++++++++ .../presets/tourism/artwork/installation.json | 26 +++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 data/presets/presets/tourism/artwork/bust.json create mode 100644 data/presets/presets/tourism/artwork/graffiti.json create mode 100644 data/presets/presets/tourism/artwork/installation.json diff --git a/data/presets/presets/tourism/artwork/bust.json b/data/presets/presets/tourism/artwork/bust.json new file mode 100644 index 000000000..f6f02462e --- /dev/null +++ b/data/presets/presets/tourism/artwork/bust.json @@ -0,0 +1,22 @@ +{ + "icon": "maki-art-gallery", + "fields": [ + "name", + "artist", + "material" + ], + "geometry": [ + "point", "vertex" + ], + "tags": { + "tourism": "artwork", + "artwork_type": "bust" + }, + "reference": { + "key": "artwork_type" + }, + "terms": [ + "figure" + ], + "name": "Bust" +} diff --git a/data/presets/presets/tourism/artwork/graffiti.json b/data/presets/presets/tourism/artwork/graffiti.json new file mode 100644 index 000000000..ad813e01c --- /dev/null +++ b/data/presets/presets/tourism/artwork/graffiti.json @@ -0,0 +1,26 @@ +{ + "icon": "maki-art-gallery", + "fields": [ + "name", + "artist" + ], + "geometry": [ + "point", + "vertex", + "line", + "area" + ], + "tags": { + "tourism": "artwork", + "artwork_type": "graffiti" + }, + "reference": { + "key": "artwork_type" + }, + "terms": [ + "graffiti", + "Street Artwork", + "Guerilla Artwork" + ], + "name": "Graffiti Artwork" +} diff --git a/data/presets/presets/tourism/artwork/installation.json b/data/presets/presets/tourism/artwork/installation.json new file mode 100644 index 000000000..c8669bb20 --- /dev/null +++ b/data/presets/presets/tourism/artwork/installation.json @@ -0,0 +1,26 @@ +{ + "icon": "maki-art-gallery", + "fields": [ + "name", + "artist" + ], + "geometry": [ + "point", + "vertex", + "line", + "area" + ], + "tags": { + "tourism": "artwork", + "artwork_type": "installation" + }, + "reference": { + "key": "artwork_type" + }, + "terms": [ + "interactive art", + "intervention art", + "modern art" + ], + "name": "Installation Artwork" +}