1440 lines
76 KiB
TypeScript
1440 lines
76 KiB
TypeScript
import type { LexiconBatchEntry } from './lexiconBatch1';
|
||
|
||
const BULK_HERB_CARE = { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '12-24 C' };
|
||
const BULK_FLOWER_CARE = { waterIntervalDays: 4, light: 'Volles bis helles Licht', temp: '10-24 C' };
|
||
const BULK_TREE_CARE = { waterIntervalDays: 7, light: 'Volles bis helles Licht', temp: '5-25 C' };
|
||
const BULK_HOUSEPLANT_CARE = { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 C' };
|
||
const BULK_HUMID_HOUSEPLANT_CARE = { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '18-28 C' };
|
||
const BULK_SUCCULENT_HANGING_CARE = { waterIntervalDays: 10, light: 'Helles bis volles Licht', temp: '18-30 C' };
|
||
|
||
const createPendingEntry = (
|
||
entry: Omit<LexiconBatchEntry, 'confidence' | 'imageUri'>,
|
||
): LexiconBatchEntry => ({
|
||
...entry,
|
||
confidence: 1.0,
|
||
imageUri: `wikimedia-search:${entry.botanicalName}`,
|
||
});
|
||
|
||
const createHerbEntry = (
|
||
name: string,
|
||
botanicalName: string,
|
||
overrides: Partial<Pick<LexiconBatchEntry, 'careInfo' | 'description' | 'categories'>> = {},
|
||
): LexiconBatchEntry => createPendingEntry({
|
||
name,
|
||
botanicalName,
|
||
careInfo: overrides.careInfo || BULK_HERB_CARE,
|
||
description: overrides.description || `${name} ist ein bekanntes Kuechenkraut mit aromatischem Geschmack und vielseitiger Verwendung.`,
|
||
categories: overrides.categories || ['easy', 'sun'],
|
||
});
|
||
|
||
const createHerbPinnedEntry = (
|
||
name: string,
|
||
botanicalName: string,
|
||
imageUri: string,
|
||
overrides: Partial<Pick<LexiconBatchEntry, 'careInfo' | 'description' | 'categories'>> = {},
|
||
): LexiconBatchEntry => ({
|
||
...createHerbEntry(name, botanicalName, overrides),
|
||
imageUri,
|
||
});
|
||
|
||
const createFlowerEntry = (
|
||
name: string,
|
||
botanicalName: string,
|
||
overrides: Partial<Pick<LexiconBatchEntry, 'careInfo' | 'description' | 'categories'>> = {},
|
||
): LexiconBatchEntry => createPendingEntry({
|
||
name,
|
||
botanicalName,
|
||
careInfo: overrides.careInfo || BULK_FLOWER_CARE,
|
||
description: overrides.description || `${name} ist eine beliebte Bluetenpflanze fuer Beet, Balkon oder Garten.`,
|
||
categories: overrides.categories || ['flowering', 'sun'],
|
||
});
|
||
|
||
const createTreeEntry = (
|
||
name: string,
|
||
botanicalName: string,
|
||
overrides: Partial<Pick<LexiconBatchEntry, 'careInfo' | 'description' | 'categories'>> = {},
|
||
): LexiconBatchEntry => createPendingEntry({
|
||
name,
|
||
botanicalName,
|
||
careInfo: overrides.careInfo || BULK_TREE_CARE,
|
||
description: overrides.description || `${name} ist ein bekanntes Zier- oder Gartengehoelz mit dekorativem Wuchs.`,
|
||
categories: overrides.categories || ['tree', 'sun', 'large'],
|
||
});
|
||
|
||
const createHouseplantEntry = (
|
||
name: string,
|
||
botanicalName: string,
|
||
overrides: Partial<Pick<LexiconBatchEntry, 'careInfo' | 'description' | 'categories'>> = {},
|
||
): LexiconBatchEntry => createPendingEntry({
|
||
name,
|
||
botanicalName,
|
||
careInfo: overrides.careInfo || BULK_HOUSEPLANT_CARE,
|
||
description: overrides.description || `${name} ist eine beliebte Zimmerpflanze mit dekorativem Laub oder markantem Wuchs.`,
|
||
categories: overrides.categories || ['bright_light'],
|
||
});
|
||
|
||
const createHouseplantSearchEntry = (
|
||
name: string,
|
||
botanicalName: string,
|
||
searchQuery: string,
|
||
overrides: Partial<Pick<LexiconBatchEntry, 'careInfo' | 'description' | 'categories'>> = {},
|
||
): LexiconBatchEntry => ({
|
||
...createHouseplantEntry(name, botanicalName, overrides),
|
||
imageUri: `wikimedia-search:${searchQuery}`,
|
||
});
|
||
|
||
const createHouseplantPinnedEntry = (
|
||
name: string,
|
||
botanicalName: string,
|
||
imageUri: string,
|
||
overrides: Partial<Pick<LexiconBatchEntry, 'careInfo' | 'description' | 'categories'>> = {},
|
||
): LexiconBatchEntry => ({
|
||
...createHouseplantEntry(name, botanicalName, overrides),
|
||
imageUri,
|
||
});
|
||
|
||
export const LEXICON_BATCH_2_ENTRIES: LexiconBatchEntry[] = [
|
||
{
|
||
name: 'Weisse Strelitzie',
|
||
botanicalName: 'Strelitzia nicolai',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '18-27 °C' },
|
||
description: 'Die Weisse Strelitzie ist ein beeindruckender Zimmerstrauch mit grossen, blaugruenen Blaettern und weiss-blauen Blueten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Strelitzia_nicolai_3.jpg/500px-Strelitzia_nicolai_3.jpg',
|
||
categories: ['large', 'tree', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Bananenpflanze',
|
||
botanicalName: 'Musa acuminata',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '20-30 °C' },
|
||
description: 'Die Bananenpflanze ist eine tropische Staude mit riesigen, glaenzenden Blaettern. Im Zimmer selten fruechttragend.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Musa_acuminata_in_india01.jpg/500px-Musa_acuminata_in_india01.jpg',
|
||
categories: ['large', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Kentia-Palme',
|
||
botanicalName: 'Howea forsteriana',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-25 °C' },
|
||
description: 'Die Kentia-Palme ist eine der elegantesten Zimmerpalmen mit langen, herabhängenden Fiederblaettern.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Howea_forsteriana_Lord_Howe_Island.jpg/500px-Howea_forsteriana_Lord_Howe_Island.jpg',
|
||
categories: ['tree', 'low_light', 'pet_friendly'],
|
||
},
|
||
{
|
||
name: 'Chinesische Fächerpalme',
|
||
botanicalName: 'Livistona chinensis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Die Chinesische Fächerpalme hat grosse, faecherfoermige Blaetter auf einem einzelnen Stamm. Sehr dekorativ.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Livistona-chinensis.jpg/500px-Livistona-chinensis.jpg',
|
||
categories: ['tree', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Mexikanische Fächerpalme',
|
||
botanicalName: 'Washingtonia robusta',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 10, light: 'Volles Sonnenlicht', temp: '15-35 °C' },
|
||
description: 'Die Mexikanische Fächerpalme ist eine schlanke, hohe Palme mit faecherfoermigen Blaettern. Sehr hitzetolerant.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Arecales_-_Washingtonia_robusta_-_1.jpg/500px-Arecales_-_Washingtonia_robusta_-_1.jpg',
|
||
categories: ['tree', 'sun', 'large'],
|
||
},
|
||
{
|
||
name: 'Schraubenbaum',
|
||
botanicalName: 'Pandanus veitchii',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '18-27 °C' },
|
||
description: 'Der Schraubenbaum hat spiralfoermig angeordnete, gruenweiss gestreifte Blaetter. Sehr dekorativ und exotisch.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Pandanus_tectorius.jpg/500px-Pandanus_tectorius.jpg',
|
||
categories: ['patterned', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Bambusrohr',
|
||
botanicalName: 'Bambusa vulgaris',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '15-30 °C' },
|
||
description: 'Das Bambusrohr ist eine schnell wachsende Bambusart mit gelbgruenen Halmen. Sehr dekorativ und vielseitig nutzbar.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Golden_Bamboo%28Bambusa_vulgaris%29_in_Hong_Kong.jpg/500px-Golden_Bamboo%28Bambusa_vulgaris%29_in_Hong_Kong.jpg',
|
||
categories: ['easy', 'large'],
|
||
},
|
||
{
|
||
name: 'Goldener Bambus',
|
||
botanicalName: 'Phyllostachys aurea',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '10-30 °C' },
|
||
description: 'Der Goldene Bambus hat elegante, goldgelbe Halme mit engstehenden Knoten. Sehr dekorativ als Sichtschutz.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Phyllostachys_aurea0.jpg/500px-Phyllostachys_aurea0.jpg',
|
||
categories: ['easy', 'large'],
|
||
},
|
||
{
|
||
name: 'Paragraphenpflanze',
|
||
botanicalName: 'Cyperus alternifolius',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles bis volles Licht', temp: '18-27 °C' },
|
||
description: 'Die Paragraphenpflanze hat lange, grasartige Blaetter, die sternfoermig vom Stiel abstehen. Sie liebt viel Wasser.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/7/76/Cyperus_alternifolius_2.jpg',
|
||
categories: ['high_humidity'],
|
||
},
|
||
{
|
||
name: 'Strahlenaralie',
|
||
botanicalName: 'Schefflera arboricola',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '15-25 °C' },
|
||
description: 'Die Strahlenaralie hat fingerfoermig angeordnete, glaenzende Blaetter auf langen Stielen. Sehr robuste Zimmerpflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/82/Schefflera_arboricola%2C_vrugte%2C_a%2C_Pretoria.jpg/500px-Schefflera_arboricola%2C_vrugte%2C_a%2C_Pretoria.jpg',
|
||
categories: ['easy', 'air_purifier', 'tree'],
|
||
},
|
||
{
|
||
name: 'Grosse Strahlenaralie',
|
||
botanicalName: 'Schefflera actinophylla',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Die Grosse Strahlenaralie kann grosse, handfoermige Blaetter entwickeln. Sie ist ideal als Zimmerstrauch.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/b/bc/Octopus_Tree_%28Schefflera_actinophylla%29_at_Hyderabad%2C_AP_W_283.jpg',
|
||
categories: ['easy', 'tree', 'large'],
|
||
},
|
||
{
|
||
name: 'Fatsia',
|
||
botanicalName: 'Fatsia japonica',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '10-20 °C' },
|
||
description: 'Die Fatsia ist ein dekorativer Zimmerstrauch mit grossen, handfoermigen, glaenzenden Blaettern. Sehr robust.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Old_Fatsia_japonica_with_blosems.jpg/500px-Old_Fatsia_japonica_with_blosems.jpg',
|
||
categories: ['easy', 'low_light'],
|
||
},
|
||
{
|
||
name: 'Japanische Aucube',
|
||
botanicalName: 'Aucuba japonica',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Wenig bis helles Licht', temp: '10-20 °C' },
|
||
description: 'Die Japanische Aucube hat glaenzende, gruene oder gelbgefleckte Blaetter. Sehr schattenvertraeglich.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Aucuba_japonica_Gold_Dust_NBG_LR.jpg/500px-Aucuba_japonica_Gold_Dust_NBG_LR.jpg',
|
||
categories: ['easy', 'low_light'],
|
||
},
|
||
{
|
||
name: 'Keulenlilie',
|
||
botanicalName: 'Cordyline australis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '10-25 °C' },
|
||
description: 'Die Keulenlilie hat lange, schmale, gruene oder rotbraune Blaetter in einem dekorativen Schopf.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/CabbageTreeKaihoka.jpg/500px-CabbageTreeKaihoka.jpg',
|
||
categories: ['easy', 'tree', 'sun'],
|
||
},
|
||
{
|
||
name: 'Tiroler Keulenlilie',
|
||
botanicalName: 'Cordyline fruticosa',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Die Tiroler Keulenlilie hat leuchtend rote, gruene oder buntlaubige Blaetter. Eine exotische Zimmerpflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Cordyline_fruticosa_%2820262433874%29.jpg/500px-Cordyline_fruticosa_%2820262433874%29.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Schusterpflanze',
|
||
botanicalName: 'Aspidistra elatior',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Wenig bis helles Licht', temp: '10-20 °C' },
|
||
description: 'Die Schusterpflanze ist eine extrem robuste Zimmerpflanze mit langen, dunkelgruenen Blaettern. Vertraegt tiefe Temperaturen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Aspidistra_elatior1.jpg/500px-Aspidistra_elatior1.jpg',
|
||
categories: ['easy', 'low_light'],
|
||
},
|
||
{
|
||
name: 'Zylindrischer Bogenhanf',
|
||
botanicalName: 'Sansevieria cylindrica',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '15-27 °C' },
|
||
description: 'Der Zylindrische Bogenhanf hat zylindrische, aufrechte Blaetter, die sich nach oben verjuengen. Sehr pflegeleicht.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Sansevieria_cylindrica_flowers_7.jpg/500px-Sansevieria_cylindrica_flowers_7.jpg',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Kap-Aloe (ferox)',
|
||
botanicalName: 'Aloe ferox',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Volles Sonnenlicht', temp: '10-30 °C' },
|
||
description: 'Aloe ferox ist eine grosse, imposante Aloe mit stachligen, blaugruenen Blaettern und leuchtend roten Bluetenaehren.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/9/9e/Aloe_Ferox_between_Cofimvaba_and_Ngcobo.jpg',
|
||
categories: ['succulent', 'medicinal', 'sun', 'large'],
|
||
},
|
||
{
|
||
name: 'Christusdorn',
|
||
botanicalName: 'Euphorbia milii',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 10, light: 'Helles bis volles Licht', temp: '15-28 °C' },
|
||
description: 'Der Christusdorn ist eine sukkulente Wolfsmilch mit stacheligen Zweigen und kleinen roten oder gelben Hochblaettern.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Euphorbia_Milii_flowers.jpg/500px-Euphorbia_Milii_flowers.jpg',
|
||
categories: ['easy', 'succulent', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Weihnachtsstern',
|
||
botanicalName: 'Euphorbia pulcherrima',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '15-22 °C' },
|
||
description: 'Der Weihnachtsstern ist die klassische Winterpflanze mit leuchtend roten Hochblaettern. Er steht symbolisch fuer Weihnachten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Weihnachtsstern_-_gro%C3%9F.jpg/500px-Weihnachtsstern_-_gro%C3%9F.jpg',
|
||
categories: ['flowering'],
|
||
},
|
||
{
|
||
name: 'Kaninchen-Ohren',
|
||
botanicalName: 'Kalanchoe tomentosa',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Kaninchen-Ohren haben weisslich-filzige Blaetter mit braunen Raendern, die Kaninchenohren aehneln. Sehr dekorativ.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Kalanchoe_tomentosa_01.jpg/500px-Kalanchoe_tomentosa_01.jpg',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Brutblatt',
|
||
botanicalName: 'Kalanchoe daigremontiana',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Das Brutblatt bildet entlang des Blattrandes zahlreiche kleine Jungpflanzen. Eine faszinierende Sukkulente.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Vivipary_in_Kalanchoe_daigremontiana.jpg/500px-Vivipary_in_Kalanchoe_daigremontiana.jpg',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Lebende Steine',
|
||
botanicalName: 'Lithops julii',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 21, light: 'Volles Sonnenlicht', temp: '10-30 °C' },
|
||
description: 'Lebende Steine sind faszinierende Mimikry-Sukkulenten, die Kieselsteinen taeuschen aehnlich sehen. Sehr trockenheitsresistent.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Lithops_julii_fulleri.jpg/500px-Lithops_julii_fulleri.jpg',
|
||
categories: ['succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Konophytum',
|
||
botanicalName: 'Conophytum calculus',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 21, light: 'Volles Sonnenlicht', temp: '10-25 °C' },
|
||
description: 'Das Konophytum ist eine sehr kompakte Sukkulente, die zwei Blaetter zu einer kugelfoermigen Form verschmilzt.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/1_Conophytum_calculus_-_RSA_3.jpg/500px-1_Conophytum_calculus_-_RSA_3.jpg',
|
||
categories: ['succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Aasblume',
|
||
botanicalName: 'Stapelia grandiflora',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '18-30 °C' },
|
||
description: 'Die Aasblume hat fleischige, gruene Staengel und riesige, sternfoermige Blueten mit aasartigem Duft.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Stapelia_grandiflora_22102013_1_%2810606394434%29.jpg/500px-Stapelia_grandiflora_22102013_1_%2810606394434%29.jpg',
|
||
categories: ['succulent', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Moos-Crassula',
|
||
botanicalName: 'Crassula muscosa',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Die Moos-Crassula hat dicht aneinandergereihte, winzige gruene Blaetter auf unverzweigten Trieben. Sieht aus wie Moos.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Crassula_muscosa_Grubosz_2006-05-03_01.jpg/500px-Crassula_muscosa_Grubosz_2006-05-03_01.jpg',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Speckbaum',
|
||
botanicalName: 'Portulacaria afra',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '15-30 °C' },
|
||
description: 'Der Speckbaum ist eine sukkulente Pflanze mit roten Stielen und kleinen, runden, glaenzenden Blaettern.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Portulacaria_afra_02.JPG/500px-Portulacaria_afra_02.JPG',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Blauer Kreuzkraut',
|
||
botanicalName: 'Senecio serpens',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Der Blaue Kreuzkraut hat zylindrische, blaublaugruene Blaetter und einen kriechenden Wuchs. Sehr dekorativ.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Senecio_serpens_04.jpg/500px-Senecio_serpens_04.jpg',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Kotyledon',
|
||
botanicalName: 'Cotyledon orbiculata',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Kotyledon hat dickfleischige, runde Blaetter mit einem mehligen, weisslichen Belag. Sehr trockenheitsresistent.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/Cotyledon_orbiculata_-_pigs_ear_-_Cape_Point_-_South_Africa_2.JPG/500px-Cotyledon_orbiculata_-_pigs_ear_-_Cape_Point_-_South_Africa_2.JPG',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Dudleya',
|
||
botanicalName: 'Dudleya brittonii',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Volles Sonnenlicht', temp: '10-25 °C' },
|
||
description: 'Dudleya ist eine rosettenbildende Sukkulente mit silbrig-weissen, mehligen Blaettern. Sehr elegant.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Dudleya_Brittonii.jpg/500px-Dudleya_Brittonii.jpg',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Adromischus',
|
||
botanicalName: 'Adromischus cristatus',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Adromischus ist eine kompakte Sukkulente mit ungewoehnlich wellenrandigen Blaettern auf kurzen Staengeln.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/Adromischus_cristatus_-_Gaiser_Conservatory_%28Manito_Park%29_-_IMG_7008.JPG/500px-Adromischus_cristatus_-_Gaiser_Conservatory_%28Manito_Park%29_-_IMG_7008.JPG',
|
||
categories: ['easy', 'succulent', 'sun'],
|
||
},
|
||
{
|
||
name: 'Spanisches Moos',
|
||
botanicalName: 'Tillandsia usneoides',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles bis volles Licht', temp: '15-30 °C' },
|
||
description: 'Das Spanische Moos ist eine epiphytische Bromelie ohne Wurzeln, die in der Luft haengt. Es benoetigt nur Feuchtigkeitsbespruehing.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Spanish_moss_at_the_Mcbryde_Garden_in_hawaii.jpg/500px-Spanish_moss_at_the_Mcbryde_Garden_in_hawaii.jpg',
|
||
categories: ['easy', 'hanging'],
|
||
},
|
||
{
|
||
name: 'Luftpflanze',
|
||
botanicalName: 'Tillandsia ionantha',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles bis volles Licht', temp: '15-30 °C' },
|
||
description: 'Die Luftpflanze ist eine kompakte Bromelie ohne Topferde. Sie nimmt Wasser und Naehrstoffe ueber die Blattschuppen auf.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/b5/Purple_sky_plant_-_Andrey_Zharkikh.jpg/500px-Purple_sky_plant_-_Andrey_Zharkikh.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Silbervase',
|
||
botanicalName: 'Aechmea fasciata',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 10, light: 'Helles indirektes Licht', temp: '18-25 °C' },
|
||
description: 'Die Silbervase ist eine Bromelie mit silbrig gebänderten Blaettern und einem rosafarbenen Bluetenstand.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Aechmea_fasciata2.jpg/500px-Aechmea_fasciata2.jpg',
|
||
categories: ['flowering', 'patterned'],
|
||
},
|
||
{
|
||
name: 'Flammen-Bromelie',
|
||
botanicalName: 'Vriesea splendens',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-25 °C' },
|
||
description: 'Die Flammen-Bromelie hat gebänderte, dunkelgruene Blaetter und einen spektakulaeren, roten Bluetenstand.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Bromelia1.jpg/500px-Bromelia1.jpg',
|
||
categories: ['flowering', 'patterned', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Guzmania',
|
||
botanicalName: 'Guzmania lingulata',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Die Guzmania ist eine Bromelie mit glänzenden, gruenen Blaettern und einem leuchtend roten, sternfoermigen Bluetenstand.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Bromeliaceae03.jpg/500px-Bromeliaceae03.jpg',
|
||
categories: ['flowering', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Neoregelia',
|
||
botanicalName: 'Neoregelia carolinae',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '18-27 °C' },
|
||
description: 'Die Neoregelia ist eine Bromelie, bei der das Herzblatt zur Bluetzeit leuchtend rot wird. Sehr dekorativ.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/Neoregelia_carolinae_BotGardBln310505a.jpg/500px-Neoregelia_carolinae_BotGardBln310505a.jpg',
|
||
categories: ['flowering', 'patterned', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Billbergia',
|
||
botanicalName: 'Billbergia nutans',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '15-25 °C' },
|
||
description: 'Die Billbergia ist eine robuste Bromelie mit schmalen, gruenen Blaettern und hängenden, blauen und gruenen Blueten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/9/9e/Billbergia_nutans1SHSU.jpg',
|
||
categories: ['easy', 'flowering'],
|
||
},
|
||
{
|
||
name: 'Cryptanthus',
|
||
botanicalName: 'Cryptanthus bivittatus',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Cryptanthus ist eine niedrig wachsende Bromelie mit sternfoermigen Rosetten und gemusterten Blaettern. Fuer Terrarien.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/CryptanthusBivittatus.jpg/500px-CryptanthusBivittatus.jpg',
|
||
categories: ['patterned', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Blaues Kanaelfarn',
|
||
botanicalName: 'Phlebodium aureum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Der Blaue Kanaelfarn hat wachsartige, blaugruene Wedel und glaenzende Wurzelstaemme. Sehr dekorativ.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Starr_050107-2831_Phlebodium_aureum.jpg/500px-Starr_050107-2831_Phlebodium_aureum.jpg',
|
||
categories: ['high_humidity'],
|
||
},
|
||
{
|
||
name: 'Geweihfarn',
|
||
botanicalName: 'Platycerium bifurcatum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '15-25 °C' },
|
||
description: 'Der Geweihfarn hat gespaltene Wedel, die einem Hirschgeweih aehneln. Er ist ein epiphytischer Farn fuer Holz.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Platycerium_bifurcatum_kz01.jpg/500px-Platycerium_bifurcatum_kz01.jpg',
|
||
categories: ['hanging', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Frauenhaarfarn',
|
||
botanicalName: 'Adiantum raddianum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Der Frauenhaarfarn hat zarte, feingliedrige Wedel auf schwarzen, drahtaehnlichen Stielen. Liebt Feuchtigkeit.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/45/Starr_030807-0143_Adiantum_raddianum.jpg/500px-Starr_030807-0143_Adiantum_raddianum.jpg',
|
||
categories: ['high_humidity'],
|
||
},
|
||
{
|
||
name: 'Vogelnest-Farn',
|
||
botanicalName: 'Asplenium nidus',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Der Vogelnest-Farn hat ganzrandige, glaenzende Wedel, die eine Nestform bilden. Sehr dekorativ und robust.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Asplenium_nidus_%28Bukidnon%2C_Philippines%29_02.jpg/500px-Asplenium_nidus_%28Bukidnon%2C_Philippines%29_02.jpg',
|
||
categories: ['easy', 'high_humidity', 'low_light'],
|
||
},
|
||
{
|
||
name: 'Tueipelfarn',
|
||
botanicalName: 'Polypodium vulgare',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '10-20 °C' },
|
||
description: 'Der Tueipelfarn ist ein heimischer Farn mit gelappten Wedeln und runden Sporenhaeufchen auf der Unterseite.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/T%C3%BCpfelfarn_%28Polypodium_vulgare%29.jpg/500px-T%C3%BCpfelfarn_%28Polypodium_vulgare%29.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Regenbogenmoos',
|
||
botanicalName: 'Selaginella uncinata',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Das Regenbogenmoos hat schuppenfoermige Blaetter, die im Licht schillernd irisieren. Dekorativ fuer Terrarien.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/3/34/Selaginella_uncinata_-_Berlin_Botanical_Garden_-_IMG_8722.JPG/500px-Selaginella_uncinata_-_Berlin_Botanical_Garden_-_IMG_8722.JPG',
|
||
categories: ['high_humidity', 'patterned'],
|
||
},
|
||
{
|
||
name: 'Tueipelfarn (Microsorum)',
|
||
botanicalName: 'Microsorum punctatum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Microsorum punctatum ist ein tropischer Farn mit langen, ungeteilten, glaenzenden Wedeln. Fuer feuchte Standorte.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Microsorum_punctatum.jpg/500px-Microsorum_punctatum.jpg',
|
||
categories: ['high_humidity'],
|
||
},
|
||
{
|
||
name: 'Monstera adansonii',
|
||
botanicalName: 'Monstera adansonii',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Monstera adansonii hat herzfoermige Blaetter mit zahlreichen runden Lochern. Eine rankende Zimmerpflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Monstera_adansonii_79319231.jpg/500px-Monstera_adansonii_79319231.jpg',
|
||
categories: ['easy', 'hanging'],
|
||
},
|
||
{
|
||
name: 'Monstera obliqua',
|
||
botanicalName: 'Monstera obliqua',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Monstera obliqua ist eine seltene Monstera-Art mit filigranen Blaettern, die hauptsaechlich aus Lochern bestehen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Obiqula.jpg/500px-Obiqula.jpg',
|
||
categories: ['hanging', 'patterned'],
|
||
},
|
||
{
|
||
name: 'Philodendron gloriosum',
|
||
botanicalName: 'Philodendron gloriosum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Philodendron gloriosum hat grosse, samtige, herzfoermige Blaetter mit weissen Rippen. Eine atemberaubende Pflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Philodendron_gloriosum_%2829587099650%29.jpg/500px-Philodendron_gloriosum_%2829587099650%29.jpg',
|
||
categories: ['patterned', 'high_humidity', 'large'],
|
||
},
|
||
{
|
||
name: 'Philodendron bipinnatifidum',
|
||
botanicalName: 'Philodendron bipinnatifidum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Philodendron bipinnatifidum hat grosse, tief gelappte Blaetter. Er entwickelt einen beeindruckenden, baumfoermigen Wuchs.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Tree1.JPG/500px-Tree1.JPG',
|
||
categories: ['easy', 'large'],
|
||
},
|
||
{
|
||
name: 'Roter Philodendron',
|
||
botanicalName: 'Philodendron erubescens',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Der Rote Philodendron hat glaenzende, herzfoermige Blaetter, die jung roetrlich erscheinen. Sehr dekorativ.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Philodendron_erubescens_-_Leaves.jpg/500px-Philodendron_erubescens_-_Leaves.jpg',
|
||
categories: ['easy', 'hanging'],
|
||
},
|
||
{
|
||
name: 'Mini-Monstera',
|
||
botanicalName: 'Rhaphidophora tetrasperma',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Die Mini-Monstera hat monsteraaehnliche, gelochte Blaetter auf einer kompakten, klettternden Pflanze. Sehr trendig.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Rhaphidophora_tetrasperma.jpg/500px-Rhaphidophora_tetrasperma.jpg',
|
||
categories: ['easy', 'hanging'],
|
||
},
|
||
{
|
||
name: 'Neon-Efeutute',
|
||
botanicalName: 'Epipremnum pinnatum Neon',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '15-30 °C' },
|
||
description: 'Die Neon-Efeutute hat leuchtend limonengruene Blaetter. Sehr auffaellig und pflegeleicht.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Epipremnum_pinnatum_%27Neon%27%2C_Longwood_Gardens_01.jpg/500px-Epipremnum_pinnatum_%27Neon%27%2C_Longwood_Gardens_01.jpg',
|
||
categories: ['easy', 'hanging', 'air_purifier'],
|
||
},
|
||
{
|
||
name: 'Lila Tradescantia',
|
||
botanicalName: 'Tradescantia pallida',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Die Lila Tradescantia hat leuchtend purpurrote Blaetter und ist sehr auffaellig. Sie liebt viel Licht.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Tradescantia_pallida_kz03.jpg/500px-Tradescantia_pallida_kz03.jpg',
|
||
categories: ['easy', 'hanging', 'sun'],
|
||
},
|
||
{
|
||
name: 'Weisse Tradescantia',
|
||
botanicalName: 'Tradescantia fluminensis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '15-25 °C' },
|
||
description: 'Die Weisse Tradescantia hat gruene Blaetter mit weisslichen Unterseiten. Sehr robust und schnellwachsend.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Tradescantia_fluminensis_%28Flowers%29.jpg/500px-Tradescantia_fluminensis_%28Flowers%29.jpg',
|
||
categories: ['easy', 'hanging'],
|
||
},
|
||
{
|
||
name: 'Callisia',
|
||
botanicalName: 'Callisia repens',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '15-25 °C' },
|
||
description: 'Callisia repens ist ein kleines, kriechendes Kraut mit winzigen, gruenen Blaettern. Ideal fuer haengende Behaelter.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Callisia_repens_starr.jpg/500px-Callisia_repens_starr.jpg',
|
||
categories: ['easy', 'hanging'],
|
||
},
|
||
{
|
||
name: 'Forellen-Begonie',
|
||
botanicalName: 'Begonia maculata',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Die Forellen-Begonie hat olivgruene Blaetter mit silbernen Punkten und einer roten Unterseite. Atemberaubend.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Begonia_maculata3073316230.jpg/500px-Begonia_maculata3073316230.jpg',
|
||
categories: ['patterned', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Knollen-Begonie',
|
||
botanicalName: 'Begonia tuberhybrida',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '15-22 °C' },
|
||
description: 'Die Knollen-Begonie hat riesige, rosenaehnliche Blueten in leuchtendem Rot, Orange, Gelb oder Weiss.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Begonia-tuberhybride_Red.jpg/500px-Begonia-tuberhybride_Red.jpg',
|
||
categories: ['flowering', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Neuguinea-Balsamine',
|
||
botanicalName: 'Impatiens hawkeri',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles indirektes Licht', temp: '18-27 °C' },
|
||
description: 'Die Neuguinea-Balsamine hat grosse, leuchtende Blueten und ist sehr bluehfreudig. Ideal fuer Terrassen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Impatiens_hawkeri%2C_beijo-pintado_%28flores_vermelhas%29_07.jpg/500px-Impatiens_hawkeri%2C_beijo-pintado_%28flores_vermelhas%29_07.jpg',
|
||
categories: ['easy', 'flowering'],
|
||
},
|
||
{
|
||
name: 'Triphylla-Fuchsie',
|
||
botanicalName: 'Fuchsia triphylla',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles indirektes Licht', temp: '15-22 °C' },
|
||
description: 'Die Triphylla-Fuchsie hat lange, roehrenfoermige, orangefarbe Blueten in haengenden Trauben. Sehr exotisch.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/Fuchsia_triphylla_kz01.jpg/500px-Fuchsia_triphylla_kz01.jpg',
|
||
categories: ['flowering', 'hanging'],
|
||
},
|
||
{
|
||
name: 'Efeu-Geranie',
|
||
botanicalName: 'Pelargonium peltatum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Die Efeu-Geranie hat efeufoermige, glaenzende Blaetter und bluet den ganzen Sommer in leuchtenden Farben.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Pelargonium_peltatum_flower.jpg/500px-Pelargonium_peltatum_flower.jpg',
|
||
categories: ['easy', 'flowering', 'hanging', 'sun'],
|
||
},
|
||
{
|
||
name: 'Duftsteinrich',
|
||
botanicalName: 'Lobularia maritima',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles bis volles Licht', temp: '10-22 °C' },
|
||
description: 'Der Duftsteinrich ist ein niedrig wachsendes Pflanzchen mit winzigen, weissen oder lilafarbenen Blueten und suessem Duft.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Smagliczka_nadmorska_1.jpg/500px-Smagliczka_nadmorska_1.jpg',
|
||
categories: ['easy', 'flowering'],
|
||
},
|
||
{
|
||
name: 'Calibrachoa',
|
||
botanicalName: 'Calibrachoa hybrida',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 2, light: 'Volles Sonnenlicht', temp: '15-25 °C' },
|
||
description: 'Calibrachoa ist eine petunienaehnliche Haengepflanze mit unzaehligen, kleinen Trichterbluten in allen Farben.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Calibrachoa_flower_red.jpg/500px-Calibrachoa_flower_red.jpg',
|
||
categories: ['easy', 'flowering', 'hanging', 'sun'],
|
||
},
|
||
{
|
||
name: 'Wandelroeschen',
|
||
botanicalName: 'Lantana camara',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '18-28 °C' },
|
||
description: 'Das Wandelroeschen hat kugelige Bluetenkoepfe, die die Farbe von Gelb ueber Orange zu Rot wechseln. Sehr attraktiv.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/52/LantanaFlowerLeaves.jpg/500px-LantanaFlowerLeaves.jpg',
|
||
categories: ['flowering', 'sun', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Zinnie',
|
||
botanicalName: 'Zinnia elegans',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Volles Sonnenlicht', temp: '18-30 °C' },
|
||
description: 'Die Zinnie ist eine leuchtende Sommerblume mit grossen, dahlienaehnlichen Blueten. Sehr robust und hitzetolerant.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Zinnienbl%C3%BCte_Zinnia_elegans_stack15_20190722-RM-7222254.jpg/500px-Zinnienbl%C3%BCte_Zinnia_elegans_stack15_20190722-RM-7222254.jpg',
|
||
categories: ['easy', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Studentenblume',
|
||
botanicalName: 'Tagetes patula',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Volles Sonnenlicht', temp: '15-28 °C' },
|
||
description: 'Die Studentenblume ist eine robuste Sommerblume mit orangen oder gelben Blueten. Sie haelt Schadlinge fern.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/French_marigold_Tagetes_patula.jpg/500px-French_marigold_Tagetes_patula.jpg',
|
||
categories: ['easy', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Blumenschilfrohr',
|
||
botanicalName: 'Canna indica',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '18-28 °C' },
|
||
description: 'Das Blumenschilfrohr hat grosse, tropisch wirkende Blaetter und auffaellige Blueten in Rot, Orange oder Gelb.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Cinnamon-bellied_flowerpiercer_%28Diglossa_baritula%29_male_on_Indian_shot_%28Canna_indica%29_Finca_El_Pilar.jpg/500px-Cinnamon-bellied_flowerpiercer_%28Diglossa_baritula%29_male_on_Indian_shot_%28Canna_indica%29_Finca_El_Pilar.jpg',
|
||
categories: ['flowering', 'sun', 'large'],
|
||
},
|
||
{
|
||
name: 'Dahlie',
|
||
botanicalName: 'Dahlia pinnata',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '15-25 °C' },
|
||
description: 'Die Dahlie ist eine prachtvolle Sommerblume mit Blueten in allen Groessen und Formen. Sie wird aus Knollen gezogen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Borboletas_em_Mini-D%C3%A1lias.JPG/500px-Borboletas_em_Mini-D%C3%A1lias.JPG',
|
||
categories: ['flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Ostertrompete',
|
||
botanicalName: 'Lilium longiflorum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Die Ostertrompete hat grosse, weisse, trichterfoermige Blueten mit intensivem Duft. Klassische Osterblume.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Lilium_longiflorum_%28Easter_Lily%29.JPG/500px-Lilium_longiflorum_%28Easter_Lily%29.JPG',
|
||
categories: ['flowering', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Calla',
|
||
botanicalName: 'Zantedeschia aethiopica',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '15-24 °C' },
|
||
description: 'Die Calla hat elegante, trichterfoermige weisse Hochblaetter und glaenzende, herzfoermige Blaetter. Sehr edel.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Zantedeschia_aethiopica_-1.jpg/500px-Zantedeschia_aethiopica_-1.jpg',
|
||
categories: ['flowering', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Koenigs-Protea',
|
||
botanicalName: 'Protea cynaroides',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '10-25 °C' },
|
||
description: 'Die Koenigs-Protea ist die Nationalblume Suedafrikas mit riesigen, imposanten Bluetenkoepfen. Eine echte Besonderheit.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Protea_cynaroides_3.jpg/500px-Protea_cynaroides_3.jpg',
|
||
categories: ['flowering', 'sun', 'large'],
|
||
},
|
||
{
|
||
name: 'Heliconia',
|
||
botanicalName: 'Heliconia psittacorum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '20-30 °C' },
|
||
description: 'Die Heliconia hat leuchtend orangefarbe oder rote, bootsfoermige Hochblaetter. Eine exotische Tropenpflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Parrot_heliconia_%28Heliconia_psittacorum%29.jpg/500px-Parrot_heliconia_%28Heliconia_psittacorum%29.jpg',
|
||
categories: ['flowering', 'high_humidity', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Muschelingwer',
|
||
botanicalName: 'Alpinia zerumbet',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '20-30 °C' },
|
||
description: 'Der Muschelingwer hat lange, elegante Blaetter und haengende Bluetenrispen mit weiss-rosa Bluetchen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/200410_Alpinia_zerumbet_1.JPG/500px-200410_Alpinia_zerumbet_1.JPG',
|
||
categories: ['flowering', 'high_humidity', 'large'],
|
||
},
|
||
{
|
||
name: 'Kurkuma',
|
||
botanicalName: 'Curcuma longa',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '20-30 °C' },
|
||
description: 'Kurkuma ist eine tropische Gewuerzpflanze mit breiten Blaettern und leuchtend gelber Wurzel. Wichtiges Heilgewuerz.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Turmeric_inflorescence.jpg/500px-Turmeric_inflorescence.jpg',
|
||
categories: ['medicinal', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Ingwer',
|
||
botanicalName: 'Zingiber officinale',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '20-30 °C' },
|
||
description: 'Ingwer ist eine tropische Gewuerzpflanze mit aromatischen Knollen. Die Blaetter sind schilfartig.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Koeh-146-no_text.jpg/500px-Koeh-146-no_text.jpg',
|
||
categories: ['medicinal', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Schamkraut',
|
||
botanicalName: 'Mimosa pudica',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '20-28 °C' },
|
||
description: 'Das Schamkraut faltet seine Blaettchen blitzschnell zusammen, wenn man sie beruehrt. Ein faszinierendes Erlebnis.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Mimosa_pudica_in_September_month.jpg/500px-Mimosa_pudica_in_September_month.jpg',
|
||
categories: ['flowering', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Venusfliegenfalle',
|
||
botanicalName: 'Dionaea muscipula',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '15-30 °C' },
|
||
description: 'Die Venusfliegenfalle ist eine fleischfressende Pflanze mit klappfallartigen Blaettern. Faengt Insekten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Venus_Flytrap_showing_trigger_hairs.jpg/500px-Venus_Flytrap_showing_trigger_hairs.jpg',
|
||
categories: ['sun'],
|
||
},
|
||
{
|
||
name: 'Purpursonnentau',
|
||
botanicalName: 'Sarracenia purpurea',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Volles Sonnenlicht', temp: '5-25 °C' },
|
||
description: 'Der Purpursonnentau ist eine fleischfressende Kannenpflanze mit purpurroten Kannen. Faengt Insekten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Sarracenia_purpurea_Flowers.JPG/500px-Sarracenia_purpurea_Flowers.JPG',
|
||
categories: ['sun', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Kannenpflanze',
|
||
botanicalName: 'Nepenthes alata',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '20-30 °C' },
|
||
description: 'Die Kannenpflanze bildet grosse, gefuellte Kannen als Insektenfallen. Eine faszinierende, tropische Pflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/7/77/Nepenthes_alata_ASR_062007_mt_ambucao_luzon.jpg',
|
||
categories: ['high_humidity', 'hanging'],
|
||
},
|
||
{
|
||
name: 'Sonnentau',
|
||
botanicalName: 'Drosera capensis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '15-25 °C' },
|
||
description: 'Der Sonnentau faengt Insekten mit klebrigen Tropfen auf seinen Blaettern. Eine faszinierende fleischfressende Pflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Drosera_capensis_bend.JPG/500px-Drosera_capensis_bend.JPG',
|
||
categories: ['sun', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Fettkraut',
|
||
botanicalName: 'Pinguicula grandiflora',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '10-20 °C' },
|
||
description: 'Das Fettkraut faengt Insekten mit klebrigen Blaettern. Es bluet mit violetten, sporenartigen Blueten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Pinguicula_grandiflora_001.jpg/500px-Pinguicula_grandiflora_001.jpg',
|
||
categories: ['flowering', 'high_humidity'],
|
||
},
|
||
{
|
||
name: 'Wasserschlauch',
|
||
botanicalName: 'Utricularia gibba',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 2, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Der Wasserschlauch ist eine wasserbewohnende fleischfressende Pflanze mit Schlaeuchen als Insektenfallen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Utricularia_gibba_flower_01.jpg/500px-Utricularia_gibba_flower_01.jpg',
|
||
categories: ['high_humidity', 'sun'],
|
||
},
|
||
{
|
||
name: 'Heliamphora',
|
||
botanicalName: 'Heliamphora nutans',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles indirektes Licht', temp: '15-25 °C' },
|
||
description: 'Heliamphora ist eine urtuemliche Kannenpflanze aus den Tafelbergen Venezuelas. Sehr dekorativ und selten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Roraima_Heliamphora_nutans1.JPG/500px-Roraima_Heliamphora_nutans1.JPG',
|
||
categories: ['high_humidity'],
|
||
},
|
||
{
|
||
name: 'Kaffeestrauch',
|
||
botanicalName: 'Coffea arabica',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '18-25 °C' },
|
||
description: 'Der Kaffeestrauch hat glaenzende, dunkelgruene Blaetter und entwickelt rote Kaffeekirschen. Kann im Topf gehalten werden.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Coffee_Flowers.JPG/500px-Coffee_Flowers.JPG',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Teestrauch',
|
||
botanicalName: 'Camellia sinensis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '15-22 °C' },
|
||
description: 'Der Teestrauch ist die Pflanze, aus deren Blaettern Tee gewonnen wird. Er hat weisse Blueten und glaenzende Blaetter.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Csinensis.jpg/500px-Csinensis.jpg',
|
||
categories: ['flowering'],
|
||
},
|
||
{
|
||
name: 'Zitronenbaum',
|
||
botanicalName: 'Citrus limon',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '18-28 °C' },
|
||
description: 'Der Zitronenbaum ist ein kleiner, immergruener Baum mit weissen, duftenden Blueten und gelben Fruechten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/P1030323.JPG/500px-P1030323.JPG',
|
||
categories: ['sun', 'tree'],
|
||
},
|
||
{
|
||
name: 'Orangenbaum',
|
||
botanicalName: 'Citrus sinensis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '18-28 °C' },
|
||
description: 'Der Orangenbaum ist ein kleiner, immergruener Baum mit weissen Blueten und orangen Fruechten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/OrangeBloss_wb.jpg/500px-OrangeBloss_wb.jpg',
|
||
categories: ['sun', 'tree'],
|
||
},
|
||
{
|
||
name: 'Granatapfelbaum',
|
||
botanicalName: 'Punica granatum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '15-28 °C' },
|
||
description: 'Der Granatapfelbaum hat leuchtend rote Blueten und rote, essbare Fruechte mit rubinroten Kernen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Pomegranate_Juice_%282019%29.jpg/500px-Pomegranate_Juice_%282019%29.jpg',
|
||
categories: ['flowering', 'sun', 'tree'],
|
||
},
|
||
{
|
||
name: 'Guave',
|
||
botanicalName: 'Psidium guajava',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '18-30 °C' },
|
||
description: 'Die Guave ist ein tropischer Obstbaum mit gelblich-weissen Fruechten. Sie ist reich an Vitamin C.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Psidium_guajava_fruit.jpg/500px-Psidium_guajava_fruit.jpg',
|
||
categories: ['sun', 'tree'],
|
||
},
|
||
{
|
||
name: 'Papaya',
|
||
botanicalName: 'Carica papaya',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '20-35 °C' },
|
||
description: 'Die Papaya ist eine tropische Fruchtpflanze mit grossen, gelappten Blaettern und orangen Fruechten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Carica_papaya_-_K%C3%B6hler%E2%80%93s_Medizinal-Pflanzen-029.jpg/500px-Carica_papaya_-_K%C3%B6hler%E2%80%93s_Medizinal-Pflanzen-029.jpg',
|
||
categories: ['sun', 'large'],
|
||
},
|
||
{
|
||
name: 'Tomate',
|
||
botanicalName: 'Solanum lycopersicum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Volles Sonnenlicht', temp: '18-28 °C' },
|
||
description: 'Die Tomate ist eine beliebte Gemuese- und Balkonpflanze mit roten, saftigen Fruechten. Im Topf kultivierbar.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Tomato_je.jpg/500px-Tomato_je.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Chili',
|
||
botanicalName: 'Capsicum annuum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 4, light: 'Volles Sonnenlicht', temp: '20-30 °C' },
|
||
description: 'Chili ist eine beliebte Gemuese- und Zierpflanze mit leuchtenden, roten oder orangen Fruechten. Im Topf kultivierbar.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Capsicum_annuum_-_K%C3%B6hler%E2%80%93s_Medizinal-Pflanzen-027.jpg/500px-Capsicum_annuum_-_K%C3%B6hler%E2%80%93s_Medizinal-Pflanzen-027.jpg',
|
||
categories: ['easy', 'sun', 'medicinal'],
|
||
},
|
||
{
|
||
name: 'Aubergine',
|
||
botanicalName: 'Solanum melongena',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '20-30 °C' },
|
||
description: 'Die Aubergine ist eine Gemuesepflanze mit grossen, violetten Fruechten. Sie benoetigt viel Waerme und Sonne.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Solanum_melongena_24_08_2012_%281%29.JPG/500px-Solanum_melongena_24_08_2012_%281%29.JPG',
|
||
categories: ['sun', 'bright_light'],
|
||
},
|
||
{
|
||
name: 'Gurke',
|
||
botanicalName: 'Cucumis sativus',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Volles Sonnenlicht', temp: '18-28 °C' },
|
||
description: 'Die Gurke ist eine rankende Gemuesepflanze mit gruenen, erfrischenden Fruechten. Im Balkonkasten kultivierbar.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/ARS_cucumber.jpg/500px-ARS_cucumber.jpg',
|
||
categories: ['easy', 'sun'],
|
||
},
|
||
{
|
||
name: 'Salat',
|
||
botanicalName: 'Lactuca sativa',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles bis volles Licht', temp: '10-22 °C' },
|
||
description: 'Salat ist eine schnell wachsende Blattgemuesepflanze. Im Topf und Balkonkasten sehr gut zu kultivieren.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Iceberg_lettuce_in_SB.jpg/500px-Iceberg_lettuce_in_SB.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Spinat',
|
||
botanicalName: 'Spinacia oleracea',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles bis volles Licht', temp: '10-20 °C' },
|
||
description: 'Spinat ist ein naehrstoffreiches Blattgemuese mit dunkelgruenen Blaettern. Reich an Eisen und Vitaminen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Spinacia_oleracea_Spinazie_bloeiend.jpg/500px-Spinacia_oleracea_Spinazie_bloeiend.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Mangold',
|
||
botanicalName: 'Beta vulgaris',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles bis volles Licht', temp: '10-25 °C' },
|
||
description: 'Mangold ist ein farbenfrohes Blattgemuese mit bunten Stielen in Rot, Gelb, Orange und Weiss.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/f/ff/Beta_vulgaris_-_K%C3%B6hler%E2%80%93s_Medizinal-Pflanzen-167.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Radieschen',
|
||
botanicalName: 'Raphanus sativus',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 2, light: 'Helles bis volles Licht', temp: '10-22 °C' },
|
||
description: 'Das Radieschen ist ein schnellwachsendes Gemuese mit runden, roten Knollen. Es reift in nur 3-4 Wochen.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Radish_3371103037_4ab07db0bf_o.jpg/500px-Radish_3371103037_4ab07db0bf_o.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Karotte',
|
||
botanicalName: 'Daucus carota',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '15-22 °C' },
|
||
description: 'Die Karotte ist eine beliebte Gemuesepflanze mit orangefarbenen Wurzeln. Im tiefen Topf kultivierbar.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Daucus_carota_May_2008-1_edit.jpg/500px-Daucus_carota_May_2008-1_edit.jpg',
|
||
categories: ['easy'],
|
||
},
|
||
{
|
||
name: 'Erdbeere',
|
||
botanicalName: 'Fragaria ananassa',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 3, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Die Erdbeere ist ein beliebtes Obst fuer Balkon und Terrasse mit aromatischen, roten Fruechten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Garden_strawberry_%28Fragaria_%C3%97_ananassa%29_single2.jpg/500px-Garden_strawberry_%28Fragaria_%C3%97_ananassa%29_single2.jpg',
|
||
categories: ['easy', 'pet_friendly', 'sun'],
|
||
},
|
||
{
|
||
name: 'Kamille',
|
||
botanicalName: 'Chamomilla recutita',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Volles Sonnenlicht', temp: '15-25 °C' },
|
||
description: 'Die Kamille ist ein beliebtes Heilkraut mit kleinen, weiss-gelben Blueten. Das aetherische Oel wirkt beruhigend.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Matricaria_February_2008-1.jpg/500px-Matricaria_February_2008-1.jpg',
|
||
categories: ['easy', 'medicinal', 'sun'],
|
||
},
|
||
{
|
||
name: 'Zitronenmelisse',
|
||
botanicalName: 'Melissa officinalis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Die Zitronenmelisse ist ein zitronig duftendes Heilkraut. Sie beruhigt die Nerven und foerdert den Schlaf.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Lemon_balm_plant.jpg/500px-Lemon_balm_plant.jpg',
|
||
categories: ['easy', 'medicinal'],
|
||
},
|
||
{
|
||
name: 'Salbei',
|
||
botanicalName: 'Salvia officinalis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '10-25 °C' },
|
||
description: 'Salbei ist ein aromatisches Heilkraut mit silbrig-gruenen Blaettern. Er hat antibakterielle und entzuendungshemmende Wirkung.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Salvia_officinalis0.jpg/500px-Salvia_officinalis0.jpg',
|
||
categories: ['easy', 'medicinal', 'sun'],
|
||
},
|
||
{
|
||
name: 'Baldrian',
|
||
botanicalName: 'Valeriana officinalis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Baldrian ist ein bekanntes Heilkraut mit weissen bis roeslichen Blueten. Die Wurzeln werden zur Schlaffoerderung verwendet.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Valeriana_officinalis_inflorescence_-_Niitv%C3%A4lja.jpg/500px-Valeriana_officinalis_inflorescence_-_Niitv%C3%A4lja.jpg',
|
||
categories: ['medicinal', 'flowering'],
|
||
},
|
||
{
|
||
name: 'Johanniskraut',
|
||
botanicalName: 'Hypericum perforatum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '10-25 °C' },
|
||
description: 'Das Johanniskraut hat leuchtend gelbe Blueten und ist ein wichtiges Heilkraut gegen Depressionen und Stimmungstiefs.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/%28MHNT%29_Hypericum_perforatum_flower_and_buttons.jpg/500px-%28MHNT%29_Hypericum_perforatum_flower_and_buttons.jpg',
|
||
categories: ['medicinal', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Sonnenhut',
|
||
botanicalName: 'Echinacea purpurea',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '15-25 °C' },
|
||
description: 'Der Sonnenhut ist eine beliebte Heilpflanze mit grossen, pinkfarbenen Blueten. Er staerkt das Immunsystem.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Echinacea_purpurea_Grandview_Prairie.jpg/500px-Echinacea_purpurea_Grandview_Prairie.jpg',
|
||
categories: ['medicinal', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Arnika',
|
||
botanicalName: 'Arnica montana',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '10-20 °C' },
|
||
description: 'Arnika ist eine bekannte Heilpflanze aus den Alpen mit goldgelben Korbbluten. Sie wird fuer Muskeln und Gelenke verwendet.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Arnica_montana_-_K%C3%B6hler%E2%80%93s_Medizinal-Pflanzen-015.jpg/500px-Arnica_montana_-_K%C3%B6hler%E2%80%93s_Medizinal-Pflanzen-015.jpg',
|
||
categories: ['medicinal', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Schafgarbe',
|
||
botanicalName: 'Achillea millefolium',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '10-25 °C' },
|
||
description: 'Die Schafgarbe hat weisse oder rosafarbene Bluetenschirme und fein gefiederte Blaetter. Wichtige Heilpflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Achillea_millefolium_%28bright%29.jpg/500px-Achillea_millefolium_%28bright%29.jpg',
|
||
categories: ['medicinal', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Roter Fingerhut',
|
||
botanicalName: 'Digitalis purpurea',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '10-20 °C' },
|
||
description: 'Der Rote Fingerhut hat hohe Bluetenstaende mit roehrenfoermigen, gepunkteten Blueten in Rosa. Wichtige Arzneipflanze.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Digitalis_purpurea_LC0101.jpg/500px-Digitalis_purpurea_LC0101.jpg',
|
||
categories: ['medicinal', 'flowering'],
|
||
},
|
||
{
|
||
name: 'Wermut',
|
||
botanicalName: 'Artemisia absinthium',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Volles Sonnenlicht', temp: '10-25 °C' },
|
||
description: 'Wermut ist ein stark aromatisches Heilkraut mit silbrig-gruenen, tief eingeschnittenen Blaettern. Fuer Kraeuterlikoere.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Artemisia_absinthium_P1210748.jpg/500px-Artemisia_absinthium_P1210748.jpg',
|
||
categories: ['medicinal', 'sun'],
|
||
},
|
||
{
|
||
name: 'Grosse Brennessel',
|
||
botanicalName: 'Urtica dioica',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '10-25 °C' },
|
||
description: 'Die Grosse Brennessel ist eine Heilpflanze mit brennenden Haaren. Die Blaetter sind reich an Vitaminen und Mineralien.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Fen_nettle_%28Urtica_dioica_ssp._galeopsifolia%29_-_geograph.org.uk_-_5423125.jpg/500px-Fen_nettle_%28Urtica_dioica_ssp._galeopsifolia%29_-_geograph.org.uk_-_5423125.jpg',
|
||
categories: ['medicinal'],
|
||
},
|
||
{
|
||
name: 'Schwarzer Holunder',
|
||
botanicalName: 'Sambucus nigra',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '10-25 °C' },
|
||
description: 'Der Schwarze Holunder hat weisse Doldenbluten und schwarze Beeren. Die Fruechte werden fuer Sirup und Saft verwendet.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Sambucus_nigra_004.jpg/500px-Sambucus_nigra_004.jpg',
|
||
categories: ['medicinal', 'tree', 'flowering'],
|
||
},
|
||
{
|
||
name: 'Silber-Weide',
|
||
botanicalName: 'Salix alba',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles bis volles Licht', temp: '10-25 °C' },
|
||
description: 'Die Silber-Weide hat silbrig-glaenzende Blaetter. Weidenrinde enthält Salicylsaeure, die Grundlage von Aspirin.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Salix_alba_leaves.jpg/500px-Salix_alba_leaves.jpg',
|
||
categories: ['medicinal', 'tree', 'large'],
|
||
},
|
||
{
|
||
name: 'Hange-Birke',
|
||
botanicalName: 'Betula pendula',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '10-25 °C' },
|
||
description: 'Die Haenge-Birke hat charakteristisch weisse Rinde und haengende Zweige. Die Blaetter werden in der Heilkunde genutzt.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Betula_pendula_Finland.jpg/500px-Betula_pendula_Finland.jpg',
|
||
categories: ['medicinal', 'tree', 'large'],
|
||
},
|
||
{
|
||
name: 'Faecherahorn',
|
||
botanicalName: 'Acer palmatum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 5, light: 'Helles bis volles Licht', temp: '10-22 °C' },
|
||
description: 'Der Faecherahorn ist ein japanischer Zierahorn mit feingeschnittenen, faecherfoermigen Blaettern in Gruen oder Rot.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Acer_palmatum0.jpg/500px-Acer_palmatum0.jpg',
|
||
categories: ['tree'],
|
||
},
|
||
{
|
||
name: 'Bonsai-Feige',
|
||
botanicalName: 'Ficus retusa',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Helles indirektes Licht', temp: '16-24 °C' },
|
||
description: 'Die Bonsai-Feige ist eine klassische Bonsai-Art mit kleinen, elliptischen Blaettern. Sehr formbar.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Ficus_retusa_herbarium_sheet.jpg/500px-Ficus_retusa_herbarium_sheet.jpg',
|
||
categories: ['tree'],
|
||
},
|
||
{
|
||
name: 'Socotra-Wuestenrose',
|
||
botanicalName: 'Adenium socotranum',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 14, light: 'Volles Sonnenlicht', temp: '20-35 °C' },
|
||
description: 'Die Socotra-Wuestenrose ist eine seltene, endemische Art mit einem sehr dicken, knolligen Stamm und rosa Blueten.',
|
||
imageUri: 'wikimedia-search:Adenium socotranum',
|
||
categories: ['succulent', 'flowering', 'sun'],
|
||
},
|
||
{
|
||
name: 'Tempel-Baum',
|
||
botanicalName: 'Plumeria rubra',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '20-30 °C' },
|
||
description: 'Der Tempel-Baum hat intensiv duftende, sternfoermige Blueten in Weiss, Gelb oder Rosa. Klassische Tropenblume.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Champa_tree_with_pink_flowers_in_Islamabad%2C_Pakistan.jpg/500px-Champa_tree_with_pink_flowers_in_Islamabad%2C_Pakistan.jpg',
|
||
categories: ['flowering', 'sun', 'tree'],
|
||
},
|
||
{
|
||
name: 'Zaubernuss',
|
||
botanicalName: 'Hamamelis mollis',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 10, light: 'Helles bis volles Licht', temp: '10-20 °C' },
|
||
description: 'Die Zaubernuss bluet im Winter mit fadendunnen, gelben Bluetenkranzeln, die bis -10 Grad standhalten.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Hamamelis_mollis0.jpg/500px-Hamamelis_mollis0.jpg',
|
||
categories: ['flowering', 'medicinal'],
|
||
},
|
||
{
|
||
name: 'Oleander',
|
||
botanicalName: 'Nerium oleander',
|
||
confidence: 1.0,
|
||
careInfo: { waterIntervalDays: 7, light: 'Volles Sonnenlicht', temp: '15-28 °C' },
|
||
description: 'Der Oleander ist ein mediteraner Strauch mit leuchtend roten, rosa oder weissen Blueten. Sehr hitzetolerant.',
|
||
imageUri: 'https://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/Nerium_oleander_flowers_leaves.jpg/500px-Nerium_oleander_flowers_leaves.jpg',
|
||
categories: ['flowering', 'sun', 'bright_light'],
|
||
},
|
||
// User import: Kraeuter
|
||
createHerbEntry('Lorbeer', 'Laurus nobilis'),
|
||
createHerbEntry('Estragon', 'Artemisia dracunculus'),
|
||
createHerbEntry('Bohnenkraut', 'Satureja hortensis'),
|
||
createHerbEntry('Majoran', 'Origanum majorana'),
|
||
createHerbEntry('Kerbel', 'Anthriscus cerefolium'),
|
||
createHerbEntry('Liebstoeckel', 'Levisticum officinale'),
|
||
createHerbEntry('Zitronengras', 'Cymbopogon citratus'),
|
||
createHerbEntry('Zitronenverbene', 'Aloysia citrodora'),
|
||
createHerbEntry('Borretsch', 'Borago officinalis'),
|
||
createHerbEntry('Sauerampfer', 'Rumex acetosa'),
|
||
createHerbEntry('Stevia', 'Stevia rebaudiana'),
|
||
createHerbEntry('Katzenminze', 'Nepeta cataria'),
|
||
createHerbEntry('Currykraut', 'Helichrysum italicum'),
|
||
createHerbEntry('Shiso', 'Perilla frutescens'),
|
||
createHerbEntry('Schnittknoblauch', 'Allium tuberosum'),
|
||
createHerbEntry('Ysop', 'Hyssopus officinalis'),
|
||
createHerbEntry('Wasabi', 'Eutrema japonicum', {
|
||
careInfo: { waterIntervalDays: 4, light: 'Helles indirektes Licht', temp: '8-20 C' },
|
||
categories: ['bright_light', 'high_humidity'],
|
||
description: 'Wasabi ist ein seltenes Wuerzkraut, das gleichmaessige Feuchte und eher kuehle Bedingungen bevorzugt.',
|
||
}),
|
||
createHerbPinnedEntry('Roemische Kamille', 'Chamaemelum nobile', 'https://upload.wikimedia.org/wikipedia/commons/f/f2/Chamaemelum_nobile_kz02.jpg', {
|
||
categories: ['easy', 'sun', 'medicinal'],
|
||
}),
|
||
createHerbEntry('Koriander', 'Coriandrum sativum'),
|
||
createHerbEntry('Dill', 'Anethum graveolens'),
|
||
|
||
// User import: Blumen
|
||
createFlowerEntry('Sonnenblume', 'Helianthus annuus'),
|
||
createFlowerEntry('Rose', 'Rosa x hybrida', {
|
||
categories: ['flowering', 'sun', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Pfingstrose', 'Paeonia lactiflora'),
|
||
createFlowerEntry('Bart-Iris', 'Iris germanica'),
|
||
createFlowerEntry('Gaensebluemchen', 'Bellis perennis'),
|
||
createFlowerEntry('Nelke', 'Dianthus caryophyllus'),
|
||
createFlowerEntry('Loewenmaeulchen', 'Antirrhinum majus'),
|
||
createFlowerEntry('Hortensie', 'Hydrangea macrophylla', {
|
||
categories: ['flowering', 'bright_light'],
|
||
careInfo: { waterIntervalDays: 4, light: 'Helles bis halbschattiges Licht', temp: '8-24 C' },
|
||
}),
|
||
createFlowerEntry('Flieder', 'Syringa vulgaris', {
|
||
categories: ['flowering', 'tree', 'sun'],
|
||
}),
|
||
createFlowerEntry('Kosmee', 'Cosmos bipinnatus'),
|
||
createFlowerEntry('Kapuzinerkresse', 'Tropaeolum majus'),
|
||
createFlowerEntry('Buntnessel', 'Plectranthus scutellarioides', {
|
||
categories: ['patterned', 'bright_light'],
|
||
description: 'Buntnessel ist eine farbstarke Zierpflanze, die vor allem fuer ihr dekoratives Laub beliebt ist.',
|
||
}),
|
||
createFlowerEntry('Rittersporn', 'Delphinium elatum'),
|
||
createFlowerEntry('Lupine', 'Lupinus polyphyllus'),
|
||
createFlowerEntry('Stockrose', 'Alcea rosea'),
|
||
createFlowerEntry('Prunkwinde', 'Ipomoea purpurea'),
|
||
createFlowerEntry('Clematis', 'Clematis viticella', {
|
||
categories: ['flowering', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Duftwicke', 'Lathyrus odoratus'),
|
||
createFlowerEntry('Hasengloeckchen', 'Hyacinthoides non-scripta'),
|
||
createFlowerEntry('Maigloeckchen', 'Convallaria majalis', {
|
||
categories: ['flowering', 'medicinal'],
|
||
}),
|
||
createFlowerEntry('Gladiole', 'Gladiolus hortulanus'),
|
||
createFlowerEntry('Ranunkel', 'Ranunculus asiaticus'),
|
||
createFlowerEntry('Anemone', 'Anemone coronaria'),
|
||
createFlowerEntry('Eisenkraut', 'Verbena bonariensis'),
|
||
createFlowerEntry('Flammenblume', 'Phlox paniculata'),
|
||
createFlowerEntry('Herbstaster', 'Symphyotrichum novi-belgii'),
|
||
createFlowerEntry('Rudbeckie', 'Rudbeckia hirta'),
|
||
createFlowerEntry('Feuersalbei', 'Salvia splendens'),
|
||
createFlowerEntry('Freesie', 'Freesia refracta'),
|
||
createFlowerEntry('Rhododendron', 'Rhododendron catawbiense', {
|
||
categories: ['flowering', 'tree', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Geissblatt', 'Lonicera japonica', {
|
||
categories: ['flowering', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Arabischer Jasmin', 'Jasminum sambac', {
|
||
categories: ['flowering', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Margerite', 'Leucanthemum vulgare'),
|
||
createFlowerEntry('Stehende Geranie', 'Pelargonium zonale'),
|
||
createFlowerEntry('Eisbegonie', 'Begonia semperflorens-cultorum', {
|
||
categories: ['flowering', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Gartenbalsamine', 'Impatiens balsamina', {
|
||
categories: ['flowering', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Vergissmeinnicht', 'Myosotis sylvatica'),
|
||
createFlowerEntry('Seidenpflanze', 'Asclepias tuberosa'),
|
||
createFlowerEntry('Indianernessel', 'Monarda didyma'),
|
||
createFlowerEntry('Bechermalve', 'Lavatera trimestris'),
|
||
createFlowerEntry('Maedchenauge', 'Coreopsis tinctoria'),
|
||
createFlowerEntry('Taglilie', 'Hemerocallis fulva'),
|
||
createFlowerEntry('Lenzrose', 'Helleborus orientalis', {
|
||
categories: ['flowering'],
|
||
}),
|
||
createFlowerEntry('Trompetenwinde', 'Campsis radicans', {
|
||
categories: ['flowering', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Mohn', 'Papaver rhoeas'),
|
||
createFlowerEntry('Kalifornischer Mohn', 'Eschscholzia californica'),
|
||
createFlowerEntry('Ringelblume', 'Calendula officinalis', {
|
||
categories: ['flowering', 'sun', 'medicinal'],
|
||
}),
|
||
createFlowerEntry('Kornblume', 'Centaurea cyanus'),
|
||
createFlowerEntry('Bartnelke', 'Dianthus barbatus'),
|
||
createFlowerEntry('Mittagsgold', 'Gazania rigens'),
|
||
createFlowerEntry('Heliotrop', 'Heliotropium arborescens'),
|
||
createFlowerEntry('Koenigskerze', 'Verbascum thapsus', {
|
||
categories: ['flowering', 'sun', 'medicinal'],
|
||
}),
|
||
createFlowerEntry('Ziertabak', 'Nicotiana alata'),
|
||
createFlowerEntry('Fuchsschwanz', 'Amaranthus caudatus'),
|
||
createFlowerEntry('Mehlsalbei', 'Salvia farinacea'),
|
||
createFlowerEntry('Kokardenblume', 'Gaillardia aristata'),
|
||
createFlowerEntry('Traenendes Herz', 'Lamprocapnos spectabilis', {
|
||
categories: ['flowering', 'bright_light'],
|
||
}),
|
||
createFlowerEntry('Hornveilchen', 'Viola cornuta'),
|
||
createFlowerEntry('Nemesie', 'Nemesia strumosa'),
|
||
createFlowerEntry('Kapmargerite', 'Osteospermum ecklonis'),
|
||
createFlowerEntry('Shasta-Margerite', 'Leucanthemum x superbum'),
|
||
|
||
// User import: Baeume und Straeucher
|
||
createTreeEntry('Buchsbaum', 'Buxus sempervirens', {
|
||
categories: ['tree', 'sun'],
|
||
}),
|
||
createTreeEntry('Stechpalme', 'Ilex aquifolium', {
|
||
categories: ['tree', 'sun'],
|
||
}),
|
||
createTreeEntry('Magnolie', 'Magnolia grandiflora', {
|
||
categories: ['flowering', 'tree', 'large'],
|
||
}),
|
||
createTreeEntry('Eiche', 'Quercus robur'),
|
||
createTreeEntry('Kiefer', 'Pinus sylvestris'),
|
||
createTreeEntry('Fichte', 'Picea abies'),
|
||
createTreeEntry('Zeder', 'Cedrus libani'),
|
||
createTreeEntry('Zypresse', 'Cupressus sempervirens'),
|
||
createTreeEntry('Eukalyptus', 'Eucalyptus globulus', {
|
||
categories: ['tree', 'sun', 'medicinal'],
|
||
}),
|
||
createTreeEntry('Jacaranda', 'Jacaranda mimosifolia', {
|
||
categories: ['flowering', 'tree', 'large'],
|
||
}),
|
||
createTreeEntry('Spitzahorn', 'Acer platanoides'),
|
||
createTreeEntry('Eberesche', 'Sorbus aucuparia'),
|
||
createTreeEntry('Robinie', 'Robinia pseudoacacia'),
|
||
createTreeEntry('Flammenbaum', 'Delonix regia', {
|
||
categories: ['flowering', 'tree', 'large'],
|
||
}),
|
||
createTreeEntry('Ginkgo', 'Ginkgo biloba', {
|
||
categories: ['tree', 'sun', 'medicinal'],
|
||
}),
|
||
createTreeEntry('Trompetenbaum', 'Catalpa bignonioides'),
|
||
createTreeEntry('Kirschlorbeer', 'Prunus laurocerasus', {
|
||
categories: ['tree', 'sun'],
|
||
}),
|
||
createTreeEntry('Forsythie', 'Forsythia x intermedia', {
|
||
categories: ['flowering', 'tree', 'sun'],
|
||
}),
|
||
createTreeEntry('Gartenhibiskus', 'Hibiscus syriacus', {
|
||
categories: ['flowering', 'tree', 'sun'],
|
||
}),
|
||
createTreeEntry('Weigelie', 'Weigela florida', {
|
||
categories: ['flowering', 'tree', 'sun'],
|
||
}),
|
||
createTreeEntry('Spierstrauch', 'Spiraea japonica', {
|
||
categories: ['flowering', 'tree', 'sun'],
|
||
}),
|
||
createTreeEntry('Schmetterlingsflieder', 'Buddleja davidii', {
|
||
categories: ['flowering', 'tree', 'sun'],
|
||
}),
|
||
|
||
// User import: Zimmerpflanzen
|
||
createHouseplantSearchEntry('Kroton', 'Codiaeum variegatum', 'Garden croton', {
|
||
categories: ['patterned', 'bright_light'],
|
||
}),
|
||
createHouseplantEntry('Alocasia zebrina', 'Alocasia zebrina', {
|
||
careInfo: BULK_HUMID_HOUSEPLANT_CARE,
|
||
categories: ['bright_light', 'high_humidity'],
|
||
}),
|
||
createHouseplantEntry('Nervenpflanze', 'Fittonia albivenis', {
|
||
careInfo: BULK_HUMID_HOUSEPLANT_CARE,
|
||
categories: ['patterned', 'high_humidity'],
|
||
}),
|
||
createHouseplantEntry('Punktblatt', 'Hypoestes phyllostachya', {
|
||
categories: ['patterned', 'bright_light'],
|
||
}),
|
||
createHouseplantEntry('Aluminium-Pflanze', 'Pilea cadierei', {
|
||
categories: ['patterned', 'easy', 'pet_friendly'],
|
||
}),
|
||
createHouseplantEntry('Wassermelonen-Peperomie', 'Peperomia argyreia', {
|
||
categories: ['patterned', 'pet_friendly'],
|
||
}),
|
||
createHouseplantEntry('Raindrop-Peperomie', 'Peperomia polybotrya', {
|
||
categories: ['easy', 'pet_friendly'],
|
||
}),
|
||
createHouseplantEntry('Glueckskastanie', 'Pachira aquatica', {
|
||
categories: ['tree', 'bright_light', 'easy'],
|
||
}),
|
||
createHouseplantEntry('Norfolk-Tanne', 'Araucaria heterophylla', {
|
||
categories: ['tree', 'bright_light'],
|
||
}),
|
||
createHouseplantEntry('Samt-Anthurie', 'Anthurium clarinervium', {
|
||
careInfo: BULK_HUMID_HOUSEPLANT_CARE,
|
||
categories: ['patterned', 'high_humidity'],
|
||
}),
|
||
createHouseplantEntry('Kristall-Anthurie', 'Anthurium crystallinum', {
|
||
careInfo: BULK_HUMID_HOUSEPLANT_CARE,
|
||
categories: ['patterned', 'high_humidity'],
|
||
}),
|
||
createHouseplantEntry('Falsche Aralie', 'Schefflera elegantissima', {
|
||
categories: ['tree', 'bright_light'],
|
||
}),
|
||
createHouseplantEntry('String of Bananas', 'Curio radicans', {
|
||
careInfo: BULK_SUCCULENT_HANGING_CARE,
|
||
categories: ['hanging', 'succulent', 'sun'],
|
||
}),
|
||
createHouseplantPinnedEntry('String of Dolphins', 'Curio x peregrinus', 'https://upload.wikimedia.org/wikipedia/commons/0/00/Dolphinplant.jpg', {
|
||
careInfo: BULK_SUCCULENT_HANGING_CARE,
|
||
categories: ['hanging', 'succulent', 'sun'],
|
||
}),
|
||
createHouseplantEntry('Bubikopf', 'Soleirolia soleirolii', {
|
||
careInfo: { waterIntervalDays: 4, light: 'Helles indirektes Licht', temp: '15-24 C' },
|
||
categories: ['pet_friendly', 'high_humidity'],
|
||
}),
|
||
createHouseplantEntry('Palmfarn', 'Cycas revoluta', {
|
||
careInfo: { waterIntervalDays: 10, light: 'Helles bis volles Licht', temp: '18-30 C' },
|
||
categories: ['tree', 'sun', 'large'],
|
||
}),
|
||
createHouseplantEntry('Calathea lancifolia', 'Goeppertia insignis', {
|
||
careInfo: BULK_HUMID_HOUSEPLANT_CARE,
|
||
categories: ['patterned', 'high_humidity', 'pet_friendly'],
|
||
}),
|
||
createHouseplantEntry('Calathea ornata', 'Goeppertia ornata', {
|
||
careInfo: BULK_HUMID_HOUSEPLANT_CARE,
|
||
categories: ['patterned', 'high_humidity', 'pet_friendly'],
|
||
}),
|
||
createHouseplantPinnedEntry('Philodendron Brasil', 'Philodendron hederaceum Brasil', 'https://upload.wikimedia.org/wikipedia/commons/0/0b/Philodendron_hederaceum_hederaceum_Brasil_0zz.jpg', {
|
||
categories: ['easy', 'hanging', 'low_light'],
|
||
}),
|
||
createHouseplantPinnedEntry('Philodendron Pink Princess', 'Philodendron erubescens Pink Princess', 'https://upload.wikimedia.org/wikipedia/commons/8/89/Philodendron_Pink_Princess.jpg', {
|
||
categories: ['bright_light', 'patterned'],
|
||
}),
|
||
createHouseplantEntry('Philodendron Xanadu', 'Thaumatophyllum xanadu', {
|
||
categories: ['bright_light'],
|
||
}),
|
||
createHouseplantPinnedEntry('Kaffeepflanze arabica nana', 'Coffea arabica Nana', 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Starr-121108-1098-Coffea_arabica-Philippine_dwarf_habit_with_Forest_and_Angela-Pali_o_Waipio-Maui_%2825102146741%29.jpg/1280px-Starr-121108-1098-Coffea_arabica-Philippine_dwarf_habit_with_Forest_and_Angela-Pali_o_Waipio-Maui_%2825102146741%29.jpg', {
|
||
categories: ['bright_light'],
|
||
}),
|
||
createHouseplantEntry('Yucca aloifolia', 'Yucca aloifolia', {
|
||
careInfo: { waterIntervalDays: 10, light: 'Volles Sonnenlicht', temp: '18-30 C' },
|
||
categories: ['tree', 'sun', 'easy'],
|
||
}),
|
||
createHouseplantEntry('Ficus microcarpa', 'Ficus microcarpa', {
|
||
categories: ['tree', 'bright_light', 'easy'],
|
||
}),
|
||
createHouseplantEntry('Ficus altissima', 'Ficus altissima', {
|
||
categories: ['tree', 'bright_light'],
|
||
}),
|
||
];
|