Pet Cats UK
Characteristics such as age, sex, neuter status, hunting habits & GPS timestamps
@kaggle.joebeachcapital_pet_cats_uk
Characteristics such as age, sex, neuter status, hunting habits & GPS timestamps
@kaggle.joebeachcapital_pet_cats_uk
Between 2013 and 2017, Roland Kays et al. convinced hundreds of volunteers in the U.S., U.K., Australia, and New Zealand to strap GPS sensors on their pet cats. The aforelinked datasets include each cat's characteristics (such as age, sex, neuter status, hunting habits) and time-stamped GPS pings.
When using this dataset, please cite the original article.
Kays R, Dunn RR, Parsons AW, Mcdonald B, Perkins T, Powers S, Shell L, McDonald JL, Cole H, Kikillus H, Woods L, Tindle H, Roetman P (2020) The small home ranges and large local ecological impacts of pet cats. Animal Conservation. doi:10.1111/acv.12563
Additionally, please cite the Movebank data package:
McDonald JL, Cole H (2020) Data from: The small home ranges and large local ecological impacts of pet cats [United Kingdom]. Movebank Data Repository. doi:10.5441/001/1.pf315732
CREATE TABLE cats_uk (
"tag_id" VARCHAR,
"event_id" BIGINT,
"visible" BOOLEAN,
"timestamp" TIMESTAMP,
"location_long" DOUBLE,
"location_lat" DOUBLE,
"ground_speed" BIGINT,
"height_above_ellipsoid" DOUBLE,
"algorithm_marked_outlier" BOOLEAN,
"manually_marked_outlier" BOOLEAN,
"study_name" VARCHAR
);CREATE TABLE cats_uk_reference (
"tag_id" VARCHAR,
"animal_id" VARCHAR,
"animal_taxon" VARCHAR,
"deploy_on_date" TIMESTAMP,
"deploy_off_date" TIMESTAMP,
"hunt" VARCHAR,
"prey_p_month" DOUBLE,
"animal_reproductive_condition" VARCHAR,
"animal_sex" VARCHAR,
"hrs_indoors" DOUBLE,
"n_cats" BIGINT,
"food_dry" BOOLEAN,
"food_wet" BOOLEAN,
"food_other" VARCHAR,
"study_site" VARCHAR,
"age_years" DOUBLE
);Anyone who has the link will be able to view this.