increase list of wildlife

This commit is contained in:
zramsay 2025-03-14 13:54:45 -04:00
parent c86c2cd965
commit 77ec24e763

View File

@ -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'
]