From 77ec24e7638c6270036988c699f04009474d219c Mon Sep 17 00:00:00 2001 From: zramsay Date: Fri, 14 Mar 2025 13:54:45 -0400 Subject: [PATCH] increase list of wildlife --- src/services/constants.ts | 53 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/src/services/constants.ts b/src/services/constants.ts index 31ca836..b46c952 100644 --- a/src/services/constants.ts +++ b/src/services/constants.ts @@ -1,3 +1,54 @@ // src/services/constants.ts -export const ANIMAL_LABELS = ['animal', 'wildlife', 'mammal', 'bird', 'reptile', 'amphibian', 'nature', 'cat', 'mouse', 'insect', 'vertebrate', 'dog', 'rodent'] +export const ANIMAL_LABELS = [ + // General categories + 'animal', 'wildlife', 'mammal', 'vertebrate', 'nature', + + // Mammals + 'cat', 'dog', 'lion', 'tiger', 'bear', 'wolf', 'fox', 'deer', 'moose', + 'elk', 'caribou', 'rabbit', 'hare', 'squirrel', 'chipmunk', 'mouse', + 'rat', 'beaver', 'otter', 'mink', 'weasel', 'badger', 'skunk', 'raccoon', + 'opossum', 'armadillo', 'bobcat', 'lynx', 'cougar', 'panther', 'leopard', + 'cheetah', 'jaguar', 'elephant', 'rhinoceros', 'hippopotamus', 'giraffe', + 'zebra', 'horse', 'donkey', 'mule', 'cattle', 'cow', 'bull', 'bison', + 'buffalo', 'antelope', 'gazelle', 'sheep', 'goat', 'pig', 'boar', 'camel', + 'llama', 'alpaca', 'monkey', 'ape', 'gorilla', 'chimpanzee', 'orangutan', + 'baboon', 'lemur', 'bat', 'whale', 'dolphin', 'porpoise', 'seal', 'sea lion', + 'walrus', 'manatee', 'rodent', 'hedgehog', 'kangaroo', 'koala', 'wombat', + 'platypus', 'panda', + + // Birds + 'bird', 'eagle', 'hawk', 'falcon', 'owl', 'vulture', 'condor', 'crow', + 'raven', 'magpie', 'jay', 'sparrow', 'finch', 'cardinal', 'bluebird', + 'robin', 'thrush', 'warbler', 'wren', 'swallow', 'martin', 'swift', + 'hummingbird', 'woodpecker', 'flicker', 'kingfisher', 'pelican', 'heron', + 'egret', 'stork', 'crane', 'ibis', 'flamingo', 'duck', 'goose', 'swan', + 'loon', 'grebe', 'penguin', 'albatross', 'petrel', 'gull', 'tern', + 'pigeon', 'dove', 'parrot', 'macaw', 'cockatoo', 'parakeet', 'quail', + 'pheasant', 'grouse', 'turkey', 'chicken', 'ostrich', 'emu', 'kiwi', + + // Reptiles + 'reptile', 'snake', 'python', 'cobra', 'viper', 'rattlesnake', 'boa', + 'lizard', 'gecko', 'iguana', 'chameleon', 'skink', 'monitor', 'turtle', + 'tortoise', 'terrapin', 'crocodile', 'alligator', 'caiman', 'tuatara', + + // Amphibians + 'amphibian', 'frog', 'toad', 'treefrog', 'bullfrog', 'salamander', 'newt', + 'axolotl', + + // Fish + 'fish', 'salmon', 'trout', 'bass', 'perch', 'pike', 'catfish', 'carp', + 'goldfish', 'tuna', 'mackerel', 'cod', 'haddock', 'halibut', 'flounder', + 'sole', 'sturgeon', 'eel', 'shark', 'ray', 'stingray', 'manta ray', + 'angelfish', 'clownfish', 'guppy', 'swordfish', 'marlin', 'sailfish', + 'seahorse', 'piranha', + + // Invertebrates + 'insect', 'butterfly', 'moth', 'bee', 'wasp', 'hornet', 'ant', 'beetle', + 'ladybug', 'firefly', 'grasshopper', 'cricket', 'locust', 'cicada', + 'dragonfly', 'damselfly', 'fly', 'mosquito', 'flea', 'lice', 'tick', + 'mite', 'spider', 'scorpion', 'centipede', 'millipede', 'crab', 'lobster', + 'shrimp', 'crayfish', 'barnacle', 'snail', 'slug', 'mussel', 'clam', + 'oyster', 'squid', 'octopus', 'nautilus', 'jellyfish', 'starfish', + 'sea urchin', 'sea cucumber', 'coral', 'worm', 'leech', 'earthworm' +]