Data Breeds

Breed

Last imported 10:30AM UTC on Tuesday, March 26, 2013. See log

Cat, dog, and horse breeds (e.g. Shepadoodle).

We assemble a list of cat, dog, and horse breeds and average weights from a variety of sources.

Citing this data

To cite this data, reference Brighter Planet, "Breeds," <http://data.brighterplanet.com/breeds>, retrieved 2013-05-24 07:41:11 UTC.

Download

Total: 338 records.

Random data sample

Sample: 5 records.

name species name weight weight units
Abyssinian cat 4.08233 kilograms
Affenpinscher dog 3.62874 kilograms
Afghan Hound dog 24.9476 kilograms
Airedale Terrier dog 20.4117 kilograms
Akbash dog 47.6272 kilograms

Import steps

Click a step for more detail.

  1. Import Brighter Planet's list of cat and dog breeds

    1. Fetch data from static.brighterplanet.com.
    2. Store
      • name
      • species_name
      • weight
      .

Table structure

CREATE TABLE breeds
  (
     name         CHARACTER VARYING(255) NOT NULL PRIMARY KEY,
     species_name CHARACTER VARYING(255),
     weight       FLOAT,
     weight_units CHARACTER VARYING(255)
  );