Skip to content

jneidel/animal-names

Repository files navigation

Animal names

Dataset of 100 common animal names

Data

animals-common

Handpicked dataset of animals you will know (western perspective).

See: txt, json

animals-unfiltered

Unfiltered list of animal names that include:

  • country name prefixed animals (like African ..)
  • adjective prefixed animals (like Red .., Bush ..)
  • some latin names

See: txt, json

Source

The orignal data source is: JustOscarJ1/animals

See also

More datasets:

Transforms

These are the transfomations I applied to the data (along with some manual picking out.)

To get animals-unfiltered.txt from the source file:

<SOURCE sed -E "s|,.+$||; s|[^-]+-\S||" | sort | uniq | grep -Fv unidentified | grep -Fv . | grep -ve " .*us$" -e " .*is$" -e "^[a-z]" -e "Western" -e "Southern" -e "Northern" -e "Eastern" -e "^$"

From txt to json:

<FILE.txt awk -F@ 'BEGIN { print "[" } { print "  \""$1"\"," }' | sed '$ s/,$/\n]/'

Releases

No releases published

Packages

No packages published