Skip to content

Latest commit

 

History

History
707 lines (462 loc) · 664 KB

Rmarkdown-script.md

File metadata and controls

707 lines (462 loc) · 664 KB
title subtitle author date output editor_options
R Programming End to End Using Tidyverse Sample Exam
[for Data Science Nigeria AI Bootcamp 2020](https://www.datasciencenigeria.org){target="_blank"}
Tuesday, October 20, 2020
html_document
theme highlight toc toc_depth toc_float keep_md code_download code_folding df_print
flatly
espresso
true
3
true
true
true
show
paged
chunk_output_type
console


Exam Instructions

The sample exam can be found here{target="_blank"}.

  • This exam covers material from R for Data Science (r4ds) to test your knowledge of the tidyverse. You may find the solution provided here for r4ds useful.

  • You must use tidy-style operations (e.g., the pipe operator %>%) unless instructed otherwise.

  • This file contains several deliberate errors. Please correct them as you go and point out your changes to your examiner.

  • You do not need to narrate your work.

  • You must complete the exam within 90 minutes.

  • You may use any books or digital resources you want during this examination, but you may not communicate with any person other than your examiner.

  • You are required to use the RStudio IDE for this exam. You may use either the desktop edition or rstudio.cloud as you prefer.

Load packages

This program will download from the internet and install the latest version of the tidyverse set of packages if they are not already installed in your R environment. It is necessary to have internet connection to download those packages.

if (!require(install.load)) {
  install.packages("install.load")
}

install.load::install_load("tidyverse")

# Klippy to copy chunk of codes to the clipboard

klippy::klippy(c("r", "python"), position = c("top", "right"), color = "darkred")
<script>
  addClassKlippyTo("pre.r, pre.python");
  addKlippy('right', 'top', '#8B0000', '1', 'Copy code', 'Copied!');
</script>
# Set default ggplot2 theme to theme_bw()

theme_set(theme_bw())

To see the list of all packages in the tidyverse use:

tidyverse_packages()
 [1] "broom"         "cli"           "crayon"        "dbplyr"       
 [5] "dplyr"         "dtplyr"        "forcats"       "googledrive"  
 [9] "googlesheets4" "ggplot2"       "haven"         "hms"          
[13] "httr"          "jsonlite"      "lubridate"     "magrittr"     
[17] "modelr"        "pillar"        "purrr"         "readr"        
[21] "readxl"        "reprex"        "rlang"         "rstudioapi"   
[25] "rvest"         "stringr"       "tibble"        "tidyr"        
[29] "xml2"          "tidyverse"    

Basic Operations

Question 1 {.tabset .tabset-fade .tabset-pills}

Question

Read the file person.csv and store the result in a tibble called person.

Solution

person <- read_csv("https://education.rstudio.com/blog/2020/08/more-example-exams/person.csv")

person
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["person_id"],"name":[1],"type":["chr"],"align":["left"]},{"label":["personal_name"],"name":[2],"type":["chr"],"align":["left"]},{"label":["family_name"],"name":[3],"type":["chr"],"align":["left"]}],"data":[{"1":"dyer","2":"William","3":"Dyer"},{"1":"pb","2":"Frank","3":"Pabodie"},{"1":"lake","2":"Anderson","3":"Lake"},{"1":"roe","2":"Valentina","3":"Roerich"},{"1":"danforth","2":"Frank","3":"Danforth"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>
The function `display_data()` with the help of `vtable` package output a descriptive variable table as an HTML file that can be viewed continuously while working with data and the first 6 rows of the data is also shown on the console. This is helpful when working with the data, otherwise we will be typing `glimpse(person)` or `View(person`) to view the data every time.
# Display the structure of the dataframe

display_data <- function(df, title = "Data structure") {
  require(vtable)

  if (is.data.frame(df) == FALSE) {
    stop("Display_data() only works for dataframe object")
  } else {
    df %>%
      mutate(across(where(is.character), as.factor)) %>%
      vtable(factor.limit = 10, data.title = title)
    cat("Returns the First 6 rows\n")
    print(head(df))
  }
}

Question 2 {.tabset .tabset-fade .tabset-pills}

Question

Create a tibble containing only family and personal names, in that order. You do not need to assign this tibble or any others to variables unless explicitly asked to do so. However, as noted in the introduction, you must use the pipe operator %>% and code that follows the tidyverse style guide.

Solution

person %>% select(family_name, personal_name)
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["family_name"],"name":[1],"type":["chr"],"align":["left"]},{"label":["personal_name"],"name":[2],"type":["chr"],"align":["left"]}],"data":[{"1":"Dyer","2":"William"},{"1":"Pabodie","2":"Frank"},{"1":"Lake","2":"Anderson"},{"1":"Roerich","2":"Valentina"},{"1":"Danforth","2":"Frank"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 3 {.tabset .tabset-fade .tabset-pills}

Question

Create a new tibble containing only the rows in which family names come before the letter M. Your solution should work for tables with more rows than the example, i.e., you cannot rely on row numbers or select specific names.

Solution

person %>% arrange(str_starts(family_name, pattern = "M", negate = TRUE))
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["person_id"],"name":[1],"type":["chr"],"align":["left"]},{"label":["personal_name"],"name":[2],"type":["chr"],"align":["left"]},{"label":["family_name"],"name":[3],"type":["chr"],"align":["left"]}],"data":[{"1":"dyer","2":"William","3":"Dyer"},{"1":"pb","2":"Frank","3":"Pabodie"},{"1":"lake","2":"Anderson","3":"Lake"},{"1":"roe","2":"Valentina","3":"Roerich"},{"1":"danforth","2":"Frank","3":"Danforth"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 4 {.tabset .tabset-fade .tabset-pills}

Question

Display all the rows in person sorted by family name length with the longest name first.

Solution

person %>% arrange(desc(str_length(family_name)))
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["person_id"],"name":[1],"type":["chr"],"align":["left"]},{"label":["personal_name"],"name":[2],"type":["chr"],"align":["left"]},{"label":["family_name"],"name":[3],"type":["chr"],"align":["left"]}],"data":[{"1":"danforth","2":"Frank","3":"Danforth"},{"1":"pb","2":"Frank","3":"Pabodie"},{"1":"roe","2":"Valentina","3":"Roerich"},{"1":"dyer","2":"William","3":"Dyer"},{"1":"lake","2":"Anderson","3":"Lake"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Cleaning and Counting

Question 1 {.tabset .tabset-fade .tabset-pills}

Question

Read the file measurements.csv to create a tibble called measurements. (The strings "rad", "sal", and "temp" in the quantity column stand for “radiation”, “salinity”, and “temperature” respectively.)

Solution

measurements <- read_csv("https://education.rstudio.com/blog/2020/08/more-example-exams/measurements.csv")

measurements
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["visit_id"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["visitor"],"name":[2],"type":["chr"],"align":["left"]},{"label":["quantity"],"name":[3],"type":["chr"],"align":["left"]},{"label":["reading"],"name":[4],"type":["dbl"],"align":["right"]}],"data":[{"1":"619","2":"dyer","3":"rad","4":"9.82"},{"1":"619","2":"dyer","3":"sal","4":"0.13"},{"1":"622","2":"dyer","3":"rad","4":"7.80"},{"1":"622","2":"dyer","3":"sal","4":"0.09"},{"1":"734","2":"pb","3":"rad","4":"8.41"},{"1":"734","2":"lake","3":"sal","4":"0.05"},{"1":"734","2":"pb","3":"temp","4":"-21.50"},{"1":"735","2":"pb","3":"rad","4":"7.22"},{"1":"735","2":"NA","3":"sal","4":"0.06"},{"1":"735","2":"NA","3":"temp","4":"-26.00"},{"1":"751","2":"pb","3":"rad","4":"4.35"},{"1":"751","2":"pb","3":"temp","4":"-18.50"},{"1":"751","2":"lake","3":"sal","4":"NA"},{"1":"752","2":"lake","3":"rad","4":"2.19"},{"1":"752","2":"lake","3":"sal","4":"0.09"},{"1":"752","2":"lake","3":"temp","4":"-16.00"},{"1":"752","2":"roe","3":"sal","4":"41.60"},{"1":"837","2":"lake","3":"rad","4":"1.46"},{"1":"837","2":"lake","3":"sal","4":"0.21"},{"1":"837","2":"roe","3":"sal","4":"22.50"},{"1":"844","2":"roe","3":"rad","4":"11.25"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 2 {.tabset .tabset-fade .tabset-pills}

Question

Create a tibble containing only rows where none of the values are NA and save in a tibble called cleaned.

Solution

cleaned <- measurements %>%
  drop_na()

cleaned
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["visit_id"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["visitor"],"name":[2],"type":["chr"],"align":["left"]},{"label":["quantity"],"name":[3],"type":["chr"],"align":["left"]},{"label":["reading"],"name":[4],"type":["dbl"],"align":["right"]}],"data":[{"1":"619","2":"dyer","3":"rad","4":"9.82"},{"1":"619","2":"dyer","3":"sal","4":"0.13"},{"1":"622","2":"dyer","3":"rad","4":"7.80"},{"1":"622","2":"dyer","3":"sal","4":"0.09"},{"1":"734","2":"pb","3":"rad","4":"8.41"},{"1":"734","2":"lake","3":"sal","4":"0.05"},{"1":"734","2":"pb","3":"temp","4":"-21.50"},{"1":"735","2":"pb","3":"rad","4":"7.22"},{"1":"751","2":"pb","3":"rad","4":"4.35"},{"1":"751","2":"pb","3":"temp","4":"-18.50"},{"1":"752","2":"lake","3":"rad","4":"2.19"},{"1":"752","2":"lake","3":"sal","4":"0.09"},{"1":"752","2":"lake","3":"temp","4":"-16.00"},{"1":"752","2":"roe","3":"sal","4":"41.60"},{"1":"837","2":"lake","3":"rad","4":"1.46"},{"1":"837","2":"lake","3":"sal","4":"0.21"},{"1":"837","2":"roe","3":"sal","4":"22.50"},{"1":"844","2":"roe","3":"rad","4":"11.25"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 3 {.tabset .tabset-fade .tabset-pills}

Question

Count the number of measurements of each type of quantity in cleaned. Your result should have one row for each quantity "rad", "sal", and "temp".

Solution

cleaned %>% count(quantity)
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["quantity"],"name":[1],"type":["chr"],"align":["left"]},{"label":["n"],"name":[2],"type":["int"],"align":["right"]}],"data":[{"1":"rad","2":"8"},{"1":"sal","2":"7"},{"1":"temp","2":"3"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 4 {.tabset .tabset-fade .tabset-pills}

Question

Display the minimum and maximum value of reading separately for each quantity in cleaned. Your result should have one row for each quantity "rad", "sal", and "temp".

Solution

cleaned %>%
  group_by(quantity) %>%
  summarise(across(reading, list(Min = min, Max = max)))
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["quantity"],"name":[1],"type":["chr"],"align":["left"]},{"label":["reading_Min"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["reading_Max"],"name":[3],"type":["dbl"],"align":["right"]}],"data":[{"1":"rad","2":"1.46","3":"11.25"},{"1":"sal","2":"0.05","3":"41.60"},{"1":"temp","2":"-21.50","3":"-16.00"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 5 {.tabset .tabset-fade .tabset-pills}

Question

Create a tibble in which all salinity ("sal") readings greater than 1 are divided by 100. (This is needed because some people wrote percentages as numbers from 0.0 to 1.0, but others wrote them as 0.0 to 100.0.)

Solution

cleaned %>% mutate(reading = case_when(
  quantity == "sal" & reading > 1 ~ reading / 100,
  TRUE ~ reading
))
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["visit_id"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["visitor"],"name":[2],"type":["chr"],"align":["left"]},{"label":["quantity"],"name":[3],"type":["chr"],"align":["left"]},{"label":["reading"],"name":[4],"type":["dbl"],"align":["right"]}],"data":[{"1":"619","2":"dyer","3":"rad","4":"9.820"},{"1":"619","2":"dyer","3":"sal","4":"0.130"},{"1":"622","2":"dyer","3":"rad","4":"7.800"},{"1":"622","2":"dyer","3":"sal","4":"0.090"},{"1":"734","2":"pb","3":"rad","4":"8.410"},{"1":"734","2":"lake","3":"sal","4":"0.050"},{"1":"734","2":"pb","3":"temp","4":"-21.500"},{"1":"735","2":"pb","3":"rad","4":"7.220"},{"1":"751","2":"pb","3":"rad","4":"4.350"},{"1":"751","2":"pb","3":"temp","4":"-18.500"},{"1":"752","2":"lake","3":"rad","4":"2.190"},{"1":"752","2":"lake","3":"sal","4":"0.090"},{"1":"752","2":"lake","3":"temp","4":"-16.000"},{"1":"752","2":"roe","3":"sal","4":"0.416"},{"1":"837","2":"lake","3":"rad","4":"1.460"},{"1":"837","2":"lake","3":"sal","4":"0.210"},{"1":"837","2":"roe","3":"sal","4":"0.225"},{"1":"844","2":"roe","3":"rad","4":"11.250"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Combining Data

Question 1 {.tabset .tabset-fade .tabset-pills}

Question

Read visited.csv and drop rows containing any NAs, assigning the result to a new tibble called visited.

Solution

visited <- read_csv("https://education.rstudio.com/blog/2020/08/more-example-exams/visited.csv") %>%
  drop_na()

visited
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["visit_id"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["site_id"],"name":[2],"type":["chr"],"align":["left"]},{"label":["visit_date"],"name":[3],"type":["date"],"align":["right"]}],"data":[{"1":"619","2":"DR-1","3":"1927-02-08"},{"1":"622","2":"DR-1","3":"1927-02-10"},{"1":"734","2":"DR-3","3":"1930-01-07"},{"1":"735","2":"DR-3","3":"1930-01-12"},{"1":"751","2":"DR-3","3":"1930-02-26"},{"1":"837","2":"MSK-4","3":"1932-01-14"},{"1":"844","2":"DR-1","3":"1932-03-22"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 2 {.tabset .tabset-fade .tabset-pills}

Question

Use an inner join to combine visited with cleaned using the visit_id column for matches.

Solution

combined_data <- visited %>% inner_join(cleaned, by = "visit_id")

combined_data
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["visit_id"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["site_id"],"name":[2],"type":["chr"],"align":["left"]},{"label":["visit_date"],"name":[3],"type":["date"],"align":["right"]},{"label":["visitor"],"name":[4],"type":["chr"],"align":["left"]},{"label":["quantity"],"name":[5],"type":["chr"],"align":["left"]},{"label":["reading"],"name":[6],"type":["dbl"],"align":["right"]}],"data":[{"1":"619","2":"DR-1","3":"1927-02-08","4":"dyer","5":"rad","6":"9.82"},{"1":"619","2":"DR-1","3":"1927-02-08","4":"dyer","5":"sal","6":"0.13"},{"1":"622","2":"DR-1","3":"1927-02-10","4":"dyer","5":"rad","6":"7.80"},{"1":"622","2":"DR-1","3":"1927-02-10","4":"dyer","5":"sal","6":"0.09"},{"1":"734","2":"DR-3","3":"1930-01-07","4":"pb","5":"rad","6":"8.41"},{"1":"734","2":"DR-3","3":"1930-01-07","4":"lake","5":"sal","6":"0.05"},{"1":"734","2":"DR-3","3":"1930-01-07","4":"pb","5":"temp","6":"-21.50"},{"1":"735","2":"DR-3","3":"1930-01-12","4":"pb","5":"rad","6":"7.22"},{"1":"751","2":"DR-3","3":"1930-02-26","4":"pb","5":"rad","6":"4.35"},{"1":"751","2":"DR-3","3":"1930-02-26","4":"pb","5":"temp","6":"-18.50"},{"1":"837","2":"MSK-4","3":"1932-01-14","4":"lake","5":"rad","6":"1.46"},{"1":"837","2":"MSK-4","3":"1932-01-14","4":"lake","5":"sal","6":"0.21"},{"1":"837","2":"MSK-4","3":"1932-01-14","4":"roe","5":"sal","6":"22.50"},{"1":"844","2":"DR-1","3":"1932-03-22","4":"roe","5":"rad","6":"11.25"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 3 {.tabset .tabset-fade .tabset-pills}

Question

Find the highest radiation ("rad") reading at each site. (Sites are identified by values in the site_id column.)

Solution

combined_data %>%
  filter(quantity == "rad") %>%
  group_by(site_id) %>%
  summarise(Max_reading = max(reading))
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["site_id"],"name":[1],"type":["chr"],"align":["left"]},{"label":["Max_reading"],"name":[2],"type":["dbl"],"align":["right"]}],"data":[{"1":"DR-1","2":"11.25"},{"1":"DR-3","2":"8.41"},{"1":"MSK-4","2":"1.46"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 4 {.tabset .tabset-fade .tabset-pills}

Question

Find the date of the highest radiation reading at each site.

Solution

max_rad4site <- combined_data %>%
  filter(quantity == "rad") %>%
  group_by(site_id, visit_date) %>%
  summarise(Max_reading = max(reading)) %>%
  slice_max(Max_reading)

max_rad4site
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["site_id"],"name":[1],"type":["chr"],"align":["left"]},{"label":["visit_date"],"name":[2],"type":["date"],"align":["right"]},{"label":["Max_reading"],"name":[3],"type":["dbl"],"align":["right"]}],"data":[{"1":"DR-1","2":"1932-03-22","3":"11.25"},{"1":"DR-3","2":"1930-01-07","3":"8.41"},{"1":"MSK-4","2":"1932-01-14","3":"1.46"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Plotting

Question 1 {.tabset .tabset-fade .tabset-pills}

Question

The code below is supposed to read the file home-range-database.csv to create a tibble called hra_raw, but contains a bug. Describe and fix the problem. (There are several ways to fix it: please use whichever you prefer.)

hra_raw <- read_csv(here::here("data", "home-range-database.csv"))

Solution

There is no directory called data on my working directory and therefore, the chunk will throw an error.

hra_raw <- read_csv(here::here("data", "home-range-database.csv"))
Error: 'C:/Users/OGUNDEPO EZEKIEL .A/Documents/Google Drive/GitHub repository/R programming end-to-end/data/home-range-database.csv' does not exist.

I can resolve it by creating a directory called data and download the file home-range-database.csv in it.

fs::dir_create("data")

download.file("https://education.rstudio.com/blog/2020/08/more-example-exams/home-range-database.csv", "data/home-range-database.csv")
hra_raw <- read_csv(here::here("data", "home-range-database.csv"))

hra_raw
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["taxon"],"name":[1],"type":["chr"],"align":["left"]},{"label":["common.name"],"name":[2],"type":["chr"],"align":["left"]},{"label":["class"],"name":[3],"type":["chr"],"align":["left"]},{"label":["order"],"name":[4],"type":["chr"],"align":["left"]},{"label":["family"],"name":[5],"type":["chr"],"align":["left"]},{"label":["genus"],"name":[6],"type":["chr"],"align":["left"]},{"label":["species"],"name":[7],"type":["chr"],"align":["left"]},{"label":["primarymethod"],"name":[8],"type":["chr"],"align":["left"]},{"label":["N"],"name":[9],"type":["chr"],"align":["left"]},{"label":["mean.mass.g"],"name":[10],"type":["dbl"],"align":["right"]},{"label":["log10.mass"],"name":[11],"type":["dbl"],"align":["right"]},{"label":["alternative.mass.reference"],"name":[12],"type":["chr"],"align":["left"]},{"label":["mean.hra.m2"],"name":[13],"type":["dbl"],"align":["right"]},{"label":["log10.hra"],"name":[14],"type":["dbl"],"align":["right"]},{"label":["hra.reference"],"name":[15],"type":["chr"],"align":["left"]},{"label":["realm"],"name":[16],"type":["chr"],"align":["left"]},{"label":["thermoregulation"],"name":[17],"type":["chr"],"align":["left"]},{"label":["locomotion"],"name":[18],"type":["chr"],"align":["left"]},{"label":["trophic.guild"],"name":[19],"type":["chr"],"align":["left"]},{"label":["dimension"],"name":[20],"type":["chr"],"align":["left"]},{"label":["preymass"],"name":[21],"type":["dbl"],"align":["right"]},{"label":["log10.preymass"],"name":[22],"type":["dbl"],"align":["right"]},{"label":["PPMR"],"name":[23],"type":["dbl"],"align":["right"]},{"label":["prey.size.reference"],"name":[24],"type":["chr"],"align":["left"]}],"data":[{"1":"lake fishes","2":"american eel","3":"actinopterygii","4":"anguilliformes","5":"anguillidae","6":"anguilla","7":"rostrata","8":"telemetry","9":"16","10":"887.00","11":"2.94792362","12":"NA","13":"2.827500e+05","14":"5.45140261","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"blacktail redhorse","3":"actinopterygii","4":"cypriniformes","5":"catostomidae","6":"moxostoma","7":"poecilura","8":"mark-recapture","9":"NA","10":"562.00","11":"2.74973632","12":"NA","13":"2.821000e+02","14":"2.45040309","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"central stoneroller","3":"actinopterygii","4":"cypriniformes","5":"cyprinidae","6":"campostoma","7":"anomalum","8":"mark-recapture","9":"20","10":"34.00","11":"1.53147892","12":"NA","13":"1.161100e+02","14":"2.06486963","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"rosyside dace","3":"actinopterygii","4":"cypriniformes","5":"cyprinidae","6":"clinostomus","7":"funduloides","8":"mark-recapture","9":"26","10":"4.00","11":"0.60205999","12":"NA","13":"1.255000e+02","14":"2.09864373","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"longnose dace","3":"actinopterygii","4":"cypriniformes","5":"cyprinidae","6":"rhinichthys","7":"cataractae","8":"mark-recapture","9":"17","10":"4.00","11":"0.60205999","12":"NA","13":"8.710000e+01","14":"1.94001815","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"muskellunge","3":"actinopterygii","4":"esociformes","5":"esocidae","6":"esox","7":"masquinongy","8":"telemetry","9":"5","10":"3525.00","11":"3.54715912","12":"NA","13":"3.934350e+04","14":"4.59487299","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"pollack","3":"actinopterygii","4":"gadiformes","5":"gadidae","6":"pollachius","7":"pollachius","8":"telemetry","9":"2","10":"737.36","11":"2.86767957","12":"NA","13":"9.056410e+03","14":"3.95695608","15":"Sarno B, Glass CW, Smith GW, et al. 1994. A comparison of the movements of two species of gadoid in the vicinity of an underwater reef. Journal of Fisheries Biology 45, 811-817.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"1.39","22":"0.1430148","23":"530.000000","24":"Brose U, et al. 2005b. Body sizes of consumers and their resources. Ecology 86, 2545."},{"1":"marine fishes","2":"saithe","3":"actinopterygii","4":"gadiformes","5":"gadidae","6":"pollachius","7":"virens","8":"telemetry","9":"2","10":"448.61","11":"2.65186895","12":"NA","13":"4.451615e+04","14":"4.64851760","15":"Sarno B, Glass CW, Smith GW, et al. 1994. A comparison of the movements of two species of gadoid in the vicinity of an underwater reef. Journal of Fisheries Biology 45, 811-817.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"lined surgeonfish","3":"actinopterygii","4":"perciformes","5":"acanthuridae","6":"acanthurus","7":"lineatus","8":"direct observation","9":"NA","10":"109.04","11":"2.03758584","12":"NA","13":"1.113000e+01","14":"1.04649516","15":"Nursall JR. 1974. Some Territorial Behavioral Attributes of the Surgeonfish Acanthurus lineatus at Heron Island, Queensland. Copeia 950-959.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"orangespine unicornfish","3":"actinopterygii","4":"perciformes","5":"acanthuridae","6":"naso","7":"lituratus","8":"telemetry","9":"8","10":"772.16","11":"2.88770730","12":"NA","13":"3.209286e+04","14":"4.50640842","15":"Marshell A, Mills JS, Rhodes KL, et al. 2011. Passive acoustic telemetry reveals highly variable home range and movement patterns among unicornfish within a marine reserve. Coral Reefs 30, 631-642.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"bluespine unicornfish","3":"actinopterygii","4":"perciformes","5":"acanthuridae","6":"naso","7":"unicornis","8":"telemetry","9":"7","10":"151.84","11":"2.18138619","12":"NA","13":"1.790000e+04","14":"4.25285303","15":"Marshell A, Mills JS, Rhodes KL, et al. 2011. Passive acoustic telemetry reveals highly variable home range and movement patterns among unicornfish within a marine reserve. Coral Reefs 30, 631-642.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"redlip blenny","3":"actinopterygii","4":"perciformes","5":"blennidae","6":"ophioblennius","7":"atlanticus","8":"direct observation","9":"20","10":"6.20","11":"0.79239169","12":"NA","13":"5.200000e-01","14":"-0.28399666","15":"Nursall JR. 1977. Territoriality in Redlip blennies (Ophioblennius atlanticus - Pisces : Blenniidae). Journal of Zoology, London 182, 205-223.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"giant trevally","3":"actinopterygii","4":"perciformes","5":"carangidae","6":"caranx","7":"ignobilis","8":"telemetry","9":"4","10":"726.18","11":"2.86104428","12":"NA","13":"5.277300e+04","14":"4.72241178","15":"Wetherbee BM, Holland KN, Meyer CG, et al. 2004. Use of a marine reserve in Kaneohe Bay, Hawaii by the giant trevally, Caranx ignobilis. Fisheries Research 67, 253-263. (doi:10.1016/j.fishres.2003.11.004)","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lake fishes","2":"rock bass","3":"actinopterygii","4":"perciformes","5":"centrarchidae","6":"ambloplites","7":"rupestris","8":"mark-recapture","9":"16","10":"196.00","11":"2.29225607","12":"NA","13":"1.040690e+04","14":"4.01732138","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lake fishes","2":"pumpkinseed","3":"actinopterygii","4":"perciformes","5":"centrarchidae","6":"lepomis","7":"gibbosus","8":"telemetry","9":"4","10":"82.00","11":"1.91381385","12":"NA","13":"4.950000e+03","14":"3.69460520","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lake fishes","2":"bluegill","3":"actinopterygii","4":"perciformes","5":"centrarchidae","6":"lepomis","7":"macrochirus","8":"telemetry","9":"9","10":"79.00","11":"1.89762709","12":"NA","13":"4.420000e+03","14":"3.64542227","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"longear sunfish","3":"actinopterygii","4":"perciformes","5":"centrarchidae","6":"lepomis","7":"megalotis","8":"mark-recapture","9":"NA","10":"16.00","11":"1.20411998","12":"NA","13":"9.750000e+01","14":"1.98900462","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"smallmouth bass","3":"actinopterygii","4":"perciformes","5":"centrarchidae","6":"micropterus","7":"dolomieu","8":"telemetry","9":"NA","10":"1134.00","11":"3.05461305","12":"NA","13":"1.936500e+03","14":"3.28701750","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lake fishes","2":"largemouth bass","3":"actinopterygii","4":"perciformes","5":"centrarchidae","6":"micropterus","7":"salmoides","8":"telemetry","9":"9","10":"2125.00","11":"3.32735893","12":"NA","13":"3.440333e+04","14":"4.53660048","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lake fishes","2":"white crappie","3":"actinopterygii","4":"perciformes","5":"centrarchidae","6":"pomoxis","7":"annularis","8":"telemetry","9":"37","10":"423.00","11":"2.62634037","12":"NA","13":"1.580000e+05","14":"5.19865709","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"eastern triangular butterflyfish","3":"actinopterygii","4":"perciformes","5":"chaetodontidae","6":"chaetodon","7":"baronessa","8":"direct observation","9":"NA","10":"27.63","11":"1.44138089","12":"NA","13":"6.324000e+01","14":"1.80099186","15":"Reese ES. 1973. Duration of Residence by Coral Reef Fishes on \"Home\" Reefs. Copeia, 1, 145-149.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"Tahititan butterflyfish","3":"actinopterygii","4":"perciformes","5":"chaetodontidae","6":"chaetodon","7":"trichrous","8":"direct observation","9":"28","10":"31.88","11":"1.50351831","12":"NA","13":"5.950000e+01","14":"1.77451697","15":"Reavis RH, Copus JM. 2011. Monogamy in a feeding generalist, Chaetodon trichrous, the endemic Tahitian Butterflyfish. Environmental Biology of Fishes 92, 167-179.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"chevron butterflyfish","3":"actinopterygii","4":"perciformes","5":"chaetodontidae","6":"chaetodon","7":"trifascialis","8":"direct observation","9":"NA","10":"60.54","11":"1.78204242","12":"NA","13":"6.491000e+01","14":"1.81231161","15":"Reese ES. 1973. Duration of Residence by Coral Reef Fishes on \"Home\" Reefs. Copeia, 1, 145-149.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"melon butterflyfish","3":"actinopterygii","4":"perciformes","5":"chaetodontidae","6":"chaetodon","7":"trifasciatus","8":"direct observation","9":"NA","10":"70.45","11":"1.84788100","12":"NA","13":"2.209300e+02","14":"2.34425469","15":"Sutton M. 1985. Patterns of spacing in a coral reef fish in two habitats on the Great Barrier Reef. Animal Behavior 33, 1332-1337.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"teardrop butterflyfish","3":"actinopterygii","4":"perciformes","5":"chaetodontidae","6":"chaetodon","7":"unimaculatus","8":"direct observation","9":"NA","10":"78.12","11":"1.89276223","12":"NA","13":"2.749400e+02","14":"2.43923793","15":"Reese ES. 1973. Duration of Residence by Coral Reef Fishes on \"Home\" Reefs. Copeia, 1, 145-149.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"red moki","3":"actinopterygii","4":"perciformes","5":"cheilodactylidae","6":"cheilodactylus","7":"spectrabilis","8":"telemetry","9":"3","10":"1551.13","11":"3.19064820","12":"NA","13":"2.046670e+03","14":"3.31104782","15":"Buxton CD, Semmens JM, Forbes E, et al. 2010. Spatial Management of Reef Fisheries And Ecosystems: Understanding The Importance of Movement. FRDC Final Report - Project 2004/002.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"redspotted hawkfish","3":"actinopterygii","4":"perciformes","5":"cirrhitidae","6":"amblycirrhitus","7":"pinos","8":"direct observation","9":"NA","10":"0.45","11":"-0.34678749","12":"NA","13":"2.540000e+00","14":"0.40483372","15":"Luckhurst BE, Luckhurst K. 1978. Diurnal Space Utilization in Coral Reef Fish Communities. Marine Biology 49, 325-332.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"dwarf hawkfish","3":"actinopterygii","4":"perciformes","5":"cirrhitidae","6":"cirrhitichthys","7":"falco","8":"mark-recapture","9":"16","10":"10.45","11":"1.01911629","12":"NA","13":"4.620000e+01","14":"1.66464198","15":"Kadota T, Osato J, Hashimoto H, et al. 2011. Harem structure and female territoriality in the dwarf hawkfish Cirrhitichthys falco (Cirrhitidae). Environmental Biology of Fishes 92, 79-88.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"cabezon","3":"actinopterygii","4":"perciformes","5":"cottidae","6":"scorpaenichthys","7":"marmoratus","8":"mark-recapture","9":"27","10":"1450.23","11":"3.16143689","12":"NA","13":"3.303110e+03","14":"3.51892304","15":"Mireles C, Nakamura R, Wendt DE. 2012. A collaborative approach to investigate site fidelity, home range, and homing behavior of cabezon (Scorpaenichthys marmoratus). Fisheries Research 113, 133-142.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"japanese shrimpgoby","3":"actinopterygii","4":"perciformes","5":"gobiidae","6":"amblyeleotris","7":"japonica","8":"direct observation","9":"34","10":"2.70","11":"0.43136376","12":"NA","13":"2.827000e+01","14":"1.45132581","15":"Yanagisawa Y. 1982. Social Behaviour and Mating System of the Gobiid Fish Amblyeleotris japonica. Japanese Journal of Ichthyology 28: 401-422.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"bluebanded goby","3":"actinopterygii","4":"perciformes","5":"gobiidae","6":"lythrypnus","7":"dalli","8":"mark-recapture","9":"48","10":"0.31","11":"-0.50863831","12":"NA","13":"5.000000e-01","14":"-0.30103000","15":"St. Mary CM. 1994. Sex allocation in a simultaneous hermaphrodite, the blue-banded goby (Lythrypnus dalli): the effects of body size and behavioral gender and the consequences for reproduction. Behavioral Ecology 5, 304-313.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"rusty goby","3":"actinopterygii","4":"perciformes","5":"gobiidae","6":"priolepis","7":"hipoliti","8":"direct observation","9":"NA","10":"0.22","11":"-0.65757732","12":"NA","13":"3.000000e-02","14":"-1.52287875","15":"Luckhurst BE, Luckhurst K. 1978. Diurnal Space Utilization in Coral Reef Fish Communities. Marine Biology 49, 325-332.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"blackeye goby","3":"actinopterygii","4":"perciformes","5":"gobiidae","6":"rhinogobiops","7":"nicholsii","8":"mark-recapture","9":"104","10":"4.00","11":"0.60205999","12":"NA","13":"3.200000e-01","14":"-0.49485002","15":"Kroon FJ, de Graff M, Liley NR. 2000. Social organisation and competition for refuges and nest sites in Coryphopterus nicholsii (Gobiidae), a temperate protogynous reef fish. Environmental Biology of Fishes 57, 401-411.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"longfinned goby","3":"actinopterygii","4":"perciformes","5":"gobiidae","6":"valenciennea","7":"longipinnis","8":"mark-recapture","9":"14","10":"71.23","11":"1.85266294","12":"NA","13":"6.150000e+01","14":"1.78887512","15":"Takegaki T. 2001. Environmental factors affecting the spawning burrow selection by the gobiid Valenciennea longipinnis. Journal of Fish Biology. 58, 222-229. (doi:10.1006/jfbi.2000.1438)","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"bermuda chub","3":"actinopterygii","4":"perciformes","5":"kyphosidae","6":"kyphosus","7":"sectatrix","8":"telemetry","9":"11","10":"1086.71","11":"3.03611366","12":"NA","13":"3.442300e+04","14":"4.53684872","15":"Eristhee N, Oxenford HA. 2001. Home range size and use of space by Bermuda chub Kyphosus sectatrix (L.) in two marine reserves in the Soufrire Marine Management Area, St Lucia, West Indies. Journal of Fisheries Biology 59, 129-151.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"spanish hogfish","3":"actinopterygii","4":"perciformes","5":"labridae","6":"bodianus","7":"rufus","8":"direct observation","9":"47","10":"133.38","11":"2.12509071","12":"NA","13":"5.178000e+02","14":"2.71416205","15":"Hoffman SG. 1983. Sex-Related Foraging Behavior in Sequentially Hermaphroditic Hogfishes (Bodianus Spp.). Ecology 64, 798-808.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"humphead wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"chelinus","7":"undulatus","8":"mark-recapture","9":"1","10":"1644.90","11":"3.21613950","12":"NA","13":"5.000000e+04","14":"4.69897000","15":"Chateau O, Wantiez L. 2007. Site fidelity and activity patterns of a humphead wrasse, Cheilinus undulatus (Labridae), as determined by acoustic telemetry. Environmental Biology of Fishes 808, 503-508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"mediterranean rainbow wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"coris","7":"julis","8":"mark-recapture","9":"NA","10":"119.16","11":"2.07613050","12":"NA","13":"2.276000e+02","14":"2.35717226","15":"Palmer M, Balle S, March D, et al. 2011. Size estimation of circular home range from fish mark-release-(single)-recapture data: case study of a small labrid targeted by recreational fishing. Marine Ecology Progress Series 430, 87-97.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"slippery dick","3":"actinopterygii","4":"perciformes","5":"labridae","6":"halichoeres","7":"bivittatus","8":"mark-recapture","9":"4","10":"7.17","11":"0.85551916","12":"NA","13":"1.425000e+02","14":"2.15381486","15":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"yellowhead wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"halichoeres","7":"garnoti","8":"mark-recapture","9":"2","10":"6.57","11":"0.81756537","12":"NA","13":"1.285000e+02","14":"2.10890313","15":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"clown wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"halichoeres","7":"maculipinna","8":"mark-recapture","9":"2","10":"9.55","11":"0.98000337","12":"NA","13":"1.584000e+02","14":"2.19975518","15":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"blackear wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"halichoeres","7":"poeyi","8":"mark-recapture","9":"2","10":"7.03","11":"0.84695533","12":"NA","13":"1.637000e+02","14":"2.21404868","15":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"bluestreak cleaner wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"labroides","7":"dimidiatus","8":"direct observation","9":"NA","10":"3.49","11":"0.54282543","12":"NA","13":"3.316000e+01","14":"1.52061452","15":"Robertson DR. 1974. A Study of the Ethology and Reproductive Biology of the Labrid Fish, Labroides dimidiatus, at Heron Island, Great Barrier Reef. Ph.D. thesis. University of Queensland.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"ballan wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"labrus","7":"bergylta","8":"telemetry","9":"2","10":"362.30","11":"2.55906833","12":"NA","13":"4.028590e+03","14":"3.60515307","15":"Pita P, Freire J. 2011. Movements of three large coastal predatory fishes in the northeast Atlantic: a preliminary telemetry study. Scientia Marina 75, 759-770.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"maori wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"opthalmolepis","7":"lineolatus","8":"mark-recapture","9":"14","10":"95.54","11":"1.98018524","12":"NA","13":"8.560000e+02","14":"2.93247377","15":"Kingsford MJ, Carlson IJ. 2010. Patterns of distribution and movement of fishes, Ophthalmolepis lineolatus and Hypoplectrodes maccullochi, on temperate rocky reefs of south eastern Australia. Environmental Biology of Fishes 88, 105-118. (doi: 10.1007/s10641-010-9621-1)","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"california sheepshead","3":"actinopterygii","4":"perciformes","5":"labridae","6":"semicossyphus","7":"pulcher","8":"telemetry","9":"16","10":"1484.14","11":"3.17147487","12":"NA","13":"1.513400e+04","14":"4.17995373","15":"Topping DT, Lowe CG, Caselle JE. 2005. Home range and habitat utilization of adult California sheephead, Semicossyphus pulcher (Labridae), in a temperate no-take marine reserve. Marine Biology 147, 301-311.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"cunner","3":"actinopterygii","4":"perciformes","5":"labridae","6":"tautogolabrus","7":"adspersus","8":"telemetry","9":"8","10":"103.47","11":"2.01481445","12":"NA","13":"1.368110e+03","14":"3.13612102","15":"Bradbury C, Green JM, Bruce-Lockhart. 1995. Home ranges of female cunner, Tautogolabrus adspersus (Labridae), as determined by ultrasonic telemetry. Canadian Journal of Zoology 73, 1268-1279.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"bluehead wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"thalassoma","7":"bifasciatum","8":"mark-recapture","9":"2","10":"3.12","11":"0.49415459","12":"NA","13":"1.033000e+02","14":"2.01410032","15":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"moon wrasse","3":"actinopterygii","4":"perciformes","5":"labridae","6":"thalassoma","7":"lunare","8":"direct observation","9":"NA","10":"84.06","11":"1.92458939","12":"NA","13":"1.187000e+01","14":"1.07445072","15":"Robertson DR, Choat JH. 1974. Protogynous Hermaphroditism and Social Systems in Labrid Fish. In: Proc. Int. Coral Reef Symp., 2nd ed. (Cameron, A.M., B.M. Cambell, A.B. Cribb, R.Endean, J.S. Jell, O.A. Jones, P. Mather and F.H. Talbot, eds.), 1, 217-226.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"thumbprint emperor","3":"actinopterygii","4":"perciformes","5":"lethrinidae","6":"lethrinus","7":"harak","8":"telemetry","9":"21","10":"236.76","11":"2.37430833","12":"NA","13":"1.988100e+03","14":"3.29843822","15":"Nanami A, Yamada H. 2009. Site fidelity, size, and spatial arrangement of daytime home range of thumbprint emperor Lethrinus harak (Lethrinidae). Fisheries Science 75, 1109-1116.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"mutton snapper","3":"actinopterygii","4":"perciformes","5":"lutjanidae","6":"lutjanus","7":"analis","8":"telemetry","9":"4","10":"2167.70","11":"3.33599918","12":"NA","13":"7.640000e+06","14":"6.88309336","15":"Farmer NA, Ault JS. 2011. Grouper and snapper movements and habitat use in Dry Tortugas, Florida. Marine Ecology Progress Series 433, 169-184.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"schoolmaster snapper","3":"actinopterygii","4":"perciformes","5":"lutjanidae","6":"lutjanus","7":"apodus","8":"telemetry","9":"15","10":"56.04","11":"1.74849813","12":"NA","13":"6.660000e+03","14":"3.82347423","15":"Hammerschlag-Peyer CM, Layman CA. 2010. Intrapopulation variation in habitat use by two abundant coastal fish species. Marine Ecology Progress Series 415, 211-220.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"4.69","22":"0.6711728","23":"11.950000","24":"Rooker JR. 1995. Feeding Ecology of the Schoolmaster Snapper Lutjanus apodus (Walbaum), From Southwestern Puerto Rico. Bulletin of Marine Science 56(3), 881-894."},{"1":"marine fishes","2":"checkered snapper","3":"actinopterygii","4":"perciformes","5":"lutjanidae","6":"lutjanus","7":"decussatus","8":"telemetry","9":"58","10":"50.00","11":"1.69897000","12":"NA","13":"1.340600e+03","14":"3.12729921","15":"Nanami A, Yamada H. 2008. Size and spatial arrangement of home range of checkered snapper Lutjanus decussatus (Lutjanidae) in an Okinawan coral reef determined using a portable GPS receiver. Marine Biology 153, 1103-1111.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"gray snapper","3":"actinopterygii","4":"perciformes","5":"lutjanidae","6":"lutjanus","7":"griseus","8":"telemetry","9":"14","10":"56.27","11":"1.75027691","12":"NA","13":"3.538400e+04","14":"4.54880693","15":"Hammerschlag-Peyer CM, Layman CA. 2010. Intrapopulation variation in habitat use by two abundant coastal fish species. Marine Ecology Progress Series 415, 211-220.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"yellowtail snapper","3":"actinopterygii","4":"perciformes","5":"lutjanidae","6":"ocyurus","7":"chrysurus","8":"telemetry","9":"5","10":"1176.86","11":"3.07072480","12":"NA","13":"4.172000e+06","14":"6.62034430","15":"Farmer NA, Ault JS. 2011. Grouper and snapper movements and habitat use in Dry Tortugas, Florida. Marine Ecology Progress Series 433, 169-184.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"ocean whitefish","3":"actinopterygii","4":"perciformes","5":"malacanthidae","6":"caulolatilus","7":"princeps","8":"telemetry","9":"17","10":"1940.27","11":"3.28786217","12":"NA","13":"3.547400e+04","14":"4.54991016","15":"Bellquist LF, Lowe CG, Caselle JE. 2008. Fine-scale movement patterns, site fidelity, and habitat selection of ocean whitefish (Caulolatilus princeps). Fisheries Research 91, 325-335.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"european seabass","3":"actinopterygii","4":"perciformes","5":"moronidae","6":"dicentrarchus","7":"labrax","8":"telemetry","9":"2","10":"85.99","11":"1.93444795","12":"NA","13":"1.771235e+04","14":"4.24827618","15":"Pita P, Freire J. 2011. Movements of three large coastal predatory fishes in the northeast Atlantic: a preliminary telemetry study. Scientia Marina 75, 759-770.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"white goatfish","3":"actinopterygii","4":"perciformes","5":"mullidae","6":"mulloidichthys","7":"flavolineatus","8":"telemetry","9":"4","10":"297.72","11":"2.47380801","12":"NA","13":"5.400000e+03","14":"3.73239376","15":"Holland KN, Peterson JD, Lowe CG, et al. 1993. Movements, Distribution and Growth Rates of The White Goatfish Mulloides flavolineatus in a Fisheries Conservation Zone. Bulletin of Marine Science 52: 982-992.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"whitesaddle goatfish","3":"actinopterygii","4":"perciformes","5":"mullidae","6":"parupeneus","7":"porphyreus","8":"telemetry","9":"16","10":"191.55","11":"2.28228216","12":"NA","13":"1.920000e+04","14":"4.28330123","15":"Meyer CG, Holland KN, Wetherbee BM, et al. 2000. Movement patterns, habitat utilization, home range size and site fidelity of whitesaddle goatfish, Parupeneus porphyreus, in a marine reserve. Environmental Biology of Fishes 59, 235-242.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lake fishes","2":"yellow perch","3":"actinopterygii","4":"perciformes","5":"percidae","6":"perca","7":"flavescens","8":"telemetry","9":"4","10":"134.00","11":"2.12710480","12":"NA","13":"1.140000e+04","14":"4.05690485","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"canary damsel","3":"actinopterygii","4":"perciformes","5":"pomacanthidae","6":"abudefduf","7":"luridus","8":"direct observation","9":"NA","10":"94.58","11":"1.97579931","12":"NA","13":"2.700000e+01","14":"1.43136376","15":"Mapstone GM, Wood EM. 1975. The ethology of Abudefduf luridus and Chromis chromis (Pisces: Pomacentridae) from the Azores. Journal of Zoology, London 175, 179-199.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"cherubfish","3":"actinopterygii","4":"perciformes","5":"pomacanthidae","6":"centropyge","7":"argi","8":"direct observation","9":"NA","10":"2.50","11":"0.39794001","12":"NA","13":"1.130000e+00","14":"0.05307844","15":"Luckhurst BE, Luckhurst K. 1978. Diurnal Space Utilization in Coral Reef Fish Communities. Marine Biology 49, 325-332.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"damselfish","3":"actinopterygii","4":"perciformes","5":"pomacentridae","6":"chromis","7":"chromis","8":"direct observation","9":"NA","10":"28.41","11":"1.45347123","12":"NA","13":"1.850000e+01","14":"1.26717173","15":"Mapstone GM, Wood EM. 1975. The ethology of Abudefduf luridus and Chromis chromis (Pisces: Pomacentridae) from the Azores. Journal of Zoology, London 175, 179-199.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"twinspot damselfish","3":"actinopterygii","4":"perciformes","5":"pomacentridae","6":"chrysiptera","7":"biocellata","8":"direct observation","9":"18","10":"9.19","11":"0.96331551","12":"NA","13":"2.580000e+00","14":"0.41161971","15":"Keenleyside MHA. 1972. The Behaviour of Abudefduf zonatus (Pisces, Pomacentridae) at Heron Island, Great Barrier Reef. Animal Behavior 20, 763-774.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"whitetail dascyllus","3":"actinopterygii","4":"perciformes","5":"pomacentridae","6":"dascyllus","7":"aruanus","8":"mark-recapture","9":"NA","10":"3.96","11":"0.59769519","12":"NA","13":"1.100000e+00","14":"0.04139268","15":"Sale PF. 1971. Extremely Limited Home Range in a Coral Reef Fish, Dascyllus aruanus (Pisces; Pomacentridae). Copeia, 324-327.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"wards damsel","3":"actinopterygii","4":"perciformes","5":"pomacentridae","6":"pomacentrus","7":"wardi","8":"direct observation","9":"NA","10":"10.49","11":"1.02077549","12":"NA","13":"5.400000e-01","14":"-0.26760624","15":"Sale PF. 1974. Mechanisms of co-existence in a guild of territorial fishes at Heron Island. pp. 193-206. In: Proc. Second Intern. Symp. Coral Reefs, Vol. 1, Great Barrier Reef Committee. Brisbane.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"australian gregory","3":"actinopterygii","4":"perciformes","5":"pomacentridae","6":"stegastes","7":"apicalis","8":"direct observation","9":"NA","10":"45.30","11":"1.65609820","12":"NA","13":"2.250000e+00","14":"0.35218252","15":"Sale PF. 1978. Coexistence of coral reef fishes - a lottery for living space. Environmental Biology of Fishes 3(1), 85-102.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"bicolor damselfish","3":"actinopterygii","4":"perciformes","5":"pomacentridae","6":"stegastes","7":"partitus","8":"direct observation","9":"NA","10":"6.64","11":"0.82216808","12":"NA","13":"5.000000e-02","14":"-1.30103000","15":"Luckhurst BE, Luckhurst K. 1978. Diurnal Space Utilization in Coral Reef Fish Communities. Marine Biology 49, 325-332.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"cocoa damselfish","3":"actinopterygii","4":"perciformes","5":"pomacentridae","6":"stegastes","7":"variabilis","8":"direct observation","9":"10","10":"39.00","11":"1.59106461","12":"NA","13":"7.400000e+00","14":"0.86923172","15":"Gronell A. 1980. Space utilization by the cocoa damselfish Eupomacentrus variabilis (Pisces: Pomacentridae). Bulletin of Marine Science 30, 237-251.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"steephead parrotfish","3":"actinopterygii","4":"perciformes","5":"scaridae","6":"chlorurus","7":"microrhinos","8":"telemetry","9":"7","10":"1668.11","11":"3.22222469","12":"NA","13":"7.830000e+03","14":"3.89376176","15":"Welsh JQ, Bellwood DR. 2011. Spatial ecology of the steephead parrotfish (Chlorurus microrhinos): an evaluation using acoustic telemetry. Coral Reefs 31, 55-65. (doi: 10.1007/s00338-011-0813-8)","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"striped parrotfish","3":"actinopterygii","4":"perciformes","5":"scaridae","6":"scarus","7":"iseri","8":"direct observation","9":"25","10":"171.42","11":"2.23406149","12":"NA","13":"1.720000e+02","14":"2.23552845","15":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"rivulated parrotfish","3":"actinopterygii","4":"perciformes","5":"scaridae","6":"scarus","7":"rivulatus","8":"telemetry","9":"18","10":"289.40","11":"2.46149853","12":"NA","13":"2.444278e+04","14":"4.38815060","15":"Welsh JQ, Bellwood DR. .2012. How far do schools of roving herbivores rove? A case study using Scarus rivulatus. Coral Reefs 31, 991-1003. (doi: 10.1007/s00338-012-0922-z)","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"redband parrotfish","3":"actinopterygii","4":"perciformes","5":"scaridae","6":"sparisoma","7":"aurofrenatum","8":"direct observation","9":"25","10":"250.64","11":"2.39905038","12":"NA","13":"2.870000e+02","14":"2.45788190","15":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"redtail parrotfish","3":"actinopterygii","4":"perciformes","5":"scaridae","6":"sparisoma","7":"chrysopterum","8":"direct observation","9":"17","10":"388.84","11":"2.58977093","12":"NA","13":"1.650000e+02","14":"2.21748394","15":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"redfin parrotfish","3":"actinopterygii","4":"perciformes","5":"scaridae","6":"sparisoma","7":"rubripinne","8":"direct observation","9":"17","10":"523.80","11":"2.71916549","12":"NA","13":"1.750000e+02","14":"2.24303805","15":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"stoplight parrotfish","3":"actinopterygii","4":"perciformes","5":"scaridae","6":"sparisoma","7":"viride","8":"direct observation","9":"27","10":"521.16","11":"2.71697108","12":"NA","13":"7.200000e+01","14":"1.85733250","15":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"peacock hind","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"cephalopholis","7":"argus","8":"mark-recapture","9":"16","10":"697.00","11":"2.84323278","12":"NA","13":"1.300000e+03","14":"3.11394335","15":"Shpigel M, Fishelson L. 1991. Territoriality and associated behaviour in three species of the genus Cephalopholis (Pisces: Serranidae) in the Gulf of Aqaba, Red Sea. Journal of Fisheries Biology 38, 887-896.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"6.50","22":"0.8129134","23":"107.230000","24":"Dierking J, Williams ID, Walsh W. 2009. Diet composition and prey selection of the introduced grouper species peacock hind (Cephalopholis argus) in Hawaii. Fish. Bull. 107:464476."},{"1":"marine fishes","2":"graysby","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"cephalopholis","7":"cruentata","8":"telemetry","9":"10","10":"436.24","11":"2.63972549","12":"NA","13":"2.120000e+03","14":"3.32633586","15":"Popple ID, Hunte W. 2005. Movement patterns of Cephalopholis cruentata in a marine reserve in St Lucia, W.I., obtained from ultrasonic telemetry. Journal of Fish Biology 67, 981-992.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"yellowfin hind","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"cephalopholis","7":"hemistiktos","8":"mark-recapture","9":"9","10":"119.00","11":"2.07554696","12":"NA","13":"1.200000e+01","14":"1.07918125","15":"Shpigel M, Fishelson L. 1991. Territoriality and associated behaviour in three species of the genus Cephalopholis (Pisces: Serranidae) in the Gulf of Aqaba, Red Sea. Journal of Fisheries Biology 38, 887-896.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"coral hind","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"cephalopholis","7":"miniata","8":"mark-recapture","9":"19","10":"476.00","11":"2.67760695","12":"NA","13":"2.170000e+02","14":"2.33645973","15":"Shpigel M, Fishelson L. 1991. Territoriality and associated behaviour in three species of the genus Cephalopholis (Pisces: Serranidae) in the Gulf of Aqaba, Red Sea. Journal of Fisheries Biology 38, 887-896.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"red hind","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"epinephelus","7":"guttatus","8":"mark-recapture","9":"NA","10":"312.30","11":"2.49457198","12":"NA","13":"1.243400e+03","14":"3.09461086","15":"Shapiro DY, Garcia-Moliner G, Sadovy Y. 1994. Social system of an inshore stock of the red hind grouper, Ephephelus guttatus (Pisces : Serranidae). Environmental Biology of Fishes 41, 415-422.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"dusky grouper","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"epinephelus","7":"marginatus","8":"telemetry","9":"7","10":"398.51","11":"2.60043922","12":"NA","13":"5.312000e+03","14":"3.72525807","15":"Lembo G, Spedicato MT, kland F, et al. 2002. A wireless communication system for determining site fidelity of juvenile dusky groupers Epinephelus marginatus (Lowe, 1834) using coded acoustic transmitters. Hydrobiologia 483, 249-257.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"4.48","22":"0.6512780","23":"88.950000","24":"Linde M, Grau AM, Riera F, Massuti-Pascual E. 2004. Analysis of Trophic Ontogeny in Epinephelus Marginatus (Serranidae). Cybium 28(1): 27-35."},{"1":"marine fishes","2":"red grouper","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"epinephelus","7":"morio","8":"telemetry","9":"45","10":"2181.15","11":"3.33868553","12":"NA","13":"2.087500e+06","14":"6.31962648","15":"Farmer NA, Ault JS. 2011. Grouper and snapper movements and habitat use in Dry Tortugas, Florida. Marine Ecology Progress Series 433, 169-184.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"nassau grouper","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"epinephelus","7":"striatus","8":"telemetry","9":"22","10":"2362.06","11":"3.37329093","12":"NA","13":"1.830500e+04","14":"4.26256973","15":"Bolden SK. 2001. Using Ultrasonic Telemetry to Determine Home Range of a Coral-Reef Fish. In: Sibert JR, Nielsen JL, eds. Electronic Tagging and Tracking in Marine Fisheries New York, NY: Springer. 484p.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"13.26","22":"1.1225435","23":"178.134238","24":"Sadovy Y, Eklund A-M. 1999. Synopsis of Biological Data on the Nassau Grouper, Epinephelus striatus (Bloch, 1792), and the Jewfish, E. itajara (Lichtenstein 1822). NOAA Technical Report NMFS 146."},{"1":"marine fishes","2":"greasy grouper","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"epinephelus","7":"tauvina","8":"telemetry","9":"14","10":"3081.08","11":"3.48870297","12":"NA","13":"2.990000e+05","14":"5.47567119","15":"Kaunda-Arara B, Rose GA. 2004. Homing and site fidelity in the greasy grouper Epinephelus tauvina (Serranidae) within a marine protected area in coastal Kenya. Marine Ecology Progress Series 277, 245-251.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"redbanded perch","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"hypoplectrodes","7":"huntii","8":"direct observation","9":"6","10":"119.00","11":"2.07554696","12":"NA","13":"2.190000e+00","14":"0.34044411","15":"Jones GP. 1980. Contribution to the biology of the redbanded perch, Ellerkeidia huntii (Hector), with a discussion on hermaphroditism. Journal of Fisheries Biology 17, 197-207.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"half-banded seaperch","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"hypoplectrodes","7":"maccullochi","8":"mark-recapture","9":"13","10":"24.87","11":"1.39567578","12":"NA","13":"6.830000e+00","14":"0.83442070","15":"Kingsford MJ, Carlson IJ. 2010. Patterns of distribution and movement of fishes, Ophthalmolepis lineolatus and Hypoplectrodes maccullochi, on temperate rocky reefs of south eastern Australia. Environmental Biology of Fishes 88, 105-118. (doi: 10.1007/s10641-010-9621-1)","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"black grouper","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"mycteroperca","7":"bonaci","8":"telemetry","9":"3","10":"3247.34","11":"3.51152776","12":"NA","13":"1.435000e+06","14":"6.15685190","15":"Farmer NA, Ault JS. 2011. Grouper and snapper movements and habitat use in Dry Tortugas, Florida. Marine Ecology Progress Series 433, 169-184.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"kelp bass","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"paralabrax","7":"clathratus","8":"telemetry","9":"12","10":"378.42","11":"2.57797408","12":"NA","13":"3.760250e+03","14":"3.57521672","15":"Lowe CG, Topping DT, Cartamil DP, et al. 2003. Movement patterns, home range, and habitat utilization of adult kelp bass Paralabrax clathratus in a temperate no-take marine reserve. Marine Ecology Progress Series 256, 205-216.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"barred sand bass","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"paralabrax","7":"nebulifer","8":"telemetry","9":"8","10":"1527.64","11":"3.18402102","12":"NA","13":"1.000271e+04","14":"4.00011768","15":"Mason TJ, Lowe CG. 2010. Home range, habitat use, and site fidelity of barred sand bass within a southern California marine protected area. Fisheries Research 106, 93-101.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"coral grouper","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"plectropomus","7":"areolatus","8":"telemetry","9":"15","10":"1992.23","11":"3.29933948","12":"NA","13":"1.680000e+05","14":"5.22530928","15":"Hutchinson N, Rhodes KL. 2010. Home range estimates for squaretail coralgrouper, Plectropomus areolatus (Rppell 1830). Coral Reefs 29: 511-519.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"coral trout","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"plectropomus","7":"leopardus","8":"telemetry","9":"39","10":"1753.40","11":"3.24388100","12":"NA","13":"1.879600e+04","14":"4.27406544","15":"Zeller DC. 1997. Home range and activity patterns of the coral trout Plectropomus leopardus (Serranidae). Marine Ecology Progress Series. 154, 65-77.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"49.01","22":"1.6902847","23":"35.780000","24":"St John J. 1999. Ontogenetic changes in the diet of the coral reef grouper Plectropomus leopardus (Serranidae): patterns in taxa, size and habitat of prey. Marine Ecology Progress Series 180, 233-246."},{"1":"marine fishes","2":"comber","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"serranus","7":"cabrilla","8":"telemetry","9":"15","10":"41.11","11":"1.61394748","12":"NA","13":"7.616667e+05","14":"5.88176495","15":"Als J, March D, Palmer M, Grau A, Morales-Nin. 2011. Spatial and temporal patterns in Serranus cabrilla habitat use in the NW Mediterranean revealed by acoustic telemetry. Marine Ecology Progress Series 427, 173 - 186.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"painted comber","3":"actinopterygii","4":"perciformes","5":"serranidae","6":"serranus","7":"scriba","8":"telemetry","9":"15","10":"75.93","11":"1.88041340","12":"NA","13":"1.107500e+06","14":"6.04434373","15":"March D, Palmer M, Als J, et al. 2010. Short-term residence, home range size and diel patterns of the painted comber Serranus scriba in a temperate marine reserve. Marine Ecology Progress Series 400, 195-206.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"salema","3":"actinopterygii","4":"perciformes","5":"sparidae","6":"sarpa","7":"salpa","8":"telemetry","9":"NA","10":"731.58","11":"2.86426182","12":"NA","13":"4.948214e+04","14":"4.69444847","15":"Jadot C, Donnay A, Acolas ML, et al. 2006. Activity patterns, home-range size, and habitat utilization of Sarpa salpa (Teleostei: Sparidae) in the Mediterranean Sea. ICES Journal of Marine Science 63, 128-139.","16":"aquatic","17":"ectotherm","18":"swimming","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"gilthead seabream","3":"actinopterygii","4":"perciformes","5":"sparidae","6":"sparus","7":"auratus","8":"telemetry","9":"NA","10":"934.20","11":"2.97043986","12":"NA","13":"2.975481e+04","14":"4.47355718","15":"Parsons DM, Babcock RC, Hankin RKS, et al. 2003. Snapper Pagrus auratus (Sparidae) home range dynamics: acoustic tagging studies in a marine reserve. Marine Ecology Progress Series 262, 253-265.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"cutthroat trout","3":"actinopterygii","4":"salmoniformes","5":"salmonidae","6":"oncorhynchus","7":"clarki","8":"mark-recapture","9":"58","10":"99.20","11":"1.99651167","12":"NA","13":"1.012500e+02","14":"2.00539503","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"gila trout","3":"actinopterygii","4":"salmoniformes","5":"salmonidae","6":"oncorhynchus","7":"gilae","8":"mark-recapture","9":"129","10":"47.00","11":"1.67209786","12":"NA","13":"3.437000e+02","14":"2.53617953","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"rainbow trout","3":"actinopterygii","4":"salmoniformes","5":"salmonidae","6":"oncorhynchus","7":"mykiss","8":"mark-recapture","9":"125","10":"109.00","11":"2.03742650","12":"NA","13":"1.740000e+02","14":"2.24054925","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"atlantic salmon","3":"actinopterygii","4":"salmoniformes","5":"salmonidae","6":"salmo","7":"salar","8":"mark-recapture","9":"MCP","10":"2.00","11":"0.30103000","12":"NA","13":"4.500000e+01","14":"1.65321251","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lake fishes","2":"brown trout","3":"actinopterygii","4":"salmoniformes","5":"salmonidae","6":"salmo","7":"trutta","8":"telemetry","9":"NA","10":"402.00","11":"2.60422605","12":"NA","13":"1.528840e+04","14":"4.18436204","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"1.96","22":"0.2922561","23":"205.100000","24":"Hyvarinen P, Huusko A. 2006. Diet of brown trout in relation to variation in abundance and size of pelagic fish prey. Journal of Fish Biology 68, 8798."},{"1":"river fishes","2":"mottled sculpin","3":"actinopterygii","4":"scorpaeniformes","5":"cottidae","6":"cottus","7":"bairdi","8":"mark-recapture","9":"51","10":"5.00","11":"0.69897000","12":"NA","13":"8.390000e+01","14":"1.92376196","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"banded sculpin","3":"actinopterygii","4":"scorpaeniformes","5":"cottidae","6":"cottus","7":"carolinae","8":"mark-recapture","9":"32","10":"3.00","11":"0.47712126","12":"NA","13":"4.700000e+01","14":"1.67209786","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"river fishes","2":"sculpin","3":"actinopterygii","4":"scorpaeniformes","5":"cottidae","6":"cottus","7":"gobio","8":"mark-recapture","9":"NA","10":"5.00","11":"0.69897000","12":"NA","13":"4.813000e+01","14":"1.68241586","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"copper rockfish","3":"actinopterygii","4":"scorpaeniformes","5":"sebastidae","6":"sebastes","7":"caurinus","8":"telemetry","9":"4","10":"1100.33","11":"3.04152295","12":"NA","13":"2.157750e+03","14":"3.33400112","15":"Tolimieri N, Andrews K, Williams G, et al. 2009. Home range size and patterns of space use by lingcod, copper rockfish and quillback rockfish in relation to diel and tidal cycles. Marine Ecology Progress Series. 380, 229-243. (doi: 10.3354/meps07930)","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"6.80","22":"0.8325089","23":"161.810000","24":"Murie DJ. 1995. Comparative feeding ecology of two sympatric rockfish congeners, Sebastes caurinus (copper rockfish) and S. maliger (quillback rockfish). Marine Biology 124: 341-353."},{"1":"marine fishes","2":"japanese black rockfish","3":"actinopterygii","4":"scorpaeniformes","5":"sebastidae","6":"sebastes","7":"inermis","8":"telemetry","9":"3","10":"99.25","11":"1.99673052","12":"NA","13":"8.154000e+02","14":"2.91137071","15":"Mitamura H, Uchida K, Miyamoto Y, et al. 2009. Preliminary study on homing, site fidelity, and diel movement of black rockfish Sebastes inermis measured by acoustic telemetry. Fisheries Science 75, 113-1140.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"0.67","22":"-0.1739252","23":"148.130000","24":"Honda H, Masatoshi K. 1997. Size selective feeding and its limitations for the black rockfish, Sebastes inermis, in a demersal fish assemblage of Onagawa Bay, northeastern Japan. Environmental Biology of Fishes 50: 183193."},{"1":"marine fishes","2":"quillback rockfish","3":"actinopterygii","4":"scorpaeniformes","5":"sebastidae","6":"sebastes","7":"maliger","8":"telemetry","9":"5","10":"1341.25","11":"3.12750973","12":"NA","13":"1.571000e+03","14":"3.19617619","15":"Tolimieri N, Andrews K, Williams G, et al. 2009. Home range size and patterns of space use by lingcod, copper rockfish and quillback rockfish in relation to diel and tidal cycles. Marine Ecology Progress Series. 380, 229-243. (doi: 10.3354/meps07930)","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"7.80","22":"0.8920946","23":"171.960000","24":"Murie DJ. 1995. Comparative feeding ecology of two sympatric rockfish congeners, Sebastes caurinus (copper rockfish) and S. maliger (quillback rockfish). Marine Biology 124: 341-353."},{"1":"marine fishes","2":"black rockfish","3":"actinopterygii","4":"scorpaeniformes","5":"sebastidae","6":"sebastes","7":"melanops","8":"telemetry","9":"23","10":"737.78","11":"2.86792688","12":"NA","13":"2.500000e+05","14":"5.39794001","15":"Green KM, Starr RM. 2011. Movements of small adult black rockfish: implications for the design of MPAs. Marine Ecology Progress Series 14, 219-230.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"blue rockfish","3":"actinopterygii","4":"scorpaeniformes","5":"sebastidae","6":"sebastes","7":"mustinus","8":"telemetry","9":"10","10":"780.54","11":"2.89239516","12":"NA","13":"3.469240e+04","14":"4.54023435","15":"Jorgensen SJ, Kaplan DM, Klimley AP, et al. 2006. Limited movement in blue rockfish Sebastes mystinus: internal structure of home range. Marine Ecology Progress Series 327, 157-170.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lake fishes","2":"yellow bullhead","3":"actinopterygii","4":"siluriformes","5":"ictaluridae","6":"ictalurus","7":"natalis","8":"mark-recapture","9":"27","10":"202.00","11":"2.30535137","12":"NA","13":"6.145740e+03","14":"3.78857418","15":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"long-snouted seahorse","3":"actinopterygii","4":"syngnathiformes","5":"syngnathidae","6":"hippocampus","7":"guttulatus","8":"mark-recapture","9":"NA","10":"9.55","11":"0.98000337","12":"NA","13":"1.990000e+01","14":"1.29885308","15":"Curtis JMR, Vincent CJ. 2006. Life history of an unusual marine fish: survival, growth and movement patterns of Hippocampus guttulatus Cuvier 1829. Journal of Fisheries Biology 68, 707-733.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"worm pipefish","3":"actinopterygii","4":"syngnathiformes","5":"syngnathidae","6":"nerophis","7":"lumbriciformis","8":"direct observation","9":"NA","10":"1.22","11":"0.08635983","12":"NA","13":"1.260000e+01","14":"1.10037055","15":"Monteiro NM, da Natividade Viera M, Almada V. 2005. Homing behaviour and individual identification of the pipefish Nerophis lumbriciformis (Pisces; Syngnathidae): a true intertidal resident? Estuarine and Coastal Shelf Science 63, 93-99.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"marine fishes","2":"atlantic sharpnose puffer","3":"actinopterygii","4":"tetraodontiformes","5":"tetraodontidae","6":"canthigaster","7":"rostrata","8":"mark-recapture","9":"NA","10":"8.96","11":"0.95230801","12":"NA","13":"1.515000e+02","14":"2.18041263","15":"Sikkel PC. 1990. Social organization and spawning in the Atlantic sharpnose puffer, Canthigaster rostrata (Tetraodontidae). Environmental Biology of Fishes 27, 243-254.","16":"aquatic","17":"ectotherm","18":"swimming","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"golden eagle","3":"aves","4":"accipitriformes","5":"accipitridae","6":"aquila","7":"chrysaetos","8":"telemetry*","9":"NA","10":"3000.00","11":"3.47712126","12":"NA","13":"2.755000e+07","14":"7.44012160","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"636.94","22":"2.8040985","23":"4.710000","24":"Gliwicz J. 2008. Body Size Relationships between Avian Predators and Their Rodent Prey in a North-American Sagebrush Community. Acta Ornithologica, 43(2):151-158."},{"1":"birds","2":"common buzzard","3":"aves","4":"accipitriformes","5":"accipitridae","6":"buteo","7":"buteo","8":"telemetry*","9":"NA","10":"846.00","11":"2.92737036","12":"NA","13":"5.024000e+07","14":"7.70104963","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"275.84","22":"2.4406572","23":"3.067000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"short-toed snake eagle","3":"aves","4":"accipitriformes","5":"accipitridae","6":"circaetus","7":"gallicus","8":"telemetry*","9":"NA","10":"1699.00","11":"3.23019338","12":"NA","13":"7.850000e+07","14":"7.89486966","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"164.95","22":"2.2173523","23":"10.300000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"Bonelli's eagle","3":"aves","4":"accipitriformes","5":"accipitridae","6":"hieraaetus","7":"fasciatus","8":"telemetry*","9":"NA","10":"2049.00","11":"3.31154196","12":"NA","13":"1.962000e+07","14":"7.29269900","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"booted eagle","3":"aves","4":"accipitriformes","5":"accipitridae","6":"hieraaetus","7":"pennatus","8":"telemetry","9":"4","10":"975.00","11":"2.98900462","12":"NA","13":"1.173000e+08","14":"8.06929801","15":"Martinez JE, Pagan I, Palazon JA, Calvo JF. 2007. Habitat use of booted eagles (Hieraaetus pennatus) in a Special Protection Area: implications for conservation. Biodiversity Conservation 16, 3481-3488.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"365.17","22":"2.5624951","23":"2.560000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"Egyptian vulture","3":"aves","4":"accipitriformes","5":"accipitridae","6":"neophron","7":"percnopterus","8":"telemetry*","9":"NA","10":"2203.00","11":"3.34301450","12":"NA","13":"6.357000e+07","14":"7.80325221","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"gadwall","3":"aves","4":"anseriformes","5":"anatidae","6":"anas","7":"strepera","8":"telemetry","9":"3","10":"719.00","11":"2.85672889","12":"NA","13":"4.591200e+07","14":"7.66192621","15":"Namgail T, Takekawa JY, Balachandran S, Sathiyaselvam P, Mundkur T, Newman SH. 2014. Space use of wintering waterbirds in India: Influence of trophic ecology on home-range size. Current Zoology 60(5), 616-621.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"northern brown kiwi","3":"aves","4":"apterygiformes","5":"apterygidae","6":"apteryx","7":"australis","8":"telemetry","9":"6","10":"2320.00","11":"3.36548799","12":"NA","13":"4.639000e+05","14":"5.66642437","15":"Miles JRG Miles, Potter MA, Fordham RA. 1997. Northern brown kiwi (Apteryx australis mantelli) in Tongariro National Park and Tongariro Forest ecology and threats. Science for Conservation 51, 1-23.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"European nightjar","3":"aves","4":"caprimulgiformes","5":"caprimulgidae","6":"caprimulgus","7":"europaeus","8":"telemetry*","9":"NA","10":"48.00","11":"1.68124124","12":"NA","13":"7.850000e+05","14":"5.89486966","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"oystercatcher","3":"aves","4":"charadriiformes","5":"haematopodidae","6":"haematopus","7":"ostralegus","8":"telemetry","9":"8","10":"521.00","11":"2.71683772","12":"NA","13":"2.460000e+06","14":"6.39093511","15":"Schwemmer P, Garthe S. 2011. Spatial and temporal patterns of habitat use by Eurasian oystercatchers (Haematopus ostralegus) in the eastern Wadden Sea revealed using GPS data loggers. Marine Biology 158, 541-550.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"inca dove","3":"aves","4":"columbidormes","5":"columbidae","6":"scardafella","7":"inca","8":"direct observation","9":"NA","10":"47.70","11":"1.67851838","12":"NA","13":"2.589980e+03","14":"3.41329641","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"common wood pigeon","3":"aves","4":"columbiformes","5":"columbidae","6":"columba","7":"palumbus","8":"telemetry*","9":"NA","10":"150.00","11":"2.17609126","12":"NA","13":"2.540000e+06","14":"6.40483372","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"European turtle dove","3":"aves","4":"columbiformes","5":"columbidae","6":"streptopelia","7":"turtur","8":"telemetry*","9":"NA","10":"140.33","11":"2.14715052","12":"NA","13":"6.358500e+07","14":"7.80335468","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"European roller","3":"aves","4":"coraciiformes","5":"coraciidae","6":"coracias","7":"garrulus","8":"telemetry*","9":"NA","10":"103.00","11":"2.01283723","12":"NA","13":"1.000000e+06","14":"6.00000000","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"hoopoe","3":"aves","4":"coraciiformes","5":"upupidae","6":"upupa","7":"epops","8":"telemetry*","9":"NA","10":"67.00","11":"1.82607480","12":"NA","13":"1.256000e+07","14":"7.09898964","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"great spotted cuckoo","3":"aves","4":"cuculiformes","5":"cuculidae","6":"clamator","7":"glandarius","8":"telemetry*","9":"NA","10":"151.50","11":"2.18041263","12":"NA","13":"1.256000e+07","14":"7.09898964","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"common cuckoo","3":"aves","4":"cuculiformes","5":"cuculidae","6":"cuculus","7":"canorus","8":"telemetry*","9":"NA","10":"128.00","11":"2.10720997","12":"NA","13":"3.846000e+07","14":"7.58500928","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"greater roadrunner","3":"aves","4":"cuculiformes","5":"cuculidae","6":"geococcyx","7":"californianus","8":"telemetry","9":"9","10":"300.00","11":"2.47712126","12":"Weight calculated from telemetry backpack (10g = 3% body mass)","13":"5.500000e+05","14":"5.74036269","15":"Kelley SW, Ransom D, Butcher JA, Schulz GG, Surber BW, Punchak WE, Santamaria CA, Hurtado LA. 2011. Home range dynamics, habitat selection, and survival of Greater Roadrunners. Journal of Field Ornithology 82(2), 165-174.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"banded ground-cuckoo","3":"aves","4":"cuculiformes","5":"cuculidae","6":"neopmorphus","7":"radiolosus","8":"telemetry","9":"1","10":"433.00","11":"2.63648790","12":"NA","13":"4.990000e+05","14":"5.69810055","15":"Karubuan J, Carrasco L. 2008. Home Range and Habitat Preferences of the Banded Ground-cuckoo. The Wilson Journal of Ornithology 120(1):205-209.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Cooper's hawk","3":"aves","4":"falconiformes","5":"accipitridae","6":"accipiter","7":"cooperii","8":"direct observation","9":"NA","10":"469.00","11":"2.67117284","12":"NA","13":"2.254095e+06","14":"6.35297230","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"88.99","22":"1.9493412","23":"5.270000","24":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"Northern goshawk","3":"aves","4":"falconiformes","5":"accipitridae","6":"accipiter","7":"gentilis","8":"direct observation","9":"NA","10":"978.00","11":"2.99033886","12":"NA","13":"4.000000e+07","14":"7.60205999","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"327.00","22":"2.5145478","23":"2.990000","24":"Schoener TW. 1968. Sizes of Feeding Territories among Birds. Ecology 49(1), 123-141."},{"1":"birds","2":"Eurasian sparrowhawk","3":"aves","4":"falconiformes","5":"accipitridae","6":"accipiter","7":"nisus","8":"telemetry*","9":"NA","10":"807.00","11":"2.90687353","12":"NA","13":"7.100000e+06","14":"6.85125835","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"sharp-shinned hawk","3":"aves","4":"falconiformes","5":"accipitridae","6":"accipiter","7":"striatus","8":"direct observation","9":"NA","10":"141.00","11":"2.14921911","12":"NA","13":"9.955251e+05","14":"5.99805221","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"41.96","22":"1.6228355","23":"3.360000","24":"Schoener TW. 1968. Sizes of Feeding Territories among Birds. Ecology 49(1), 123-141."},{"1":"birds","2":"red-tailed hawk","3":"aves","4":"falconiformes","5":"accipitridae","6":"buteo","7":"jamaicensis","8":"direct observation","9":"NA","10":"1126.00","11":"3.05153839","12":"NA","13":"4.249193e+06","14":"6.62830641","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"198.94","22":"2.2987221","23":"5.660000","24":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"red-shouldered hawk","3":"aves","4":"falconiformes","5":"accipitridae","6":"buteo","7":"lineatus","8":"direct observation","9":"NA","10":"626.00","11":"2.79657433","12":"NA","13":"6.394023e+05","14":"5.80577419","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"43.99","22":"1.6433540","23":"14.230000","24":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"Swainson's hawk","3":"aves","4":"falconiformes","5":"accipitridae","6":"buteo","7":"swainsoni","8":"direct observation","9":"NA","10":"971.00","11":"2.98721923","12":"NA","13":"2.464532e+06","14":"6.39173440","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"344.33","22":"2.5369749","23":"2.820000","24":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"hen harrier","3":"aves","4":"falconiformes","5":"accipitridae","6":"circus","7":"cyaneus","8":"direct observation","9":"NA","10":"521.00","11":"2.71683772","12":"NA","13":"2.521188e+06","14":"6.40160515","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"49.01","22":"1.6902847","23":"10.630000","24":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"Montagu's harrier","3":"aves","4":"falconiformes","5":"accipitridae","6":"circus","7":"pygargus","8":"telemetry*","9":"NA","10":"315.50","11":"2.49899936","12":"NA","13":"2.009800e+08","14":"8.30315284","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"red kite","3":"aves","4":"falconiformes","5":"accipitridae","6":"milvus","7":"milvus","8":"telemetry*","9":"NA","10":"1033.70","11":"3.01439452","12":"NA","13":"1.962500e+07","14":"7.29280967","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"527.40","22":"2.7221401","23":"1.960000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"caracara","3":"aves","4":"falconiformes","5":"falconidae","6":"caracara","7":"cheriway","8":"telemetry","9":"26","10":"1125.00","11":"3.05115252","12":"NA","13":"2.410000e+08","14":"8.38201704","15":"Dwyer JF, Fraser JD, Morrison JL. 2013. Range sizes and habitat use of non-breeding Crested Caracaras in Florida. Journal of Field Ornithology 84(3), 223-233.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"red-throated caracara","3":"aves","4":"falconiformes","5":"falconidae","6":"daptrius","7":"americanus","8":"direct observation","9":"6","10":"625.00","11":"2.79588002","12":"NA","13":"6.660000e+05","14":"5.82347423","15":"Thiollay J-M. 2008. Foraging, home range use and social behaviour of a group-living rainforest raptor, the Red-throated Caracara Daptrius americanus. Ibis 133(4), 382-393.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"lanner falcon","3":"aves","4":"falconiformes","5":"falconidae","6":"falco","7":"biarmicus","8":"telemetry*","9":"NA","10":"675.00","11":"2.82930377","12":"NA","13":"5.000000e+07","14":"7.69897000","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"prairie falcon","3":"aves","4":"falconiformes","5":"falconidae","6":"falco","7":"mexicanus","8":"direct observation","9":"NA","10":"721.00","11":"2.85793527","12":"NA","13":"2.577843e+07","14":"7.41125654","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"55.00","22":"1.7403627","23":"13.110000","24":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"peregrine falcon","3":"aves","4":"falconiformes","5":"falconidae","6":"falco","7":"peregrinus","8":"telemetry*","9":"NA","10":"781.50","11":"2.89292898","12":"NA","13":"1.538600e+08","14":"8.18712573","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"165.90","22":"2.2198464","23":"4.710000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"American kestrel","3":"aves","4":"falconiformes","5":"falconidae","6":"falco","7":"sparverius","8":"direct observation","9":"NA","10":"112.00","11":"2.04921802","12":"NA","13":"1.416398e+06","14":"6.15118515","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"32.00","22":"1.5051500","23":"3.500000","24":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"European kestrel","3":"aves","4":"falconiformes","5":"falconidae","6":"falco","7":"tinnunculus","8":"NA","9":"NA","10":"200.00","11":"2.30103000","12":"NA","13":"3.000000e+06","14":"6.47712126","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"16.81","22":"1.2255677","23":"11.900000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"hazel grouse","3":"aves","4":"galliformes","5":"phasianidae","6":"bonasa","7":"bonasia","8":"telemetry*","9":"NA","10":"410.00","11":"2.61278386","12":"NA","13":"1.030000e+05","14":"5.01283723","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"sage grouse","3":"aves","4":"galliformes","5":"phasianidae","6":"centrocercus","7":"urophasianus","8":"telemetry","9":"5","10":"1750.00","11":"3.24303805","12":"Beck TDI, Brain CE. 1978. Weights of Colorado Sage Grouse. The Condor 80(2), 241-243.","13":"1.815822e+07","14":"7.25907318","15":"Eng RL, Schladweiler P. 1972. Sage Grouse Winter Movements and Habitat Use in Central Montana. The Journal of Wildlife Management 36(1), 141-146.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"dusky grouse","3":"aves","4":"galliformes","5":"phasianidae","6":"dendragapus","7":"obscurus","8":"direct observation","9":"3","10":"1050.00","11":"3.02118930","12":"NA","13":"1.699677e+04","14":"4.23036640","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"willow ptarmigan","3":"aves","4":"galliformes","5":"phasianidae","6":"lagopus","7":"lagopus","8":"direct observation","9":"NA","10":"620.00","11":"2.79239169","12":"NA","13":"2.589984e+04","14":"4.41329708","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"grey partridge","3":"aves","4":"galliformes","5":"phasianidae","6":"perdix","7":"perdix","8":"telemetry*","9":"NA","10":"381.50","11":"2.58149454","12":"NA","13":"6.200000e+04","14":"4.79239169","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"black grouse","3":"aves","4":"galliformes","5":"phasianidae","6":"tetrao","7":"tetrix","8":"telemetry*","9":"NA","10":"1139.00","11":"3.05652372","12":"NA","13":"1.975000e+06","14":"6.29556710","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"western capercaillie","3":"aves","4":"galliformes","5":"phasianidae","6":"tetrao","7":"urogallus","8":"telemetry*","9":"NA","10":"2936.00","11":"3.46775605","12":"NA","13":"5.500000e+06","14":"6.74036269","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"greater prairie-chicken","3":"aves","4":"galliformes","5":"phasianidae","6":"typmanuchus","7":"cupido pinnatus","8":"telemetry","9":"71","10":"900.00","11":"2.95424251","12":"NA","13":"1.203000e+07","14":"7.08026563","15":"Patten, M. A., C. L. Pruett, and D. H. Wolfe. 2011. Home range size and movements of Greater Prairie-Chickens. Pp. 5162 in B. K. Sandercock, K. Martin, and G. Segelbacher (editors). Ecology, conservation, and management of grouse. Studies in Avian Biology (no. 39), University of California Press, Berkeley, CA.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"brown wood rail","3":"aves","4":"gruiformes","5":"rallidae","6":"aramides","7":"wolfi","8":"telemetry","9":"1","10":"506.00","11":"2.70415052","12":"NA","13":"9.000000e+04","14":"4.95424251","15":"Karubian J, Carrasco L, Mena P, Olivio J, Cabrera D, Castillo F, Duraes R, El Ksabi N. 2011. nesting Biology, Home Range, and Habitat Use of the Brown Wood Rail (Aramides wolfi) in Northwest Ecuador. The Wilson Journal or Ornithology 123(1), 137-141.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"corncrake","3":"aves","4":"gruiformes","5":"rallidae","6":"crex","7":"crex","8":"telemetry","9":"20","10":"165.00","11":"2.21748394","12":"Keiss O, Granats J, Mednis A. 2004. Use of biometrical data to study Corncrake Crex crex population in Latvia. Acta Universitatis Latviensis, Biology 676, 119126.","13":"4.300000e+04","14":"4.63346846","15":"Grabovsky VI. 1993.Spatial Distribution and Spacing Behaviour of Males in a Russion Corncrake (Crex crex) Population. Gibier Faune Sauvage 10, 259-279.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"king rail","3":"aves","4":"gruiformes","5":"rallidae","6":"rallus","7":"elegans","8":"telemetry","9":"18","10":"266.00","11":"2.42488164","12":"NA","13":"4.400000e+04","14":"4.64345268","15":"Pickens BA, King SL. 2013. Microhabitat Selection, Demography and Correlates of Home Range Size for the King Rail (Rallus elegans). Waterbirds 36(3), 319-329.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"melodious warbler","3":"aves","4":"passeriformes","5":"acrocephalisae","6":"hippolais","7":"polyglotta","8":"telemetry*","9":"NA","10":"11.00","11":"1.04139268","12":"NA","13":"3.000000e+04","14":"4.47712126","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"long-tailed tit","3":"aves","4":"passeriformes","5":"aegithalidae","6":"aegithalos","7":"caudatus","8":"telemetry*","9":"NA","10":"8.00","11":"0.90308999","12":"NA","13":"4.200000e+04","14":"4.62324929","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"woodlark","3":"aves","4":"passeriformes","5":"alaudidae","6":"lululla","7":"arborea","8":"direct observation","9":"NA","10":"30.00","11":"1.47712125","12":"NA","13":"8.296043e+04","14":"4.91887099","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"red-throated ant tanager","3":"aves","4":"passeriformes","5":"cardinalidae","6":"habia","7":"fuscicauda","8":"direct observation","9":"NA","10":"37.70","11":"1.57634135","12":"NA","13":"6.070275e+04","14":"4.78320837","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"red-crowned ant tanager","3":"aves","4":"passeriformes","5":"cardinalidae","6":"habia","7":"rubica","8":"direct observation","9":"NA","10":"32.80","11":"1.51587384","12":"NA","13":"4.856220e+04","14":"4.68629835","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Eurasian treecreeper","3":"aves","4":"passeriformes","5":"certhidae","6":"certhia","7":"familiaris","8":"telemetry*","9":"NA","10":"8.77","11":"0.94299959","12":"NA","13":"4.700000e+04","14":"4.67209786","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"streaked fantail warbler","3":"aves","4":"passeriformes","5":"cisticolidae","6":"cisticola","7":"juncidis","8":"telemetry*","9":"NA","10":"9.80","11":"0.99122608","12":"NA","13":"1.440000e+04","14":"4.15836249","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"common raven","3":"aves","4":"passeriformes","5":"corvidae","6":"corvus","7":"corax","8":"telemetry*","9":"NA","10":"1410.00","11":"3.14921911","12":"NA","13":"2.800000e+07","14":"7.44715803","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"spotted nutcracker","3":"aves","4":"passeriformes","5":"corvidae","6":"nucifraga","7":"caryocatactes","8":"direct observation","9":"NA","10":"130.00","11":"2.11394335","12":"NA","13":"1.323320e+05","14":"5.12166488","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Peruvian plantcutter","3":"aves","4":"passeriformes","5":"cotingidae","6":"phytotoma","7":"raimondii","8":"mark-recapture","9":"6","10":"42.00","11":"1.62324929","12":"Sabat P, Ramirez-Otatola , Barcelo G, Salinas J, Bozinovic F. Comparative basal metabolic rate among passerines and the food habit hypothesis. Comparative Biochemistry and Physiology Part A 157, 3540.","13":"3.090000e+04","14":"4.48995848","15":"Nolazco S, Sanchez AM, Roper JJ. 2014. Tamao poblacional, distribucin y mbito de hogar de la Cortarrama Peruana (Phytotoma raimondii) en el Santuario Histrico Bosque de Pmac, Lambayeque, Per. Boletn de la Unin de Ornitlogos del Per (UNOP), 9 (2): 5-19 .","16":"terrestrial","17":"endotherm","18":"flying","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"grasshopper sparrow","3":"aves","4":"passeriformes","5":"emberizidae","6":"ammodramus","7":"savannarum","8":"direct observation","9":"54","10":"16.70","11":"1.22271647","12":"NA","13":"1.092650e+04","14":"4.03848107","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"indigo bunting","3":"aves","4":"passeriformes","5":"emberizidae","6":"passerina","7":"cyanea","8":"direct observation","9":"10","10":"14.30","11":"1.15533604","12":"NA","13":"1.052180e+03","14":"3.02209004","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Abert's towhee","3":"aves","4":"passeriformes","5":"emberizidae","6":"pipilo","7":"aberti","8":"direct observation","9":"NA","10":"46.30","11":"1.66558099","12":"NA","13":"1.618740e+04","14":"4.20917710","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"canyon towhee","3":"aves","4":"passeriformes","5":"emberizidae","6":"pipilo","7":"fuscus","8":"direct observation","9":"34","10":"44.70","11":"1.65030752","12":"NA","13":"2.589984e+04","14":"4.41329708","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"American tree sparrow","3":"aves","4":"passeriformes","5":"emberizidae","6":"spizella","7":"arborea","8":"direct observation","9":"30","10":"18.10","11":"1.25767857","12":"NA","13":"1.699677e+04","14":"4.23036640","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"chipping sparrow","3":"aves","4":"passeriformes","5":"emberizidae","6":"spizella","7":"passerina","8":"direct observation","9":"NA","10":"12.20","11":"1.08635983","12":"NA","13":"3.075606e+04","14":"4.48793070","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"common linnet","3":"aves","4":"passeriformes","5":"fringillidae","6":"carduelis","7":"cannabina","8":"telemetry*","9":"NA","10":"1550.00","11":"3.19033170","12":"NA","13":"3.140000e+06","14":"6.49692965","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"common chaffinch","3":"aves","4":"passeriformes","5":"fringillidae","6":"fringilla","7":"coelebs","8":"telemetry*","9":"NA","10":"23.25","11":"1.36642296","12":"NA","13":"4.200000e+04","14":"4.62324929","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"European serin","3":"aves","4":"passeriformes","5":"fringillidae","6":"serinus","7":"serinus","8":"telemetry*","9":"NA","10":"10.70","11":"1.02938378","12":"NA","13":"1.000000e+04","14":"4.00000000","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"eastern meadowlark","3":"aves","4":"passeriformes","5":"icteridae","6":"sturnella","7":"magna","8":"direct observation","9":"NA","10":"89.00","11":"1.94939001","12":"NA","13":"3.035138e+04","14":"4.48217844","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"western meadowlard","3":"aves","4":"passeriformes","5":"icteridae","6":"sturnella","7":"neglecta","8":"direct observation","9":"NA","10":"89.00","11":"1.94939001","12":"NA","13":"3.035138e+04","14":"4.48217844","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"yellow-breasted chat","3":"aves","4":"passeriformes","5":"incertae","6":"icteria","7":"virens","8":"direct observation","9":"8","10":"27.00","11":"1.43136376","12":"NA","13":"1.335460e+03","14":"3.12563088","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"red-backed shrike","3":"aves","4":"passeriformes","5":"laniidae","6":"laniuis","7":"collurio","8":"direct observation","9":"NA","10":"30.00","11":"1.47712125","12":"NA","13":"1.578272e+04","14":"4.19818185","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"loggerhead shrike","3":"aves","4":"passeriformes","5":"laniidae","6":"laniuis","7":"ludovicianus","8":"direct observation","9":"NA","10":"48.10","11":"1.68214508","12":"NA","13":"7.567610e+04","14":"4.87895874","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"lesser grey shrike","3":"aves","4":"passeriformes","5":"laniidae","6":"lanius","7":"minor","8":"telemetry*","9":"NA","10":"44.22","11":"1.64561874","12":"NA","13":"6.358000e+05","14":"5.80332052","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"woodchat shrike","3":"aves","4":"passeriformes","5":"laniidae","6":"lanius","7":"senator","8":"telemetry*","9":"NA","10":"35.00","11":"1.54406804","12":"NA","13":"8.000000e+04","14":"4.90308999","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"northern mockingbird","3":"aves","4":"passeriformes","5":"mimidae","6":"mimus","7":"polyglottos","8":"direct observation","9":"NA","10":"50.10","11":"1.69983773","12":"NA","13":"4.046850e+03","14":"3.60711711","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"white wagtail","3":"aves","4":"passeriformes","5":"motacillidae","6":"motacilla","7":"alba","8":"telemetry*","9":"NA","10":"21.22","11":"1.32674538","12":"NA","13":"7.850000e+05","14":"5.89486966","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"western yellow wagtail","3":"aves","4":"passeriformes","5":"motacillidae","6":"motacilla","7":"flava","8":"direct observation","9":"NA","10":"17.50","11":"1.24303805","12":"NA","13":"1.011713e+04","14":"4.00505733","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"spotted flycatcher","3":"aves","4":"passeriformes","5":"muscicapidae","6":"muscicapa","7":"striata","8":"telemetry*","9":"NA","10":"12.80","11":"1.10720997","12":"NA","13":"1.000000e+04","14":"4.00000000","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"northern wheatear","3":"aves","4":"passeriformes","5":"muscicapidae","6":"oenanthe","7":"oenanthe","8":"direct observation","9":"NA","10":"25.20","11":"1.40140054","12":"NA","13":"1.537803e+04","14":"4.18690070","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"common redstart","3":"aves","4":"passeriformes","5":"muscicapidae","6":"phoenicurus","7":"phoenicurus","8":"telemetry*","9":"NA","10":"15.21","11":"1.18212921","12":"NA","13":"4.500000e+03","14":"3.65321251","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"whinchat","3":"aves","4":"passeriformes","5":"muscicapidae","6":"saxicola","7":"rubetra","8":"telemetry*","9":"NA","10":"16.48","11":"1.21695721","12":"NA","13":"7.300000e+03","14":"3.86332286","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"black-capped chickadee","3":"aves","4":"passeriformes","5":"paridae","6":"parus","7":"atricapillus","8":"direct observation","9":"NA","10":"11.00","11":"1.04139268","12":"NA","13":"1.456866e+04","14":"4.16341961","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Carolina chickadee","3":"aves","4":"passeriformes","5":"paridae","6":"parus","7":"carolinensis","8":"direct observation","9":"NA","10":"10.10","11":"1.00432137","12":"NA","13":"1.497335e+04","14":"4.17531898","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Oak titmouse","3":"aves","4":"passeriformes","5":"paridae","6":"parus","7":"inornatus","8":"direct observation","9":"NA","10":"16.60","11":"1.22010809","12":"NA","13":"2.428110e+04","14":"4.38526836","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"marsh tit","3":"aves","4":"passeriformes","5":"paridae","6":"parus","7":"palustris","8":"direct observation","9":"NA","10":"11.00","11":"1.04139268","12":"NA","13":"2.266236e+04","14":"4.35530513","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"mourning warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"geothlypis","7":"philadelphia","8":"direct observation","9":"NA","10":"11.30","11":"1.05307844","12":"NA","13":"7.689020e+03","14":"3.88587099","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"common yellowthroat","3":"aves","4":"passeriformes","5":"parulidae","6":"geothylpis","7":"trichas","8":"direct observation","9":"NA","10":"9.80","11":"0.99122608","12":"NA","13":"5.260910e+03","14":"3.72106087","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"prothonotary warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"protonotaria","7":"citrea","8":"direct observation","9":"NA","10":"16.10","11":"1.20682588","12":"NA","13":"1.497335e+04","14":"4.17531898","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"ovenbird","3":"aves","4":"passeriformes","5":"parulidae","6":"seiurus","7":"aurocapillus","8":"direct observation","9":"NA","10":"18.90","11":"1.27646180","12":"NA","13":"1.011713e+04","14":"4.00505733","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Blackburnian warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"setophaga","7":"fusca","8":"direct observation","9":"NA","10":"9.70","11":"0.98677173","12":"NA","13":"5.260910e+03","14":"3.72106087","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Kirtland's warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"setophaga","7":"kirtlandi","8":"direct observation","9":"NA","10":"14.00","11":"1.14612804","12":"NA","13":"3.399354e+04","14":"4.53139639","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"magnolia warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"setophaga","7":"magnolia","8":"direct observation","9":"NA","10":"8.60","11":"0.93449845","12":"NA","13":"7.284330e+03","14":"3.86238961","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"chestnut-sided warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"setophaga","7":"pensylvanica","8":"direct observation","9":"NA","10":"9.60","11":"0.98227123","12":"NA","13":"6.070280e+03","14":"3.78320872","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"American yellow warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"setophaga","7":"petechia","8":"direct observation","9":"8","10":"9.50","11":"0.97772360","12":"NA","13":"1.699680e+03","14":"3.23036716","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"American redstart","3":"aves","4":"passeriformes","5":"parulidae","6":"setophaga","7":"ruticilla","8":"direct observation","9":"NA","10":"9.00","11":"0.95424251","12":"NA","13":"1.942490e+03","14":"3.28835879","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"black-throated green warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"setophaga","7":"virens","8":"direct observation","9":"NA","10":"9.00","11":"0.95424251","12":"NA","13":"6.474960e+03","14":"3.81123709","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Canada warbler","3":"aves","4":"passeriformes","5":"parulidae","6":"wilsonia","7":"canadensis","8":"direct observation","9":"NA","10":"9.30","11":"0.96848295","12":"NA","13":"1.011713e+04","14":"4.00505733","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Western Bonelli's warbler","3":"aves","4":"passeriformes","5":"phylloscopidae","6":"phylloscopus","7":"bonelli","8":"telemetry*","9":"NA","10":"7.50","11":"0.87506126","12":"NA","13":"3.500000e+04","14":"4.54406804","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"tooth-billed bowerbird","3":"aves","4":"passeriformes","5":"ptilonorhynchidae","6":"scenopoeetes","7":"dentirostris","8":"telemetry","9":"4","10":"158.00","11":"2.19865709","12":"Frith CB, Frith DW. 2001. Morphology, Moult and Survival in Three Sympatric Bowerbirds in Australian Wet Tropics Upland Rainforest. Corella 25(3): 41-60.","13":"9.500000e+04","14":"4.97772361","15":"Frith CB, Frith DW. 2001. Morphology, Moult, and Survival in Three Sympatric Bowerirds in Australian Wet Tropics Upland Rainforest. Corella 25(3), 41-60.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"common firecrest","3":"aves","4":"passeriformes","5":"regulidae","6":"regulus","7":"ignicapillus","8":"telemetry*","9":"NA","10":"5.30","11":"0.72427587","12":"NA","13":"1.650000e+04","14":"4.21748394","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"goldcrest","3":"aves","4":"passeriformes","5":"regulidae","6":"regulus","7":"regulus","8":"telemetry*","9":"NA","10":"5.15","11":"0.71180723","12":"NA","13":"1.990000e+04","14":"4.29885308","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"European nuthatch","3":"aves","4":"passeriformes","5":"stittidae","6":"sitta","7":"europaea","8":"telemetry*","9":"NA","10":"18.30","11":"1.26245109","12":"NA","13":"2.100000e+04","14":"4.32221930","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"wrentit","3":"aves","4":"passeriformes","5":"sylvidae","6":"chamaea","7":"fasciata","8":"direct observation","9":"NA","10":"14.80","11":"1.17026172","12":"NA","13":"3.237480e+03","14":"3.51020709","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Marmora's warbler","3":"aves","4":"passeriformes","5":"sylviidae","6":"sylvia","7":"sarda","8":"telemetry*","9":"NA","10":"10.50","11":"1.02118930","12":"NA","13":"3.300000e+03","14":"3.51851394","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Dartford warbler","3":"aves","4":"passeriformes","5":"sylviidae","6":"sylvia","7":"undata","8":"telemetry*","9":"NA","10":"8.80","11":"0.94448267","12":"NA","13":"2.800000e+03","14":"3.44715803","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Berwick's wren","3":"aves","4":"passeriformes","5":"troglodytidae","6":"thryomanes","7":"bewickiI","8":"direct observation","9":"NA","10":"11.00","11":"1.04139268","12":"NA","13":"4.856220e+03","14":"3.68629835","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Carolina wren","3":"aves","4":"passeriformes","5":"troglodytidae","6":"thryothorus","7":"ludovicianus","8":"direct observation","9":"6","10":"18.50","11":"1.26717173","12":"NA","13":"1.214060e+03","14":"3.08424015","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"house wren","3":"aves","4":"passeriformes","5":"troglodytidae","6":"troglodytes","7":"aedon","8":"direct observation","9":"NA","10":"11.20","11":"1.04921802","12":"NA","13":"4.046850e+03","14":"3.60711711","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Eurasian wren","3":"aves","4":"passeriformes","5":"troglodytidae","6":"troglodytes","7":"troglodytes","8":"direct observation","9":"NA","10":"9.50","11":"0.97772360","12":"NA","13":"1.011713e+04","14":"4.00505733","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"eastern bluebird","3":"aves","4":"passeriformes","5":"turdidae","6":"sialia","7":"sialis","8":"direct observation","9":"NA","10":"30.80","11":"1.48855072","12":"NA","13":"1.011713e+04","14":"4.00505733","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"eastern wood pewee","3":"aves","4":"passeriformes","5":"tyrannidae","6":"contopus","7":"virens","8":"direct observation","9":"NA","10":"13.80","11":"1.13987909","12":"NA","13":"4.402973e+04","14":"4.64374602","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"least flycatcher","3":"aves","4":"passeriformes","5":"tyrannidae","6":"empidonax","7":"minimus","8":"direct observation","9":"NA","10":"9.90","11":"0.99563519","12":"NA","13":"1.780610e+03","14":"3.25056881","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"American gray flycatcher","3":"aves","4":"passeriformes","5":"tyrannidae","6":"empidonax","7":"wrightii","8":"direct observation","9":"NA","10":"12.30","11":"1.08990511","12":"NA","13":"1.578272e+04","14":"4.19818185","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"eastern kingbird","3":"aves","4":"passeriformes","5":"tyrannidae","6":"tyrannus","7":"tyrannus","8":"direct observation","9":"NA","10":"40.40","11":"1.60638137","12":"NA","13":"8.376980e+04","14":"4.92308748","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"black-capped vireo","3":"aves","4":"passeriformes","5":"vireonidae","6":"vireo","7":"atricapillus","8":"direct observation","9":"NA","10":"8.50","11":"0.92941893","12":"NA","13":"1.497335e+04","14":"4.17531898","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Bell's vireo","3":"aves","4":"passeriformes","5":"vireonidae","6":"vireo","7":"belli","8":"direct observation","9":"NA","10":"10.00","11":"1.00000000","12":"NA","13":"1.173587e+04","14":"4.06951529","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"white-eyed vireo","3":"aves","4":"passeriformes","5":"vireonidae","6":"vireo","7":"griseus","8":"direct observation","9":"2","10":"11.40","11":"1.05690485","12":"NA","13":"1.335460e+03","14":"3.12563088","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"red-eyed vireo","3":"aves","4":"passeriformes","5":"vireonidae","6":"vireo","7":"olivaceus","8":"direct observation","9":"NA","10":"17.60","11":"1.24551267","12":"NA","13":"7.284330e+03","14":"3.86238961","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"great bittern","3":"aves","4":"pelecaniformes","5":"ardeidae","6":"botaurus","7":"stellaris","8":"telemetry","9":"8","10":"900.00","11":"2.95424251","12":"NA","13":"1.930000e+05","14":"5.28555731","15":"Gilbert G, Tyler G, Smith KW. 2005. Behaviour, home-range size and habitat use by male Great Bittern Botaurus stellaris in Britain. Ibis 147, 533-543.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"least bittern","3":"aves","4":"pelecaniformes","5":"ardeidae","6":"ixobrychus","7":"exilis","8":"telemetry","9":"33","10":"67.00","11":"1.82607480","12":"NA","13":"9.700000e+04","14":"4.98677173","15":"Bogner HE, Baldassarre GA. 2002. Home Range, Movement, and Nesting of Least Bitterns in Western New York. The Wilson Bulletin 114(3), 297-308.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"black woodpecker","3":"aves","4":"piciformes","5":"picidae","6":"dryocopus","7":"martius","8":"telemetry*","9":"NA","10":"277.37","11":"2.44305949","12":"NA","13":"3.500000e+06","14":"6.54406804","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Eurasian wryneck","3":"aves","4":"piciformes","5":"picidae","6":"jynx","7":"torquilla","8":"telemetry*","9":"NA","10":"38.00","11":"1.57978360","12":"NA","13":"1.038100e+06","14":"6.01623919","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"white-backed woodpecker","3":"aves","4":"piciformes","5":"picidae","6":"picoides","7":"leucotos","8":"telemetry*","9":"NA","10":"109.25","11":"2.03842145","12":"NA","13":"5.306600e+06","14":"6.72481635","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"middle spotted woodpeckers","3":"aves","4":"piciformes","5":"picidae","6":"picoides","7":"medius","8":"telemetry*","9":"NA","10":"59.00","11":"1.77085201","12":"NA","13":"1.415000e+05","14":"5.15075644","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"Eurasian three-toed woodpecker","3":"aves","4":"piciformes","5":"picidae","6":"picoides","7":"tridactylus","8":"telemetry*","9":"NA","10":"65.65","11":"1.81723473","12":"NA","13":"3.500000e+05","14":"5.54406804","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"grey-headed woodpecker","3":"aves","4":"piciformes","5":"picidae","6":"picus","7":"canus","8":"telemetry*","9":"NA","10":"124.50","11":"2.09516935","12":"NA","13":"4.521600e+06","14":"6.65529214","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"European green woodpecker","3":"aves","4":"piciformes","5":"picidae","6":"picus","7":"viridis","8":"telemetry*","9":"NA","10":"186.67","11":"2.27107453","12":"NA","13":"1.850000e+06","14":"6.26717173","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"kakapo","3":"aves","4":"psittaciformes","5":"strigopidae","6":"strigops","7":"habroptilus","8":"telemetry","9":"13","10":"1941.00","11":"3.28802554","12":"NA","13":"1.950000e+05","14":"5.29003461","15":"Farrimond M, Clout MN. 2006. Home range size of kakapo (Strigops habroptilus) on Codfish Island. Notornis 53, 150-152.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"greater rhea","3":"aves","4":"rheiformes","5":"rheidae","6":"rhea","7":"americana","8":"telemetry","9":"10","10":"25000.00","11":"4.39794001","12":"Forsyth DM, Wilmhurst JM, Allen RB, Coomes DA. Impacts of introduced deer and extinct moa on New Zealand ecosystems. New Zealand Journal of Ecology 34(1), 48-65.","13":"2.450000e+06","14":"6.38916608","15":"Bellis LM, Martella MB, Navarro JL, Vignolo PE. 2004. Home range of greater and lesser rhea in Argentina: relevance to conservation. Biodiversity and Conservation 13, 2589-2598.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"lesser rhea","3":"aves","4":"rheiformes","5":"rheidae","6":"rhea","7":"pennata","8":"telemetry","9":"7","10":"15000.00","11":"4.17609126","12":"Forsyth DM, Wilmhurst JM, Allen RB, Coomes DA. Impacts of introduced deer and extinct moa on New Zealand ecosystems. New Zealand Journal of Ecology 34(1), 48-65.","13":"2.388000e+07","14":"7.37803432","15":"Bellis LM, Martella MB, Navarro JL, Vignolo PE. 2004. Home range of greater and lesser rhea in Argentina: relevance to conservation. Biodiversity and Conservation 13, 2589-2598.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"boreal owl","3":"aves","4":"strigiformes","5":"strigidae","6":"aegolius","7":"funereus","8":"telemetry*","9":"NA","10":"119.00","11":"2.07554696","12":"NA","13":"3.140000e+06","14":"6.49692965","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"long-eared owl","3":"aves","4":"strigiformes","5":"strigidae","6":"asio","7":"otus","8":"telemetry*","9":"NA","10":"252.00","11":"2.40140054","12":"NA","13":"1.962000e+07","14":"7.29269900","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"32.98","22":"1.5182507","23":"7.640000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"little owl","3":"aves","4":"strigiformes","5":"strigidae","6":"athene","7":"noctua","8":"telemetry*","9":"NA","10":"156.50","11":"2.19451434","12":"NA","13":"5.000000e+05","14":"5.69897000","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"20.66","22":"1.3151303","23":"7.575700","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"Eurasian eagle-owl","3":"aves","4":"strigiformes","5":"strigidae","6":"bubo","7":"bubo","8":"telemetry*","9":"NA","10":"2191.00","11":"3.34064238","12":"NA","13":"1.600000e+07","14":"7.20411998","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"375.00","22":"2.5740313","23":"5.842667","24":"Marchesi L, Sergio F, Pedrini P. 2002. Costs and benefits of breeding in human-altered landscapes for the Eagle Owl Bubo bubo. Ibis 144, E164-E177."},{"1":"birds","2":"great horned owl","3":"aves","4":"strigiformes","5":"strigidae","6":"bubo","7":"virginianus","8":"direct observation","9":"NA","10":"1510.00","11":"3.17897695","12":"NA","13":"2.124596e+06","14":"6.32727641","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"279.11","22":"2.4457754","23":"5.410000","24":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"Eurasian pygmy owl","3":"aves","4":"strigiformes","5":"strigidae","6":"glaucidium","7":"passerinum","8":"telemetry*","9":"NA","10":"61.32","11":"1.78760215","12":"NA","13":"1.250000e+06","14":"6.09691001","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"16.99","22":"1.2301934","23":"3.610000","24":"Slagsvold T, Sonerud GA. 2007. Prey size and ingestion rate in raptors: importance for sex roles and reversed sexual size dimorphism. J. Avian Biol. 38: 650 661."},{"1":"birds","2":"snowy owl","3":"aves","4":"strigiformes","5":"strigidae","6":"nyctea","7":"scandiaca","8":"direct observation","9":"NA","10":"1920.00","11":"3.28330123","12":"NA","13":"4.937157e+06","14":"6.69347694","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"tawny owl","3":"aves","4":"strigiformes","5":"strigidae","6":"strix","7":"aluco","8":"direct observation","9":"55","10":"519.00","11":"2.71516736","12":"NA","13":"3.569322e+05","14":"5.55258569","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"29.61","22":"1.4714384","23":"17.530000","24":"Galeotti P, Morimando F, Violani C. 2009. Feeding ecology of the tawny owls (Strix aluco) in urban habitats (northern Italy). Bolletino di zoologia 58(2), 143-150."},{"1":"birds","2":"barn owl","3":"aves","4":"strigiformes","5":"tytonidae","6":"tyto","7":"alba","8":"telemetry*","9":"NA","10":"285.00","11":"2.45484486","12":"NA","13":"1.500000e+06","14":"6.17609126","15":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","16":"terrestrial","17":"endotherm","18":"flying","19":"carnivore","20":"3D","21":"19.39","22":"1.2875778","23":"14.700000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, andConsequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"ostrich","3":"aves","4":"struthioniformes","5":"struthionidae","6":"struthio","7":"camelus","8":"telemetry","9":"1","10":"88250.00","11":"4.94571471","12":"NA","13":"8.430000e+07","14":"7.92582757","15":"Williams JB, Siegfried WR, Milton SJ, Adams NJ, Dean WRT, du Plessis MA, Jackson S. 1993. Field Metabolism, Water Requirements, and Foraging Behavior of Wild Ostriches in the Namib. Ecology 74(2), 390-404.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"birds","2":"ornate tinamou","3":"aves","4":"tinamiformes","5":"tinamidae","6":"nothoprocta","7":"ornata","8":"direct observation","9":"14","10":"622.00","11":"2.79379038","12":"NA","13":"2.428110e+04","14":"4.38526836","15":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"giant golden mole","3":"mammalia","4":"afrosoricida","5":"chrysochloridae","6":"chrysospalax","7":"trevelyani","8":"telemetry*","9":"NA","10":"436.52","11":"2.64000415","12":"NA","13":"6.166000e+02","14":"2.79000352","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Grant's golden mole","3":"mammalia","4":"afrosoricida","5":"chrysochloridae","6":"eremitalpa","7":"granti","8":"telemetry*","9":"NA","10":"23.00","11":"1.36172784","12":"NA","13":"4.629989e+04","14":"4.66557996","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"pronghorn","3":"mammalia","4":"artiodactyla","5":"antilocapridae","6":"antilocapra","7":"americana","8":"telemetry*","9":"NA","10":"46099.90","11":"4.66369998","12":"NA","13":"1.012535e+07","14":"7.00541000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"impala","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"aepyceros","7":"melampus","8":"telemetry*","9":"NA","10":"63503.84","11":"4.80279999","12":"NA","13":"3.224482e+06","14":"6.50846000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"hartebeest","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"alcelaphus","7":"buselaphus","8":"telemetry*","9":"NA","10":"136000.34","11":"5.13353999","12":"NA","13":"2.176858e+06","14":"6.33783000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"barbary sheep","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"ammotragus","7":"lervia","8":"telemetry*","9":"NA","10":"167498.14","11":"5.22400999","12":"NA","13":"9.050030e+06","14":"6.95665000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"American bison","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"bison","7":"bison","8":"telemetry*","9":"NA","10":"629999.20","11":"5.79934000","12":"NA","13":"2.657786e+08","14":"8.42452000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"European bison","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"bison","7":"bonasus","8":"telemetry*","9":"NA","10":"628000.52","11":"5.79796000","12":"NA","13":"1.014051e+07","14":"7.00606000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"goat","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"capra","7":"hircus","8":"telemetry*","9":"NA","10":"50999.98","11":"4.70757001","12":"NA","13":"6.452827e+07","14":"7.80975000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Spanish ibex","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"capra","7":"pyrenaica","8":"telemetry*","9":"NA","10":"69499.23","11":"4.84197999","12":"NA","13":"7.000032e+05","14":"5.84510000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Peter's dukier","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"cephalophus","7":"callipygus","8":"telemetry*","9":"NA","10":"18143.87","11":"4.25872993","12":"NA","13":"4.161693e+05","14":"5.61927000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"bay dikier","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"cephalophus","7":"dorsalis","8":"telemetry*","9":"NA","10":"20411.74","11":"4.30988003","12":"NA","13":"3.570015e+05","14":"5.55267000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"mountain gazelle","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"gazella","7":"gazella","8":"telemetry*","9":"NA","10":"21474.84","11":"4.33192994","12":"NA","13":"1.872837e+06","14":"6.27250000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Gnther's dik-dik","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"madoqua","7":"guentheri","8":"telemetry*","9":"NA","10":"4600.02","11":"3.66275972","12":"NA","13":"2.733317e+04","14":"4.43669000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"mountain goat","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"oreamnos","7":"americanus","8":"telemetry*","9":"NA","10":"629999.20","11":"5.79934000","12":"NA","13":"2.328574e+07","14":"7.36709000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"argali","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"ovis","7":"ammon","8":"telemetry*","9":"NA","10":"113998.73","11":"5.05690001","12":"NA","13":"5.882474e+06","14":"6.76956000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"bighorn sheep","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"ovis","7":"canadensis","8":"telemetry*","9":"NA","10":"90719.36","11":"4.95769998","12":"NA","13":"2.754482e+07","14":"7.44004000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"steenbok","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"raphicerus","7":"campestris","8":"telemetry*","9":"NA","10":"11300.04","11":"4.05307998","12":"NA","13":"6.199976e+05","14":"5.79239000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"chamois","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"rupicapra","7":"rupicapra","8":"telemetry*","9":"NA","10":"30999.88","11":"4.49136001","12":"NA","13":"3.408003e+06","14":"6.53250000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"common eland","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"taurotragus","7":"oryx","8":"telemetry*","9":"NA","10":"635038.42","11":"5.80280000","12":"NA","13":"5.239984e+07","14":"7.71933000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"bushbuck","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"tragelaphus","7":"scriptus","8":"telemetry*","9":"NA","10":"54431.46","11":"4.73584998","12":"NA","13":"3.710906e+04","14":"4.56947995","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"greater kudu","3":"mammalia","4":"artiodactyla","5":"bovidae","6":"tragelaphus","7":"strepsiceros","8":"telemetry*","9":"NA","10":"197314.95","11":"5.29515999","12":"NA","13":"1.070040e+09","14":"9.02940000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"moose","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"alces","7":"alces","8":"telemetry*","9":"NA","10":"307227.44","11":"5.48746000","12":"NA","13":"9.382531e+07","14":"7.97232000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"chital","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"axis","7":"axis","8":"telemetry*","9":"NA","10":"62823.19","11":"4.79811998","12":"NA","13":"3.647707e+06","14":"6.56202000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"roe deer","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"capreolus","7":"capreolus","8":"telemetry*","9":"NA","10":"24050.27","11":"4.38111996","12":"NA","13":"6.746368e+05","14":"5.82907000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"red deer","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"cervus","7":"elaphus","8":"telemetry*","9":"NA","10":"234757.78","11":"5.37061999","12":"NA","13":"7.486520e+07","14":"7.87428000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"sika deer","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"cervus","7":"nippon","8":"telemetry*","9":"NA","10":"29450.32","11":"4.46909002","12":"NA","13":"8.514909e+05","14":"5.93018000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"fallow deer","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"dama","7":"dama","8":"telemetry*","9":"NA","10":"71449.63","11":"4.85399998","12":"NA","13":"9.850086e+05","14":"5.99344000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Reeves's muntjac","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"muntiacus","7":"reevesi","8":"telemetry*","9":"NA","10":"13499.88","11":"4.13032991","12":"NA","13":"1.620541e+05","14":"5.20966000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"mule deer","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"odocoileus","7":"hemionus","8":"telemetry*","9":"NA","10":"53864.17","11":"4.73129997","12":"NA","13":"3.507276e+07","14":"7.54497000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"white-tailed deer","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"odocoileus","7":"virginianus","8":"telemetry*","9":"NA","10":"87884.04","11":"4.94391001","12":"NA","13":"2.488342e+06","14":"6.39591000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"pampas deer","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"ozotoceros","7":"bezoarticus","8":"telemetry*","9":"NA","10":"35000.16","11":"4.54407003","12":"NA","13":"7.900053e+06","14":"6.89763000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"pudu","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"pudu","7":"puda","8":"telemetry*","9":"NA","10":"7499.98","11":"3.87506011","12":"NA","13":"1.976651e+05","14":"5.29593000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"reindeer","3":"mammalia","4":"artiodactyla","5":"cervidae","6":"rangifer","7":"tarandus","8":"telemetry*","9":"NA","10":"102058.69","11":"5.00884999","12":"NA","13":"3.550831e+09","14":"9.55033000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"giraffe","3":"mammalia","4":"artiodactyla","5":"giraffidae","6":"giraffa","7":"camelopardalis","8":"telemetry*","9":"NA","10":"1339985.19","11":"6.12710000","12":"NA","13":"1.365369e+08","14":"8.13525000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"okapi","3":"mammalia","4":"artiodactyla","5":"giraffidae","6":"okapia","7":"johnstoni","8":"telemetry*","9":"NA","10":"230001.15","11":"5.36173001","12":"NA","13":"5.899973e+06","14":"6.77085000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"desert warthog","3":"mammalia","4":"artiodactyla","5":"suidae","6":"phacochoerus","7":"aethiopicus","8":"telemetry*","9":"NA","10":"80513.74","11":"4.90587000","12":"NA","13":"1.742007e+06","14":"6.24105000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Chacoan peccary","3":"mammalia","4":"artiodactyla","5":"tayassuidae","6":"catagonus","7":"wagneri","8":"telemetry*","9":"NA","10":"34700.04","11":"4.54032997","12":"NA","13":"1.097994e+07","14":"7.04060000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"collared peccary","3":"mammalia","4":"artiodactyla","5":"tayassuidae","6":"pecari","7":"tajacu","8":"telemetry*","9":"NA","10":"23205.98","11":"4.36559991","12":"NA","13":"2.486223e+06","14":"6.39554000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"white-lipped peccary","3":"mammalia","4":"artiodactyla","5":"tayassuidae","6":"tayassu","7":"pecari","8":"telemetry*","9":"NA","10":"20250.23","11":"4.30642996","12":"NA","13":"1.459990e+07","14":"7.16435000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"water chevrotain","3":"mammalia","4":"artiodactyla","5":"tragulidae","6":"hyemoschus","7":"aquaticus","8":"telemetry*","9":"NA","10":"10850.01","11":"4.03543014","12":"NA","13":"1.919995e+05","14":"5.28330001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"red panda","3":"mammalia","4":"carnivora","5":"ailuridae","6":"ailurus","7":"fulgens","8":"telemetry*","9":"NA","10":"5399.95","11":"3.73238974","12":"NA","13":"1.024991e+06","14":"6.01072000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"arctic fox","3":"mammalia","4":"carnivora","5":"canidae","6":"alopex","7":"lagopus","8":"telemetry*","9":"NA","10":"4989.53","11":"3.69805964","12":"NA","13":"2.849902e+07","14":"7.45483000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Ethiopian wolf","3":"mammalia","4":"carnivora","5":"canidae","6":"canis","7":"simensis","8":"telemetry*","9":"NA","10":"27749.81","11":"4.44326001","12":"NA","13":"5.393740e+06","14":"6.73189000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"culpeo","3":"mammalia","4":"carnivora","5":"canidae","6":"pseudalopex","7":"culpaeus","8":"telemetry*","9":"NA","10":"7370.04","11":"3.86746985","12":"NA","13":"4.928673e+06","14":"6.69273000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"427.68","22":"2.6311189","23":"17.232480","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"South American gray fox","3":"mammalia","4":"carnivora","5":"canidae","6":"pseudalopex","7":"griseus","8":"telemetry*","9":"NA","10":"3989.97","11":"3.60096963","12":"NA","13":"2.000000e+06","14":"6.30103000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"kit fox","3":"mammalia","4":"carnivora","5":"canidae","6":"vulpes","7":"macroti","8":"telemetry*","9":"NA","10":"4499.97","11":"3.65320962","12":"NA","13":"8.772836e+06","14":"6.94314000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Ruppel's fox","3":"mammalia","4":"carnivora","5":"canidae","6":"vulpes","7":"ruppelli","8":"telemetry*","9":"NA","10":"3249.97","11":"3.51187935","12":"NA","13":"3.039975e+07","14":"7.48287000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"swift fox","3":"mammalia","4":"carnivora","5":"canidae","6":"vulpes","7":"velox","8":"telemetry*","9":"NA","10":"2089.30","11":"3.32000080","12":"NA","13":"5.495409e+06","14":"6.74000000","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"thick-tailed three-toed jerboa","3":"mammalia","4":"carnivora","5":"dipodidae","6":"stylodipus","7":"telum","8":"telemetry*","9":"NA","10":"60.00","11":"1.77815125","12":"NA","13":"4.487040e+03","14":"3.65195994","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"fossa","3":"mammalia","4":"carnivora","5":"eupleridae","6":"cryptoprocta","7":"ferox","8":"telemetry*","9":"NA","10":"9549.93","11":"3.98000019","12":"NA","13":"8.912509e+05","14":"5.95000000","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"cheetah","3":"mammalia","4":"carnivora","5":"felidae","6":"acinonyx","7":"jubatus","8":"telemetry*","9":"NA","10":"50000.00","11":"4.69897000","12":"NA","13":"8.150608e+08","14":"8.91119000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"caracal","3":"mammalia","4":"carnivora","5":"felidae","6":"caracal","7":"caracal","8":"telemetry*","9":"NA","10":"12999.90","11":"4.11394001","12":"NA","13":"3.766344e+08","14":"8.57592000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"18055.42","22":"4.2566076","23":"0.720000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"cat","3":"mammalia","4":"carnivora","5":"felidae","6":"felis","7":"catus","8":"telemetry*","9":"NA","10":"3394.53","11":"3.53077965","12":"NA","13":"1.472448e+06","14":"6.16804000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"wildcat","3":"mammalia","4":"carnivora","5":"felidae","6":"felis","7":"sylvestris","8":"telemetry*","9":"NA","10":"4825.03","11":"3.68350002","12":"NA","13":"2.794988e+06","14":"6.44638000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"jaguarundi","3":"mammalia","4":"carnivora","5":"felidae","6":"herpailurus","7":"yagouaroundi","8":"telemetry*","9":"NA","10":"6803.93","11":"3.83275984","12":"NA","13":"6.707953e+07","14":"7.82659000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"ocelot","3":"mammalia","4":"carnivora","5":"felidae","6":"leopardus","7":"pardalis","8":"telemetry*","9":"NA","10":"9989.64","11":"3.99954984","12":"NA","13":"6.849360e+06","14":"6.83565000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"1527.47","22":"3.1839727","23":"6.540000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"margay","3":"mammalia","4":"carnivora","5":"felidae","6":"leopardus","7":"wiedii","8":"telemetry*","9":"NA","10":"3628.77","11":"3.55975944","12":"NA","13":"1.094990e+07","14":"7.03941000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"1109.72","22":"3.0452134","23":"3.270000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"serval","3":"mammalia","4":"carnivora","5":"felidae","6":"leptailurus","7":"serval","8":"telemetry*","9":"NA","10":"11999.97","11":"4.07918016","12":"NA","13":"2.390012e+06","14":"6.37840000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Canada lynx","3":"mammalia","4":"carnivora","5":"felidae","6":"lynx","7":"canadensis","8":"telemetry*","9":"NA","10":"10205.87","11":"4.00885003","12":"NA","13":"8.274848e+07","14":"7.91776000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"10521.52","22":"4.0220785","23":"0.970000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"Eurasian lynx","3":"mammalia","4":"carnivora","5":"felidae","6":"lynx","7":"lynx","8":"telemetry*","9":"NA","10":"29999.91","11":"4.47711995","12":"NA","13":"1.810423e+08","14":"8.25778000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"4065.03","22":"3.6090638","23":"7.380000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"Iberian lynx","3":"mammalia","4":"carnivora","5":"felidae","6":"lynx","7":"pardinus","8":"telemetry*","9":"NA","10":"11049.94","11":"4.04335992","12":"NA","13":"9.499921e+06","14":"6.97772000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"3890.80","22":"3.5900389","23":"2.840000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"bobcat","3":"mammalia","4":"carnivora","5":"felidae","6":"lynx","7":"rufus","8":"telemetry*","9":"NA","10":"11339.92","11":"4.05460999","12":"NA","13":"3.987769e+07","14":"7.60073000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Geoffroy's cat","3":"mammalia","4":"carnivora","5":"felidae","6":"oncifelis","7":"geoffroyi","8":"telemetry*","9":"NA","10":"3589.96","11":"3.55508961","12":"NA","13":"7.126725e+06","14":"6.85289000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"361.53","22":"2.5581443","23":"9.930000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"jaguar","3":"mammalia","4":"carnivora","5":"felidae","6":"panthera","7":"onca","8":"telemetry*","9":"NA","10":"84040.77","11":"4.92449002","12":"NA","13":"8.273514e+07","14":"7.91769000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"leopard","3":"mammalia","4":"carnivora","5":"felidae","6":"panthera","7":"pardus","8":"telemetry*","9":"NA","10":"48374.89","11":"4.68461999","12":"NA","13":"5.049403e+08","14":"8.70324000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"30234.31","22":"4.4805001","23":"1.600000","24":"Radloff FG, Du Toit JT. 2004. Large predators and their prey in a southern African savanna: a predators size determines its prey size range. Journal of Animal Ecology 73, 410-423."},{"1":"mammals","2":"tiger","3":"mammalia","4":"carnivora","5":"felidae","6":"panthera","7":"tigris","8":"telemetry*","9":"NA","10":"112000.51","11":"5.04922000","12":"NA","13":"5.358337e+07","14":"7.72903000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"130233.20","22":"5.1147217","23":"0.860000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"leopard cat","3":"mammalia","4":"carnivora","5":"felidae","6":"prionailurus","7":"bengalensis","8":"telemetry*","9":"NA","10":"2500.00","11":"3.39794001","12":"NA","13":"2.406855e+06","14":"6.38145000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"cougar","3":"mammalia","4":"carnivora","5":"felidae","6":"puma","7":"concolor","8":"telemetry*","9":"NA","10":"89999.48","11":"4.95424000","12":"NA","13":"3.120039e+08","14":"8.49416000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"snow leopard","3":"mammalia","4":"carnivora","5":"felidae","6":"uncia","7":"uncia","8":"telemetry*","9":"NA","10":"30500.01","11":"4.48429998","12":"NA","13":"1.735322e+07","14":"7.23938000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"57547.19","22":"4.7600241","23":"0.530000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"marsh mongoose","3":"mammalia","4":"carnivora","5":"herpestidae","6":"atilax","7":"paludinosus","8":"telemetry*","9":"NA","10":"3599.98","11":"3.55630009","12":"NA","13":"2.219985e+06","14":"6.34635000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"yellow mongoose","3":"mammalia","4":"carnivora","5":"herpestidae","6":"cynictis","7":"penicillata","8":"telemetry*","9":"NA","10":"620.00","11":"2.79239169","12":"NA","13":"5.925705e+05","14":"5.77274000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"common dwarf mongoose","3":"mammalia","4":"carnivora","5":"herpestidae","6":"helogale","7":"parvula","8":"\\\\","9":"NA","10":"281.84","11":"2.45000263","12":"NA","13":"2.818383e+05","14":"5.44999999","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Egyptian mongoose","3":"mammalia","4":"carnivora","5":"herpestidae","6":"herpestes","7":"inchneumon","8":"telemetry","9":"20","10":"2810.00","11":"3.44870632","12":"NA","13":"3.100000e+06","14":"6.49136169","15":"Palomares F. 1994. Site fidelity and effects of body mass on home-range size of Egyptian mongooses. Canadian Journal of Zoology 72, 465 - 469.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"143.37","22":"2.1564583","23":"19.600000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"mammals","2":"white-tailed mongoose","3":"mammalia","4":"carnivora","5":"herpestidae","6":"ichneumia","7":"albicauda","8":"telemetry*","9":"NA","10":"3599.98","11":"3.55630009","12":"NA","13":"3.872666e+05","14":"5.58801000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"aardwolf","3":"mammalia","4":"carnivora","5":"hyanidae","6":"proteles","7":"cristatus","8":"telemetry*","9":"NA","10":"10000.00","11":"4.00000000","12":"NA","13":"3.799969e+06","14":"6.57978000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"tayra","3":"mammalia","4":"carnivora","5":"mustelidae","6":"eira","7":"barbata","8":"telemetry*","9":"NA","10":"4466.22","11":"3.64994011","12":"NA","13":"1.461740e+07","14":"7.16487000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"greater grison","3":"mammalia","4":"carnivora","5":"mustelidae","6":"galictis","7":"vittata","8":"telemetry*","9":"NA","10":"1750.01","11":"3.24304053","12":"NA","13":"4.150018e+06","14":"6.61805000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"wolverine","3":"mammalia","4":"carnivora","5":"mustelidae","6":"gulo","7":"gulo","8":"telemetry*","9":"NA","10":"21545.67","11":"4.33336000","12":"NA","13":"3.619178e+08","14":"8.55861000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"American marten","3":"mammalia","4":"carnivora","5":"mustelidae","6":"martes","7":"americana","8":"telemetry*","9":"NA","10":"883.49","11":"2.94620164","12":"NA","13":"7.066104e+06","14":"6.84918000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"23.15","22":"1.3645510","23":"38.170000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"beech marten","3":"mammalia","4":"carnivora","5":"mustelidae","6":"martes","7":"foina","8":"telemetry*","9":"NA","10":"1799.99","11":"3.25527009","12":"NA","13":"4.356523e+06","14":"6.63914000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"European pine marten","3":"mammalia","4":"carnivora","5":"mustelidae","6":"martes","7":"martes","8":"telemetry*","9":"NA","10":"2475.03","11":"3.39358047","12":"NA","13":"9.093478e+06","14":"6.95873000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"95.19","22":"1.9785913","23":"26.000000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"fisher","3":"mammalia","4":"carnivora","5":"mustelidae","6":"martes","7":"pennanti","8":"telemetry*","9":"NA","10":"3175.19","11":"3.50176972","12":"NA","13":"1.675560e+07","14":"7.22416000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"656.03","22":"2.8169237","23":"4.840000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"stoat","3":"mammalia","4":"carnivora","5":"mustelidae","6":"mustela","7":"erminea","8":"telemetry*","9":"NA","10":"270.54","11":"2.43223149","12":"NA","13":"1.323244e+06","14":"6.12164000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"47.55","22":"1.6771505","23":"5.690000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"long-tailed weasel","3":"mammalia","4":"carnivora","5":"mustelidae","6":"mustela","7":"frenata","8":"telemetry*","9":"NA","10":"150.19","11":"2.17664102","12":"NA","13":"1.767502e+05","14":"5.24736001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"14.58","22":"1.1637575","23":"10.300000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"ferret","3":"mammalia","4":"carnivora","5":"mustelidae","6":"mustela","7":"furo","8":"telemetry*","9":"NA","10":"808.74","11":"2.90780892","12":"NA","13":"8.999948e+05","14":"5.95424000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"European mink","3":"mammalia","4":"carnivora","5":"mustelidae","6":"mustela","7":"lutreola","8":"telemetry*","9":"NA","10":"562.34","11":"2.74999898","12":"NA","13":"2.089296e+05","14":"5.31999999","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"black-footed ferret","3":"mammalia","4":"carnivora","5":"mustelidae","6":"mustela","7":"nigripes","8":"telemetry*","9":"NA","10":"912.01","11":"2.95999960","12":"NA","13":"1.000000e+06","14":"6.00000000","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"least weasel","3":"mammalia","4":"carnivora","5":"mustelidae","6":"mustela","7":"nivalis","8":"telemetry*","9":"NA","10":"88.10","11":"1.94497591","12":"NA","13":"6.488585e+05","14":"5.81215000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"30.59","22":"1.4855795","23":"2.880000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"Siberian weasel","3":"mammalia","4":"carnivora","5":"mustelidae","6":"mustela","7":"sibirica","8":"telemetry*","9":"NA","10":"524.81","11":"2.72000210","12":"NA","13":"4.073803e+06","14":"6.61000000","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"American badger","3":"mammalia","4":"carnivora","5":"mustelidae","6":"taxidea","7":"taxus","8":"telemetry*","9":"NA","10":"8618.27","11":"3.93542010","12":"NA","13":"3.808816e+06","14":"6.58079000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"kinkajou","3":"mammalia","4":"carnivora","5":"procyonidae","6":"potos","7":"flavus","8":"telemetry*","9":"NA","10":"2887.62","11":"3.46054004","12":"NA","13":"2.792480e+05","14":"5.44598999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"giant panda","3":"mammalia","4":"carnivora","5":"ursidae","6":"ailuropoda","7":"melanoleuca","8":"telemetry*","9":"NA","10":"87500.39","11":"4.94200999","12":"NA","13":"4.135043e+06","14":"6.61648000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"sloth bear","3":"mammalia","4":"carnivora","5":"ursidae","6":"melursus","7":"ursinus","8":"telemetry*","9":"NA","10":"97750.73","11":"4.99012001","12":"NA","13":"1.000000e+07","14":"7.00000000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"common genet","3":"mammalia","4":"carnivora","5":"viverridae","6":"genetta","7":"genetta","8":"telemetry*","9":"NA","10":"1750.01","11":"3.24304053","12":"NA","13":"7.809981e+06","14":"6.89265000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"42.00","22":"1.6232493","23":"41.670000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"mammals","2":"cape genet","3":"mammalia","4":"carnivora","5":"viverridae","6":"genetta","7":"tigrina","8":"telemetry*","9":"NA","10":"2150.01","11":"3.33244048","12":"NA","13":"5.750029e+04","14":"4.75967004","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"large indian civet","3":"mammalia","4":"carnivora","5":"viverridae","6":"viverra","7":"zibetha","8":"telemetry*","9":"NA","10":"8000.00","11":"3.90308999","12":"NA","13":"1.199997e+07","14":"7.07918000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Western quoll","3":"mammalia","4":"dasyuromorpha","5":"dasyuridae","6":"dasyurus","7":"geoffroii","8":"telemetry*","9":"NA","10":"1096.48","11":"3.04000071","12":"NA","13":"2.290868e+06","14":"6.36000000","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"tiger quoll","3":"mammalia","4":"dasyuromorpha","5":"dasyuridae","6":"dasyurus","7":"maculatus","8":"telemetry","9":"19","10":"2810.00","11":"3.44870632","12":"NA","13":"1.159500e+07","14":"7.06427075","15":"Belcher CA, Darrant JP. 2004. Home range and spatial organization of the marsupial carnivore, Dasyurus maculatus maculatus (Marsupialia: Dasyuridae) in south-eastern Australia. Journal of Zoology (London) 262, 271-280.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"white-footed dunnart","3":"mammalia","4":"dasyuromorpha","5":"dasyuridae","6":"sminthopsis","7":"leucopus","8":"telemetry*","9":"NA","10":"23.00","11":"1.36172784","12":"NA","13":"1.141011e+04","14":"4.05728983","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"brown antechinus","3":"mammalia","4":"dasyuromorpia","5":"dasyuridae","6":"antechinus","7":"stuartii","8":"telemetry*","9":"NA","10":"27.50","11":"1.43933269","12":"NA","13":"3.500016e+04","14":"4.54407003","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Northern three-striped opossum","3":"mammalia","4":"didelphimorphia","5":"didelphidae","6":"monodelphis","7":"americana","8":"telemetry*","9":"NA","10":"19.50","11":"1.29003461","12":"NA","13":"4.677400e+02","14":"2.67000451","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"elegant fat-tailed opossum","3":"mammalia","4":"didelphimorphia","5":"didelphidae","6":"thylamys","7":"elegans","8":"telemetry*","9":"NA","10":"29.00","11":"1.46239800","12":"NA","13":"7.079400e+02","14":"2.84999645","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Lumholtz's tree-kangaroo","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"dendrolagus","7":"lumholtzi","8":"telemetry*","9":"NA","10":"6649.97","11":"3.82281969","12":"NA","13":"1.930012e+04","14":"4.28556001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"antilopine kangaroo","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"macropus","7":"antilopinus","8":"telemetry*","9":"NA","10":"27250.22","11":"4.43537001","12":"NA","13":"6.413277e+05","14":"5.80708000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"black-striped wallaby","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"macropus","7":"dorsalis","8":"telemetry*","9":"NA","10":"11249.93","11":"4.05114982","12":"NA","13":"9.149977e+05","14":"5.96142000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Western grey kangaroo","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"macropus","7":"fuliginosus","8":"telemetry*","9":"NA","10":"22124.83","11":"4.34487994","12":"NA","13":"3.236533e+06","14":"6.51008000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Eastern grey kangaroo","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"macropus","7":"giganteus","8":"telemetry*","9":"NA","10":"10375.05","11":"4.01599020","12":"NA","13":"6.133382e+06","14":"6.78770000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"common wallaroo","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"macropus","7":"robustus","8":"telemetry*","9":"NA","10":"21250.05","11":"4.32735996","12":"NA","13":"9.709123e+05","14":"5.98718000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"red-necked wallaby","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"macropus","7":"rufogriseus","8":"telemetry*","9":"NA","10":"16850.00","11":"4.22659990","12":"NA","13":"1.630009e+05","14":"5.21219000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"red kangaroo","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"macropus","7":"rufus","8":"telemetry*","9":"NA","10":"46249.82","11":"4.66511005","12":"NA","13":"7.739983e+06","14":"6.88874000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"allied rock-wallaby","3":"mammalia","4":"diprodontia","5":"macropodidae","6":"petrogale","7":"assimilis","8":"telemetry*","9":"NA","10":"4646.01","11":"3.66708014","12":"NA","13":"1.190008e+05","14":"5.07554999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"eastern bettong","3":"mammalia","4":"diprodontia","5":"potoroidae","6":"bettongia","7":"gaimardi","8":"telemetry*","9":"NA","10":"1660.01","11":"3.22011070","12":"NA","13":"4.566674e+05","14":"5.65960000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"long-footed potoroo","3":"mammalia","4":"diprodontia","5":"potoroidae","6":"potorous","7":"longipes","8":"telemetry*","9":"NA","10":"1899.98","11":"3.27874903","12":"NA","13":"3.732759e+05","14":"5.57203000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"greater glider","3":"mammalia","4":"diprodontia","5":"pseudocheiridae","6":"petauroides","7":"volans","8":"telemetry*","9":"NA","10":"1299.99","11":"3.11394001","12":"NA","13":"1.545468e+04","14":"4.18906002","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"bridled nail-tail wallaby","3":"mammalia","4":"diprotodontia","5":"macropodidae","6":"onychogalea","7":"fraenata","8":"telemetry*","9":"NA","10":"5000.00","11":"3.69897000","12":"NA","13":"4.250010e+05","14":"5.62839000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"red-legged pademelon","3":"mammalia","4":"diprotodontia","5":"macropodidae","6":"thylogale","7":"stigmatica","8":"telemetry*","9":"NA","10":"4649.97","11":"3.66745015","12":"NA","13":"3.566646e+04","14":"4.55226001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"red-necked pademelon","3":"mammalia","4":"diprotodontia","5":"macropodidae","6":"thylogale","7":"thetis","8":"telemetry*","9":"NA","10":"5399.95","11":"3.73238974","12":"NA","13":"1.385639e+05","14":"5.14165000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"swamp wallaby","3":"mammalia","4":"diprotodontia","5":"macropodidae","6":"wallabia","7":"bicolor","8":"telemetry*","9":"NA","10":"14999.96","11":"4.17609010","12":"NA","13":"1.527601e+05","14":"5.18400999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"common brushtail possum","3":"mammalia","4":"diprotodontia","5":"phalangeridae","6":"trichosurus","7":"vulpecula","8":"telemetry*","9":"NA","10":"2875.01","11":"3.45863936","12":"NA","13":"5.013488e+04","14":"4.70013998","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"northern hairy-nosed wombat","3":"mammalia","4":"diprotodontia","5":"vombatidae","6":"lasiorhinus","7":"krefftii","8":"telemetry*","9":"NA","10":"25499.99","11":"4.40654001","12":"NA","13":"2.500000e+05","14":"5.39794001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"common wombat","3":"mammalia","4":"diprotodontia","5":"vombatidae","6":"vombatus","7":"ursinus","8":"telemetry*","9":"NA","10":"25999.80","11":"4.41497001","12":"NA","13":"1.079991e+05","14":"5.03342002","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"European hedgehog","3":"mammalia","4":"erinaceomorpha","5":"erinaceidae","6":"erinaceus","7":"europaeus","8":"telemetry*","9":"NA","10":"800.00","11":"2.90308999","12":"NA","13":"1.942361e+05","14":"5.28832999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"long-eared hedgehog","3":"mammalia","4":"erinaceomorpha","5":"erinaceidae","6":"hemiechinus","7":"auritus","8":"telemetry*","9":"NA","10":"296.00","11":"2.47129171","12":"NA","13":"4.037755e+04","14":"4.60613996","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"pygmy rabbit","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"brachylagus","7":"idahoensis","8":"telemetry*","9":"NA","10":"340.20","11":"2.53173431","12":"NA","13":"4.858810e+03","14":"3.68652992","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"snowshoe hare","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"lepus","7":"americanus","8":"telemetry*","9":"NA","10":"1360.79","11":"3.13379111","12":"NA","13":"3.271674e+04","14":"4.51477002","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Arctic hare","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"lepus","7":"arcticus","8":"telemetry*","9":"NA","10":"4050.05","11":"3.60746038","12":"NA","13":"2.900013e+06","14":"6.46240000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"black-tailed jackrabbit","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"lepus","7":"californicus","8":"telemetry*","9":"NA","10":"2267.98","11":"3.35563922","12":"NA","13":"1.592759e+06","14":"6.20215000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"cape hare","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"lepus","7":"capensis","8":"telemetry*","9":"NA","10":"3549.11","11":"3.55011946","12":"NA","13":"5.300050e+05","14":"5.72428000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"European hare","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"lepus","7":"europaeus","8":"telemetry*","9":"NA","10":"5250.01","11":"3.72016013","12":"NA","13":"2.866157e+05","14":"5.45730001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Indian hare","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"lepus","7":"nigricollis","8":"telemetry*","9":"NA","10":"3129.97","11":"3.49554017","12":"NA","13":"1.389985e+04","14":"4.14301011","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"mountain hare","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"lepus","7":"timidus","8":"telemetry*","9":"NA","10":"2825.01","11":"3.45101999","12":"NA","13":"4.532418e+05","14":"5.65633000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"European rabbit","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"oryctolagus","7":"cuniculus","8":"telemetry*","9":"NA","10":"1600.00","11":"3.20411998","12":"NA","13":"6.299992e+04","14":"4.79934000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"swamp rabbit","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"sylvilagus","7":"aquaticus","8":"telemetry*","9":"NA","10":"2150.01","11":"3.33244048","12":"NA","13":"1.829995e+04","14":"4.26244990","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"eastern cottontail","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"sylvilagus","7":"floridanus","8":"telemetry*","9":"NA","10":"1360.79","11":"3.13379111","12":"NA","13":"2.892011e+04","14":"4.46119994","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"marsh rabbit","3":"mammalia","4":"lagomorpha","5":"leporidae","6":"sylvilagus","7":"palustris","8":"telemetry*","9":"NA","10":"1349.99","11":"3.13033055","12":"NA","13":"3.960044e+04","14":"4.59770001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"plateau pika","3":"mammalia","4":"lagomorpha","5":"ochotonidae","6":"ochotona","7":"curzoniae","8":"telemetry*","9":"NA","10":"155.30","11":"2.19117146","12":"NA","13":"1.376000e+03","14":"3.13861843","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"American pika","3":"mammalia","4":"lagomorpha","5":"ochotonidae","6":"ochotona","7":"princeps","8":"telemetry*","9":"NA","10":"146.50","11":"2.16583762","12":"NA","13":"1.866340e+03","14":"3.27099076","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"rufous elephant shrew","3":"mammalia","4":"macroscelidea","5":"macroscelididae","6":"elephantulus","7":"rufescens","8":"telemetry*","9":"NA","10":"58.00","11":"1.76342799","12":"NA","13":"3.393130e+03","14":"3.53060050","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"four-toed elephant shrew","3":"mammalia","4":"macroscelidea","5":"macroscelididae","6":"petrodromus","7":"tetradactylus","8":"telemetry*","9":"NA","10":"201.00","11":"2.30319606","12":"NA","13":"1.199997e+04","14":"4.07918016","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"golden-rumped elephant shrew","3":"mammalia","4":"macroscelidea","5":"macroscelididae","6":"rhynchocyon","7":"chrysopygus","8":"telemetry*","9":"NA","10":"535.20","11":"2.72851611","12":"NA","13":"2.900013e+04","14":"4.46239994","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"east African mole rat","3":"mammalia","4":"monotrematae","5":"tachyglossidae","6":"tachyoryctes","7":"splendens","8":"telemetry*","9":"NA","10":"257.00","11":"2.40993312","12":"NA","13":"1.000000e+02","14":"2.00000000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"golden bandicoot","3":"mammalia","4":"peramelemorphia","5":"peramelidae","6":"isoodon","7":"auratus","8":"telemetry*","9":"NA","10":"390.50","11":"2.59162104","12":"NA","13":"1.168342e+05","14":"5.06756999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Southern brown bandicoot","3":"mammalia","4":"peramelemorphia","5":"peramelidae","6":"isoodon","7":"obesulus","8":"telemetry*","9":"NA","10":"775.00","11":"2.88930170","12":"NA","13":"2.113343e+04","14":"4.32496999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"horse","3":"mammalia","4":"perissodactyla","5":"equidae","6":"equus","7":"caballus","8":"telemetry*","9":"NA","10":"427996.29","11":"5.63144000","12":"NA","13":"2.229513e+07","14":"7.34821000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"white rhinoceros","3":"mammalia","4":"perissodactyla","5":"rhinocerotidae","6":"ceratotherium","7":"simum","8":"telemetry*","9":"NA","10":"2249986.95","11":"6.35218000","12":"NA","13":"1.591256e+07","14":"7.20174000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"black rhinoceros","3":"mammalia","4":"perissodactyla","5":"rhinocerotidae","6":"diceros","7":"bicornis","8":"telemetry*","9":"NA","10":"1050001.69","11":"6.02119000","12":"NA","13":"4.206588e+07","14":"7.62393000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"maned sloth","3":"mammalia","4":"pilosa","5":"bradypodidae","6":"bradypus","7":"torquatus","8":"telemetry*","9":"NA","10":"3899.96","11":"3.59106015","12":"NA","13":"4.499974e+04","14":"4.65321001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Asian elephant","3":"mammalia","4":"proboscidea","5":"elephantidae","6":"elephas","7":"maximus","8":"telemetry*","9":"NA","10":"4000000.08","11":"6.60206000","12":"NA","13":"1.099993e+08","14":"8.04139000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"African bush elephant","3":"mammalia","4":"proboscidea","5":"elephantidae","6":"loxodonta","7":"africana","8":"telemetry*","9":"NA","10":"4000000.08","11":"6.60206000","12":"NA","13":"1.753759e+09","14":"9.24397000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"southern grasshopper mouse","3":"mammalia","4":"roden","5":"cricetidae","6":"onychomys","7":"torridus","8":"telemetry*","9":"NA","10":"22.00","11":"1.34242268","12":"NA","13":"2.594538e+04","14":"4.41406004","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"mountain beaver","3":"mammalia","4":"rodentia","5":"aplodontiidae","6":"aplodontia","7":"rufa","8":"telemetry*","9":"NA","10":"1133.99","11":"3.05460923","12":"NA","13":"1.037410e+03","14":"3.01595043","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"cape dune mole rat","3":"mammalia","4":"rodentia","5":"bathyergidae","6":"bathyergus","7":"suillus","8":"telemetry*","9":"NA","10":"625.00","11":"2.79588002","12":"NA","13":"2.685840e+03","14":"3.42908014","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Damaraland mole rat","3":"mammalia","4":"rodentia","5":"bathyergidae","6":"cryptomys","7":"damarensis","8":"telemetry*","9":"NA","10":"148.00","11":"2.17026172","12":"NA","13":"1.299990e+04","14":"4.11394001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"common mole rat","3":"mammalia","4":"rodentia","5":"bathyergidae","6":"cryptomys","7":"hottentotus","8":"telemetry*","9":"NA","10":"65.00","11":"1.81291336","12":"NA","13":"1.582010e+03","14":"3.19920922","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"cape mole rat","3":"mammalia","4":"rodentia","5":"bathyergidae","6":"georychus","7":"capensis","8":"telemetry*","9":"NA","10":"242.00","11":"2.38381537","12":"NA","13":"2.720000e+02","14":"2.43456890","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"silvery mole rat","3":"mammalia","4":"rodentia","5":"bathyergidae","6":"heliophobius","7":"argenteocinereus","8":"telemetry*","9":"NA","10":"155.00","11":"2.19033170","12":"NA","13":"1.720000e+02","14":"2.23552845","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"naked mole rat","3":"mammalia","4":"rodentia","5":"bathyergidae","6":"heterocephalus","7":"glaber","8":"telemetry*","9":"NA","10":"39.00","11":"1.59106461","12":"NA","13":"5.400950e+03","14":"3.73247016","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Patagonian mara","3":"mammalia","4":"rodentia","5":"caviidae","6":"dolichotus","7":"patagonus","8":"telemetry*","9":"NA","10":"8000.00","11":"3.90308999","12":"NA","13":"9.769897e+05","14":"5.98989000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"plains viscacha","3":"mammalia","4":"rodentia","5":"chinchillidae","6":"lagostomus","7":"maximus","8":"telemetry*","9":"NA","10":"5190.03","11":"3.71516987","12":"NA","13":"1.000000e+04","14":"4.00000000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"western red-backed vole","3":"mammalia","4":"rodentia","5":"cricetidae","6":"clethrionomys","7":"californicus","8":"telemetry*","9":"NA","10":"22.57","11":"1.35353156","12":"NA","13":"1.596980e+03","14":"3.20329948","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"large-headed rice rat","3":"mammalia","4":"rodentia","5":"cricetidae","6":"hylaeamys","7":"megacephalus","8":"telemetry*","9":"NA","10":"66.30","11":"1.82151353","12":"NA","13":"7.738910e+03","14":"3.88867980","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Siberian brown lemming","3":"mammalia","4":"rodentia","5":"cricetidae","6":"lemmus","7":"sibiricus","8":"telemetry*","9":"NA","10":"92.14","11":"1.96444821","12":"NA","13":"8.322040e+03","14":"3.92022980","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"field vole","3":"mammalia","4":"rodentia","5":"cricetidae","6":"microtus","7":"agrestis","8":"telemetry*","9":"NA","10":"38.00","11":"1.57978360","12":"NA","13":"7.004200e+02","14":"2.84535854","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"California vole","3":"mammalia","4":"rodentia","5":"cricetidae","6":"microtus","7":"californicus","8":"telemetry*","9":"NA","10":"70.87","11":"1.85046243","12":"NA","13":"8.550000e+01","14":"1.93196612","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"montane vole","3":"mammalia","4":"rodentia","5":"cricetidae","6":"microtus","7":"montanus","8":"telemetry*","9":"NA","10":"56.70","11":"1.75358306","12":"NA","13":"1.516000e+02","14":"2.18069920","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"prairie vole","3":"mammalia","4":"rodentia","5":"cricetidae","6":"microtus","7":"ochrogaster","8":"telemetry*","9":"NA","10":"35.44","11":"1.54949371","12":"NA","13":"6.744700e+02","14":"2.82896264","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"meadow vole","3":"mammalia","4":"rodentia","5":"cricetidae","6":"microtus","7":"pennsylvanicus","8":"telemetry*","9":"NA","10":"49.61","11":"1.69556923","12":"NA","13":"4.117400e+02","14":"2.61462306","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"woodland vole","3":"mammalia","4":"rodentia","5":"cricetidae","6":"microtus","7":"pinetorum","8":"telemetry*","9":"NA","10":"29.50","11":"1.46982202","12":"NA","13":"3.667000e+01","14":"1.56431091","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"water vole","3":"mammalia","4":"rodentia","5":"cricetidae","6":"microtus","7":"richardsoni","8":"telemetry*","9":"NA","10":"85.50","11":"1.93196612","12":"NA","13":"4.192000e+02","14":"2.62242127","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"wood lemming","3":"mammalia","4":"rodentia","5":"cricetidae","6":"myopus","7":"schisticolor","8":"telemetry*","9":"NA","10":"30.00","11":"1.47712125","12":"NA","13":"9.821300e+02","14":"2.99216898","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"bushy-tailed woodrat","3":"mammalia","4":"rodentia","5":"cricetidae","6":"neotoma","7":"cinerea","8":"telemetry*","9":"NA","10":"395.48","11":"2.59712452","12":"NA","13":"4.761678e+04","14":"4.67776002","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"dusky-footed woodrat","3":"mammalia","4":"rodentia","5":"cricetidae","6":"neotoma","7":"fuscipes","8":"telemetry*","9":"NA","10":"308.30","11":"2.48897353","12":"NA","13":"2.537000e+03","14":"3.40432047","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"desert woodrat","3":"mammalia","4":"rodentia","5":"cricetidae","6":"neotoma","7":"lepida","8":"telemetry*","9":"NA","10":"132.29","11":"2.12152702","12":"NA","13":"5.330000e+02","14":"2.72672721","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Southern plains woodrat","3":"mammalia","4":"rodentia","5":"cricetidae","6":"neotoma","7":"micropus","8":"telemetry*","9":"NA","10":"255.15","11":"2.40679557","12":"NA","13":"5.805500e+02","14":"2.76383963","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"muskrat","3":"mammalia","4":"rodentia","5":"cricetidae","6":"ondatra","7":"zibethica","8":"telemetry*","9":"NA","10":"1360.79","11":"3.13379111","12":"NA","13":"5.995010e+03","14":"3.77778991","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"cotton mouse","3":"mammalia","4":"rodentia","5":"cricetidae","6":"peromyscus","7":"gossypinus","8":"telemetry*","9":"NA","10":"27.54","11":"1.43996394","12":"NA","13":"5.011870e+03","14":"3.69999980","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"salt marsh harvest mouse","3":"mammalia","4":"rodentia","5":"cricetidae","6":"reithrodontomys","7":"raviventris","8":"telemetry*","9":"NA","10":"11.05","11":"1.04336228","12":"NA","13":"2.132900e+03","14":"3.32897049","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"southern bog lemming","3":"mammalia","4":"rodentia","5":"cricetidae","6":"synaptomys","7":"cooperi","8":"telemetry*","9":"NA","10":"38.27","11":"1.58285846","12":"NA","13":"4.549990e+03","14":"3.65801044","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"dwarf fat-tailed jerboa","3":"mammalia","4":"rodentia","5":"dipodidae","6":"pygeretmus","7":"pumilio","8":"telemetry*","9":"NA","10":"52.50","11":"1.72015930","12":"NA","13":"3.127810e+03","14":"3.49524036","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Cuvier's spiny rat","3":"mammalia","4":"rodentia","5":"echimyidae","6":"proechimys","7":"cuvieri","8":"telemetry*","9":"NA","10":"350.00","11":"2.54406804","12":"NA","13":"5.788150e+03","14":"3.76253978","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Tome's spiny rat","3":"mammalia","4":"rodentia","5":"echimyidae","6":"proechimys","7":"semispinosus","8":"telemetry*","9":"NA","10":"428.00","11":"2.63144377","12":"NA","13":"1.038510e+03","14":"3.01641068","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Brazilian porcupine","3":"mammalia","4":"rodentia","5":"erethizontidae","6":"coendou","7":"prehensilis","8":"telemetry*","9":"NA","10":"4250.01","11":"3.62838995","12":"NA","13":"1.866680e+05","14":"5.27106999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"North American porcupine","3":"mammalia","4":"rodentia","5":"erethizontidae","6":"erethizon","7":"dorsatum","8":"telemetry*","9":"NA","10":"8618.27","11":"3.93542010","12":"NA","13":"3.615014e+05","14":"5.55811000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Botta's pocket gopher","3":"mammalia","4":"rodentia","5":"geomyidae","6":"thomomys","7":"bottae","8":"telemetry*","9":"NA","10":"160.18","11":"2.20460829","12":"NA","13":"7.114000e+01","14":"1.85211386","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"spectacled dormouse","3":"mammalia","4":"rodentia","5":"gliridae","6":"graphiurus","7":"ocularis","8":"telemetry*","9":"NA","10":"68.80","11":"1.83758844","12":"NA","13":"1.093000e+05","14":"5.03862000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"hazel dormouse","3":"mammalia","4":"rodentia","5":"gliridae","6":"muscardinus","7":"avellanarius","8":"telemetry*","9":"NA","10":"31.00","11":"1.49136169","12":"NA","13":"4.369990e+03","14":"3.64048044","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"giant kangaroo rat","3":"mammalia","4":"rodentia","5":"heteromyidae","6":"dipodomys","7":"ingens","8":"telemetry*","9":"NA","10":"153.56","11":"2.18627810","12":"NA","13":"4.317000e+02","14":"2.63518205","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Merriam's kangaroo rat","3":"mammalia","4":"rodentia","5":"heteromyidae","6":"dipodomys","7":"merriami","8":"telemetry*","9":"NA","10":"41.82","11":"1.62138403","12":"NA","13":"7.374800e+03","14":"3.86775025","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Ord's kangaroo rat","3":"mammalia","4":"rodentia","5":"heteromyidae","6":"dipodomys","7":"ordii","8":"telemetry*","9":"NA","10":"56.70","11":"1.75358306","12":"NA","13":"1.769987e+04","14":"4.24797008","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"banner-tailed kangaroo rat","3":"mammalia","4":"rodentia","5":"heteromyidae","6":"dipodomys","7":"spectabilis","8":"telemetry*","9":"NA","10":"144.58","11":"2.16010822","12":"NA","13":"3.008500e+03","14":"3.47835002","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Stephen's kangaroo rat","3":"mammalia","4":"rodentia","5":"heteromyidae","6":"dipodomys","7":"stephensi","8":"telemetry*","9":"NA","10":"76.20","11":"1.88195497","12":"NA","13":"1.480440e+03","14":"3.17039081","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"cape porcupine","3":"mammalia","4":"rodentia","5":"hystricidae","6":"hystrix","7":"africaeaustralis","8":"telemetry*","9":"NA","10":"17000.04","11":"4.23044994","12":"NA","13":"1.689779e+06","14":"6.22783000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Indian crested porcupine","3":"mammalia","4":"rodentia","5":"hystricidae","6":"hystrix","7":"indica","8":"telemetry*","9":"NA","10":"14999.96","11":"4.17609010","12":"NA","13":"1.411985e+06","14":"6.14983000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"African brush-tailed porcupine","3":"mammalia","4":"rodentia","5":"hystridicae","6":"atherurus","7":"africanus","8":"telemetry*","9":"NA","10":"2749.98","11":"3.43932954","12":"NA","13":"1.511785e+05","14":"5.17949000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"yellow-necked mouse","3":"mammalia","4":"rodentia","5":"muridae","6":"apodemus","7":"flavicollis","8":"telemetry*","9":"NA","10":"31.60","11":"1.49968708","12":"NA","13":"7.574950e+03","14":"3.87937977","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"wood mouse","3":"mammalia","4":"rodentia","5":"muridae","6":"apodemus","7":"sylvaticus","8":"telemetry*","9":"NA","10":"21.20","11":"1.32633586","12":"NA","13":"1.305209e+04","14":"4.11568006","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Indian desert jird","3":"mammalia","4":"rodentia","5":"muridae","6":"meriones","7":"hurrianae","8":"telemetry*","9":"NA","10":"88.30","11":"1.94596070","12":"NA","13":"1.327000e+02","14":"2.12287092","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"broad-toothed mouse","3":"mammalia","4":"rodentia","5":"muridae","6":"pseudomys","7":"fuscus","8":"telemetry*","9":"NA","10":"122.00","11":"2.08635983","12":"NA","13":"6.300000e+02","14":"2.79934055","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Malagasy giant rat","3":"mammalia","4":"rodentia","5":"nesomyidae","6":"hypogeomys","7":"antimena","8":"telemetry*","9":"NA","10":"1185.00","11":"3.07371835","12":"NA","13":"3.500016e+04","14":"4.54407003","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"White-belliednesomys","3":"mammalia","4":"rodentia","5":"nesomyidae","6":"nesomys","7":"audeberti","8":"telemetry*","9":"NA","10":"215.60","11":"2.33364876","12":"NA","13":"9.499920e+03","14":"3.97771995","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"island mouse","3":"mammalia","4":"rodentia","5":"nesomyidae","6":"nesomys","7":"rufus","8":"telemetry*","9":"NA","10":"165.45","11":"2.21866677","12":"NA","13":"5.000000e+03","14":"3.69897000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"coruro","3":"mammalia","4":"rodentia","5":"octodontidae","6":"spalacopus","7":"cyanus","8":"telemetry*","9":"NA","10":"100.86","11":"2.00371896","12":"NA","13":"4.030000e+01","14":"1.60530505","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Siberian chipmunk","3":"mammalia","4":"rodentia","5":"sciuridae","6":"eutamias","7":"sibiricus","8":"telemetry*","9":"NA","10":"95.80","11":"1.98136551","12":"NA","13":"1.932810e+03","14":"3.28618916","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Northern parl squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"funambulus","7":"pennanti","8":"telemetry*","9":"NA","10":"102.50","11":"2.01072387","12":"NA","13":"1.799990e+03","14":"3.25527009","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Northern flying squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"glaucomys","7":"sabrinus","8":"telemetry*","9":"NA","10":"148.84","11":"2.17271966","12":"NA","13":"7.900053e+04","14":"4.89763000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Southern flying squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"glaucomys","7":"volans","8":"telemetry*","9":"NA","10":"64.50","11":"1.80955972","12":"NA","13":"2.919577e+04","14":"4.46531993","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"yellow-bellied marmot","3":"mammalia","4":"rodentia","5":"sciuridae","6":"marmota","7":"flaviventris","8":"telemetry*","9":"NA","10":"3401.97","11":"3.53173048","12":"NA","13":"5.696394e+04","14":"4.75560002","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"groundhog","3":"mammalia","4":"rodentia","5":"sciuridae","6":"marmota","7":"monax","8":"telemetry*","9":"NA","10":"3401.97","11":"3.53173048","12":"NA","13":"1.653903e+05","14":"5.21851001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"red bush squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"paraxerus","7":"palliatus","8":"telemetry*","9":"NA","10":"375.00","11":"2.57403127","12":"NA","13":"2.749983e+04","14":"4.43933001","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Abert's squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"sciurus","7":"aberti","8":"telemetry*","9":"NA","10":"793.80","11":"2.89971109","12":"NA","13":"1.308881e+05","14":"5.11690000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"eastern gray squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"sciurus","7":"carolinensis","8":"telemetry*","9":"NA","10":"532.98","11":"2.72671091","12":"NA","13":"4.900040e+03","14":"3.69019962","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Japanese squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"sciurus","7":"lis","8":"telemetry*","9":"NA","10":"264.30","11":"2.42209716","12":"NA","13":"1.708205e+05","14":"5.23253999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"fox squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"sciurus","7":"niger","8":"telemetry*","9":"NA","10":"952.99","11":"2.97908834","12":"NA","13":"1.282655e+05","14":"5.10810999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"red squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"sciurus","7":"vulgaris","8":"telemetry","9":"NA","10":"327.50","11":"2.51521130","12":"NA","13":"7.490831e+04","14":"4.87453000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"California ground squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"spermophilus","7":"beecheyi","8":"telemetry*","9":"NA","10":"725.75","11":"2.86078704","12":"NA","13":"5.188400e+02","14":"2.71503345","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Columbian ground squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"spermophilus","7":"columbianus","8":"telemetry*","9":"NA","10":"578.34","11":"2.76218323","12":"NA","13":"5.355000e+02","14":"2.72875947","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Franklin's ground squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"spermophilus","7":"franklinii","8":"telemetry*","9":"NA","10":"637.87","11":"2.80473218","12":"NA","13":"1.684380e+05","14":"5.22644000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"arctic ground squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"spermophilus","7":"parryii","8":"telemetry*","9":"NA","10":"794.49","11":"2.90008843","12":"NA","13":"3.010925e+04","14":"4.47869994","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"spotted ground squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"spermophilus","7":"spilosoma","8":"telemetry*","9":"NA","10":"106.00","11":"2.02530586","12":"NA","13":"1.504181e+04","14":"4.17730010","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"thirteen-lined ground squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"spermophilus","7":"tridecemlineatus","8":"telemetry*","9":"NA","10":"198.45","11":"2.29765110","12":"NA","13":"1.559983e+04","14":"4.19311987","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"rock squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"spermophilus","7":"variegatus","8":"telemetry*","9":"NA","10":"748.43","11":"2.87415119","12":"NA","13":"4.250500e+04","14":"4.62844002","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"yellow-pine chipmunk","3":"mammalia","4":"rodentia","5":"sciuridae","6":"tamias","7":"amoenus","8":"telemetry*","9":"NA","10":"26.93","11":"1.43023635","12":"NA","13":"8.163190e+03","14":"3.91185991","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"least chipmunk","3":"mammalia","4":"rodentia","5":"sciuridae","6":"tamias","7":"minimus","8":"telemetry*","9":"NA","10":"42.52","11":"1.62859326","12":"NA","13":"1.490219e+04","14":"4.17325010","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Colorado chipmunk","3":"mammalia","4":"rodentia","5":"sciuridae","6":"tamias","7":"quadrivittatus","8":"telemetry*","9":"NA","10":"42.52","11":"1.62859326","12":"NA","13":"5.325005e+04","14":"4.72632002","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Uinta chipmunk","3":"mammalia","4":"rodentia","5":"sciuridae","6":"tamias","7":"umbrinus","8":"telemetry*","9":"NA","10":"42.52","11":"1.62859326","12":"NA","13":"3.246011e+04","14":"4.51134999","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"American red squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"tamiasciurus","7":"hudsonicus","8":"telemetry*","9":"NA","10":"223.96","11":"2.35017046","12":"NA","13":"4.753350e+03","14":"3.67699979","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"striped ground squirrel","3":"mammalia","4":"rodentia","5":"sciuridae","6":"xerus","7":"erythropus","8":"telemetry*","9":"NA","10":"502.00","11":"2.70070372","12":"NA","13":"1.239995e+05","14":"5.09342000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"greater white-footed shrew","3":"mammalia","4":"soricomorpha","5":"soricidae","6":"crocidura","7":"russula","8":"telemetry*","9":"NA","10":"10.00","11":"1.00000000","12":"NA","13":"2.344200e+02","14":"2.36999466","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"arctic shrew","3":"mammalia","4":"soricomorpha","5":"soricidae","6":"sorex","7":"arcticus","8":"telemetry*","9":"NA","10":"8.13","11":"0.91009055","12":"NA","13":"4.786300e+03","14":"3.67999992","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"cinereus shrew","3":"mammalia","4":"soricomorpha","5":"soricidae","6":"sorex","7":"cinereus","8":"telemetry*","9":"NA","10":"4.17","11":"0.62013606","12":"NA","13":"5.011870e+03","14":"3.69999980","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"crowned shrew","3":"mammalia","4":"soricomorpha","5":"soricidae","6":"sorex","7":"coronatus","8":"telemetry*","9":"NA","10":"9.33","11":"0.96988164","12":"NA","13":"3.715400e+02","14":"2.57000558","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"slender shrew","3":"mammalia","4":"soricomorpha","5":"soricidae","6":"sorex","7":"gracillimus","8":"telemetry*","9":"NA","10":"4.37","11":"0.64048144","12":"NA","13":"2.754200e+02","14":"2.43999547","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"long-clawed shrew","3":"mammalia","4":"soricomorpha","5":"soricidae","6":"sorex","7":"unguiculatus","8":"telemetry*","9":"NA","10":"14.13","11":"1.15014216","12":"NA","13":"7.762000e+01","14":"1.88997364","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"star-nosed mole","3":"mammalia","4":"soricomorpha","5":"talpidae","6":"condylura","7":"cristata","8":"telemetry*","9":"NA","10":"47.86","11":"1.67997269","12":"NA","13":"3.630780e+03","14":"3.55999993","15":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"eastern mole","3":"mammalia","4":"soricomorpha","5":"talpidae","6":"scalopus","7":"aquaticus","8":"telemetry*","9":"NA","10":"103.50","11":"2.01494035","12":"NA","13":"7.428650e+03","14":"3.87090990","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"European mole","3":"mammalia","4":"soricomorpha","5":"talpidae","6":"talpa","7":"europaea","8":"telemetry*","9":"NA","10":"96.50","11":"1.98452731","12":"NA","13":"3.004350e+03","14":"3.47775053","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"mammals","2":"Roman mole","3":"mammalia","4":"soricomorpha","5":"talpidae","6":"talpa","7":"romana","8":"telemetry*","9":"NA","10":"81.42","11":"1.91073110","12":"NA","13":"2.828590e+03","14":"3.45157000","15":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","16":"terrestrial","17":"endotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"spiny tail lizard","3":"reptilia","4":"squamata","5":"agamidae","6":"uromastyx","7":"aegyptius","8":"mark-recapture","9":"20","10":"2500.00","11":"3.39794001","12":"NA","13":"1.176068e+04","14":"4.07043243","15":"Cunningham P. 2000. Daily activity pattern and diet of a population of the Spinytailed Lizard, Uromastyx aegyptius microlepis, during summer in the United Arab Emirates. Zoology in the Middle East 21(1), 37-46.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"western worm snake","3":"reptilia","4":"squamata","5":"colubridae","6":"carphopis","7":"vermis","8":"radiotag","9":"1","10":"3.46","11":"0.53907610","12":"NA","13":"7.000000e+02","14":"2.84509804","15":"Clark DR. 1970. Age-Specific \"Reproductive Effort\" in the Worm Snake Carphophis vermis (Kennicott). Transactions of the Kansas Academy of Science 73(1), 20-24.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"eastern worm snake","3":"reptilia","4":"squamata","5":"colubridae","6":"carphopis","7":"viridis","8":"radiotag","9":"10","10":"3.65","11":"0.56229286","12":"NA","13":"2.530000e+02","14":"2.40312052","15":"Barbour RW, Harvey MJ, and Hardin JW. 1969. Home Range, Movements, and Activity of the Eastern Worm Snake, Carphophis Amoenus Amoenus. Ecology 50(3), 470-476.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"racer","3":"reptilia","4":"squamata","5":"colubridae","6":"coluber","7":"constrictor","8":"telemetry","9":"15","10":"556.15","11":"2.74519194","12":"NA","13":"1.510000e+05","14":"5.17897695","15":"Carfagno GLF, Weatherhead PJ. 2008. Energetics and space use: intraspecific and interspecific comparisons of movements and home ranges of two Colubrid snakes. Journal of Animal Ecology 77, 416-424.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"617.94","22":"2.7909463","23":"0.900000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"yellow bellied racer","3":"reptilia","4":"squamata","5":"colubridae","6":"coluber","7":"constrictor flaviventris","8":"telemetry","9":"12","10":"144.50","11":"2.15986785","12":"NA","13":"1.145000e+05","14":"5.05880549","15":"Klug PE, Fill J, With KA. 2011. Spatial ecology of Eastern yellow-bellies racer (Coluber constrictor flaviventris) and great plains rat snake (Pantherophis emoryi) in a contiguous tallgrass-prairie landscape. Herpetologica 67(4), 428-439.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"160.56","22":"2.2056374","23":"0.900000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"ringneck snake","3":"reptilia","4":"squamata","5":"colubridae","6":"diadophis","7":"punctatus","8":"mark-recapture","9":"NA","10":"9.00","11":"0.95424251","12":"NA","13":"6.476000e+03","14":"3.81130684","15":"Fitch HS. 1975. A Demographic Study of the Ringneck Snake (Diadophis punctatus) in Kansas. University of Kansas Museum of Natural History Miscellaneous Publication No. 62.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"eastern indigo snake","3":"reptilia","4":"squamata","5":"colubridae","6":"drymarchon","7":"couperi","8":"telemetry","9":"1","10":"450.00","11":"2.65321251","12":"NA","13":"1.853000e+06","14":"6.26787542","15":"Dodd CK, Barichivich WJ. 2007. Movements of large snakes (Drymarchon, Masticophis_ in North-central Florida. Florida Scientist 70(1), 83-94.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"great plains ratsnake","3":"reptilia","4":"squamata","5":"colubridae","6":"elaphe","7":"guttata emoryi","8":"telemetry","9":"12","10":"256.70","11":"2.40942587","12":"NA","13":"1.506000e+05","14":"5.17782497","15":"Klug PE, Fill J, With KA. 2011. Spatial ecology of Eastern yellow-bellies racer (Coluber constrictor flaviventris) and great plains rat snake (Pantherophis emoryi) in a contiguous tallgrass-prairie landscape. Herpetologica 67(4), 428-439.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"western ratsnake","3":"reptilia","4":"squamata","5":"colubridae","6":"elaphe","7":"obsoleta","8":"telemetry","9":"18","10":"642.80","11":"2.80807587","12":"NA","13":"4.600000e+04","14":"4.66275783","15":"Carfagno GLF, Weatherhead PJ. 2008. Energetics and space use: intraspecific and interspecific comparisons of movements and home ranges of two Colubrid snakes. Journal of Animal Ecology 77, 416-424.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"71.50","22":"1.8543060","23":"8.990000","24":"Weatherhead PJ, Blouin-Demers G, Cavey KM. 2003. Seasonal and Prey-size Dietary Patterns of Black Ratsnakes (Elaphe obsoleta obsoleta). American Midland Naturalist 150, 275-281."},{"1":"snakes","2":"hognose snake","3":"reptilia","4":"squamata","5":"colubridae","6":"heterodon","7":"platirhinos","8":"telemetry","9":"8","10":"147.32","11":"2.16826171","12":"NA","13":"5.163750e+05","14":"5.71296521","15":"Plummer MV, Mills NE. 2000. Spatial Ecology and Survivorship of Resident and Translocated Hognose Snakes (Heterodonplatirhinos). Journal of Herpetology 34(4), 565-575.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"European whipsnake","3":"reptilia","4":"squamata","5":"colubridae","6":"hierophis","7":"viridiflavus","8":"telemetry","9":"32","10":"234.10","11":"2.36940141","12":"NA","13":"1.109000e+05","14":"5.04493155","15":"Herbe L, Moreau C, Blouin-Demers G, Bonnet X, Lourdais O. 2012. Two Syntopic Colubrid Snakes Differ In Their Energetic Requirements and In Their Use of Space. Herpetologica 68(3), 358-364.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"40.78","22":"1.6104472","23":"5.740000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"Eastern kingsnake","3":"reptilia","4":"squamata","5":"colubridae","6":"lampropeltis","7":"getula getula","8":"telemetry","9":"12","10":"315.72","11":"2.49930209","12":"NA","13":"4.950000e+05","14":"5.69460520","15":"Linehan JM, Smith LL, Steen DA. 2010. Ecology of the Eastern kingsnake (Lampropeltis getula getula) in a longleaf pine (Pinus palustris) forest in Southwestern Georgia. Herpetological Conservation Biology 5(1), 94-101.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"milksnake","3":"reptilia","4":"squamata","5":"colubridae","6":"lampropeltis","7":"triangulum","8":"telemetry","9":"10","10":"165.00","11":"2.21748394","12":"NA","13":"2.404000e+05","14":"5.38093446","15":"Row JR, Blouin-Demers G. 2006. Kernels are not Accurate Estimators of Home-Range Size For Herpetofauna. Copeia 4, 797-802.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"coachwhip","3":"reptilia","4":"squamata","5":"colubridae","6":"masticophis","7":"flagellum","8":"telemetry","9":"4","10":"534.50","11":"2.72794771","12":"NA","13":"4.293000e+05","14":"5.63276089","15":"Dodd CK, Barichivich WJ. 2007. Movements of large snakes (Drymarchon, Masticophis_ in North-central Florida. Florida Scientist 70(1), 83-94.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"grass snake","3":"reptilia","4":"squamata","5":"colubridae","6":"natrix","7":"natrix","8":"telemetry","9":"4","10":"78.50","11":"1.89486966","12":"NA","13":"9.900000e+04","14":"4.99563520","15":"Madsen T. 1984. Movements, Home Range Size and Habitat Use of Radio-Tracked Grass Snakes (Natrix natrix) in Southern Sweden. Copeia 3, 707-713.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"13.99","22":"1.1458177","23":"5.610000","24":"Gregory PT, Isaac LA. 2004. Food Habits of the Grass Snake in Southeastern England: Is Natrix natrix a Generalist Predator? Journal of Herpetology 38(1): 88-95."},{"1":"snakes","2":"copperbelly watersnake","3":"reptilia","4":"squamata","5":"colubridae","6":"nerodia","7":"erythrogaster","8":"telemetry","9":"15","10":"313.24","11":"2.49587722","12":"NA","13":"1.310000e+05","14":"5.11727130","15":"Roe JH, Kingsbury BA, Herbert NR. 2004. Comparative water snake ecology: conservation of mobile animals that use temporally dynamic resources. Biological Conservation 118, 79-89.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"Northern watersnake","3":"reptilia","4":"squamata","5":"colubridae","6":"nerodia","7":"sipeodon","8":"telemetry","9":"13","10":"190.55","11":"2.28000895","12":"NA","13":"4.000000e+04","14":"4.60205999","15":"Roe JH, Kingsbury BA, Herbert NR. 2004. Comparative water snake ecology: conservation of mobile animals that use temporally dynamic resources. Biological Conservation 118, 79-89.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"97.72","22":"1.9899835","23":"14.630000","24":"King RB. 2002. Predicted and Observed Maximum Prey Size - Snake Size Allometry. Functional Ecology 16(6), 766-772."},{"1":"snakes","2":"redbacked ratsnake","3":"reptilia","4":"squamata","5":"colubridae","6":"oocatochus","7":"rufodorsatus","8":"telemetry","9":"21","10":"62.50","11":"1.79588002","12":"NA","13":"1.540000e+04","14":"4.18752072","15":"Lee H-J, Lee J-H, Park D. 2011. Habitat Use and Movement Patterns of the Viviparous Aquatic Snake, Oocatochus rufodorsatus, from Northeast Asia. Zoological Science 28, 593-599.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"gopher snake","3":"reptilia","4":"squamata","5":"colubridae","6":"pituophis","7":"catenifer","8":"telemetry","9":"4","10":"375.00","11":"2.57403127","12":"NA","13":"1.740000e+04","14":"4.24054925","15":"Rodriguez-Robles JA. 2003. Home Ranges of Gopher Snakes (Pituophis catenifer, Colubridae) in Central California. Copeia 2, 391-396.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"pine snake","3":"reptilia","4":"squamata","5":"colubridae","6":"pituophis","7":"melanoleucus","8":"telemetry","9":"12","10":"1004.00","11":"3.00173371","12":"NA","13":"7.010000e+05","14":"5.84571802","15":"Miller GJ, Smith LL, Johnson SA, Franz R. 2012. Home Range Size and Habitat Selection in the Florida Pine Snake (Pituophis melanoleucus mugitus). Copeia 4, 706-713.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"53.75","22":"1.7303785","23":"18.680000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"butlers garter snake","3":"reptilia","4":"squamata","5":"colubridae","6":"thamnophis","7":"butleri","8":"mark-recapture","9":"1","10":"21.51","11":"1.33264041","12":"NA","13":"6.000000e+02","14":"2.77815125","15":"Freedman B, Catling PM. 1979. Movements of sympatric species of snakes at Amherstburg, Ontatio. Canadian Field-Naturalist 93(4): 399-404.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"Aesculapian snake","3":"reptilia","4":"squamata","5":"colubridae","6":"zamenis","7":"longissimus","8":"telemetry","9":"32","10":"249.30","11":"2.39672228","12":"NA","13":"7.740000e+04","14":"4.88874096","15":"Herbe L, Moreau C, Blouin-Demers G, Bonnet X, Lourdais O. 2012. Two Syntopic Colubrid Snakes Differ In Their Energetic Requirements and In Their Use of Space. Herpetologica 68(3), 358-364.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"broadheaded snake","3":"reptilia","4":"squamata","5":"elapidae","6":"hoplocephalus","7":"bungaroides","8":"telemetry","9":"24","10":"48.79","11":"1.68833082","12":"NA","13":"2.737900e+04","14":"4.43741758","15":"Webb JK, Shine R. 1997. A Field Study of Spatial Ecology and Movements of a Threatened Snake Species, Hoplocephalus bungaroides. Biological Conservation 82, 203-217.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"tiger snake","3":"reptilia","4":"squamata","5":"elapidae","6":"notechis","7":"scutatus","8":"telemetry","9":"5","10":"330.00","11":"2.51851394","12":"NA","13":"3.880000e+04","14":"4.58883173","15":"Butler H, Malone B, Clemann N. 2005. The effects of translocation on the spatial ecology of tiger snakes (Notechis scutatus) in a suburban landscape. Wildlife Research 32, 165-171.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"45.90","22":"1.6618127","23":"7.190000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"blacksnake","3":"reptilia","4":"squamata","5":"elapidae","6":"pseudechis","7":"porphyriacus","8":"telemetry","9":"44","10":"479.00","11":"2.68033551","12":"NA","13":"9.600000e+04","14":"4.98227123","15":"Shine R. 1987. Intraspecific Variation in Thermoregulation, Movements and Habitat Use by Australian Blacksnakes, Pseudechis porphyriacus (Elapidae). Journal of Herpetology 21(3), 165-177.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"Galapagos land iguana","3":"reptilia","4":"squamata","5":"iguanidae","6":"conolophus","7":"pallidus","8":"mark-recapture","9":"NA","10":"7000.00","11":"3.84509804","12":"NA","13":"8.594300e+03","14":"3.93421051","15":"Christian KA, Tracy CR. 1985. Physical and biotic determinants of space utilization by the Galapagos land iguana (Conolophus pallidus). Oecologia (Berlin) 66, 132-140.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"Bahamian Andros iguana","3":"reptilia","4":"squamata","5":"iguanidae","6":"cyclura","7":"cyclura","8":"telemetry","9":"15","10":"3780.00","11":"3.57749180","12":"NA","13":"7.066000e+04","14":"4.84917363","15":"Knapp CR, Owens AK. 2005. Home range and habitat associations of a Bahamian iguana: implications for conservation. Animal Conservation 8(3), 269-278.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"blue iguana","3":"reptilia","4":"squamata","5":"iguanidae","6":"cyclura","7":"lewisi","8":"telemetry","9":"5","10":"3200.00","11":"3.50514998","12":"NA","13":"1.280000e+05","14":"5.10720997","15":"Goodman RM, Echternact AC, Burton FJ. 2005. Spatial Ecology of the Endangered Iguana, Cyclura lewisi, in a Disturbed Setting on Grand Cayman. Journal of Herpetology 39(3), 402-408.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"Anegada ground iguana","3":"reptilia","4":"squamata","5":"iguanidae","6":"cyclura","7":"pinguis","8":"telemetry","9":"9","10":"4223.33","11":"3.62565502","12":"NA","13":"3.477778e+04","14":"4.54130186","15":"Mitchell NC. 1999. Effect of Introduced Ungulates on Density, Dietary Preferences, Home Range, and PhysicalCondition of the Iguana (Cyclura pinguis) on Anegada. Herpetologica 55(1), 7-17.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"Angel island chuckwalla","3":"reptilia","4":"squamata","5":"iguanidae","6":"sauromalus","7":"hispidua","8":"mark-recapture","9":"6","10":"927.00","11":"2.96707973","12":"NA","13":"2.350000e+03","14":"3.37106786","15":"Smits AW. 1985. Behavioral and Dietary Responses to Aridity in the Chuckwalla, Sauromalus hispidus. Journal of Herpetology 19(4), 441-449.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"common chuckwalla","3":"reptilia","4":"squamata","5":"iguanidae","6":"sauromalus","7":"obesus","8":"mark-recapture","9":"NA","10":"210.00","11":"2.32221930","12":"NA","13":"5.656000e+03","14":"3.75250940","15":"Johnson SR. 1965. An Ecological Study of the Chuckwalla, Sauromalus obesus Baird, in the Western Mojave Desert. American Midland Naturalist 73(1), 1-29.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"desert iguana","3":"reptilia","4":"squamata","5":"lacertilia","6":"dipsosaurus","7":"dorsalis","8":"mark-recapture","9":"51","10":"59.00","11":"1.77085201","12":"NA","13":"5.850000e+02","14":"2.76715587","15":"Alberts AC. 1993. Relationship of Space Use to Population Density in an Herbivorous Lizard. Herpetologica 49(4), 469-479.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"Tenerife lizard","3":"reptilia","4":"squamata","5":"lacertilia","6":"gallotia","7":"galloti","8":"mark-recapture","9":"10","10":"40.00","11":"1.60205999","12":"NA","13":"5.750000e+01","14":"1.75966785","15":"Borja MM. 1985. Spatial and Temporal behaviour of Gallotia galloti in a Natural Population of Tenerife. Bonn. Zool. Beitr. 36(3/4), 541-552.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"southwestern carpet python","3":"reptilia","4":"squamata","5":"pythonidae","6":"morelia","7":"spilota imbricata","8":"telemetry","9":"33","10":"1226.85","11":"3.08879147","12":"NA","13":"1.716000e+05","14":"5.23451728","15":"Pearson D, Shine R, Williams A. 2005. Spatial ecology of a threatened python (Morelia spilota imbricata) and the effects of anthropogenic habitat change. Austral Ecology 30, 261-274.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"lizards","2":"land mullet","3":"reptilia","4":"squamata","5":"scincidae","6":"egernia","7":"major","8":"telemetry","9":"7","10":"638.00","11":"2.80482068","12":"NA","13":"1.464800e+04","14":"4.16577833","15":"Osterwalder K, Klingenbock A, Shine R. 2004. Field studies on a social lizard: Home range and social organization in an Australian skink, Egernia major. Austral Ecology 29, 241-249.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"copperhead","3":"reptilia","4":"squamata","5":"viperidae","6":"agkistrodon","7":"contortrix","8":"telemetry","9":"18","10":"231.12","11":"2.36383753","12":"NA","13":"1.192889e+05","14":"5.07660000","15":"Smith CF, Schuett GW, Early RL, Schwenk K. 2009. The Spatial and Resproductive Ecology of the Copperhead (Agkistrodon contortrix) at the Northeastern Extrme of its Range. Herpetological Monographs 23, 45-73.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"namaqua dwarf adder","3":"reptilia","4":"squamata","5":"viperidae","6":"bitis","7":"schneideri","8":"telemetry","9":"11","10":"16.95","11":"1.22916970","12":"NA","13":"2.000000e+02","14":"2.30103000","15":"Maritz B, Alexander GJ. 2012. Dwarfs on the Move: Spatial Ecology of the World's Smallest Viper, Bitis schneideri. Copeia 1, 115-120.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"fer-de-lance","3":"reptilia","4":"squamata","5":"viperidae","6":"bothrops","7":"asper","8":"telemetry","9":"6","10":"826.23","11":"2.91710096","12":"NA","13":"6.070000e+04","14":"4.78318869","15":"Wasko DK, Sasa M. 2012. Food resources influence spatial ecology, habitat selection, and foraging behavior in an ambush-hunting snake (Viperidae: Bothrops asper): an experimental study. Zoology 115, 179-187.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"165.25","22":"2.2181415","23":"5.000000","24":"Martins M, Marques OAV, Sazima I. 2002. Ecological and phylogenetic correlates of feeding habits in Neotropical pitvipers of the genus Bothrops. In G. W. Schuett, M. E. Douglas, M. Hggren, and H. W. Greene (eds.), Biology of the Vipers. Eagle Mountain Publishing, Eagle Mountain, UT"},{"1":"snakes","2":"western diamondback","3":"reptilia","4":"squamata","5":"viperidae","6":"crotalus","7":"atrox","8":"telemetry","9":"14","10":"319.90","11":"2.50501424","12":"NA","13":"5.420000e+04","14":"4.73399929","15":"Beck DD. 1995. Ecology and Energetics of Three Sympatric Rattlesnake Species in the Sonoran Desert. Journal of Herpetology 29(2), 211-223.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"12.80","22":"1.1072100","23":"25.000000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"sidewinder","3":"reptilia","4":"squamata","5":"viperidae","6":"crotalus","7":"cerastes","8":"telemetry","9":"25","10":"106.70","11":"2.02816442","12":"NA","13":"2.800000e+04","14":"4.44715803","15":"Secor SM. 1994. Ecological Significance of Movements and Activity Range for the Sidewinder, Crotalus cerastes. Copeia 3, 631-645.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"timber rattlesnake","3":"reptilia","4":"squamata","5":"viperidae","6":"crotalus","7":"horridus","8":"telemetry","9":"6","10":"1020.00","11":"3.00860017","12":"NA","13":"2.579600e+06","14":"6.41155237","15":"Bauder JM, Blodgett D, Briggs KV, Jenkins CL. 2011. The Ecology of Timber Rattlesnakes (Crotalus horridus) in Vermont: A First Year Progress Report Submitted to the Vermont Department of Fish and Wildlife. Vermont Department of Fish and Wildlife.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"2684.21","22":"3.4288165","23":"0.380000","24":"Clark RW. 2002. Diet of the timber rattlesnake, Crotalus horridus. Journal of Herpetology 36(3), 494-499."},{"1":"snakes","2":"blacktailed rattlesnake","3":"reptilia","4":"squamata","5":"viperidae","6":"crotalus","7":"molossus","8":"telemetry","9":"3","10":"414.00","11":"2.61700034","12":"NA","13":"3.490000e+04","14":"4.54282543","15":"Beck DD. 1995. Ecology and Energetics of Three Sympatric Rattlesnake Species in the Sonoran Desert. Journal of Herpetology 29(2), 211-223.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"midget faded rattlesnake","3":"reptilia","4":"squamata","5":"viperidae","6":"crotalus","7":"oreganus concolor","8":"telemetry","9":"21","10":"138.70","11":"2.14207646","12":"NA","13":"1.178000e+06","14":"6.07114529","15":"Parker JM, Anderson SH. 2007. Ecology and Behavior of the Midget Faded Rattlesnake (Crotalus Oreganus Concolor) in Wyoming. Journal of Herpetology 1, 41-51.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"51.56","22":"1.7123129","23":"2.690000","24":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"twin-spotted rattlesnake","3":"reptilia","4":"squamata","5":"viperidae","6":"crotalus","7":"pricei","8":"telemetry","9":"5","10":"67.20","11":"1.82736927","12":"NA","13":"2.290000e+04","14":"4.35983548","15":"Prival DB, Goode MJ, Swann DE, Schwalbe CR, Schroff MJ. 2002. Natural History of a Northern Population of Twin-Spotted Rattlesnakes, Crotalus pricei. Journal of Herpetology 36(4), 598-607.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"Mojave rattlesnake","3":"reptilia","4":"squamata","5":"viperidae","6":"crotalus","7":"scutulatus","8":"telemetry","9":"19","10":"280.30","11":"2.44762310","12":"NA","13":"3.160000e+05","14":"5.49968708","15":"Cardwell MD. 2008. The reproductive ecology of Mohave rattlesnakes. Journal of Zoology 274, 65-76.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"tiger rattlesnake","3":"reptilia","4":"squamata","5":"viperidae","6":"crotalus","7":"tigris","8":"telemetry","9":"3","10":"234.70","11":"2.37051309","12":"NA","13":"3.480000e+04","14":"4.54157924","15":"Beck DD. 1995. Ecology and Energetics of Three Sympatric Rattlesnake Species in the Sonoran Desert. Journal of Herpetology 29(2), 211-223.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"chinese pit viper","3":"reptilia","4":"squamata","5":"viperidae","6":"gloydius","7":"shedaoensis","8":"telemetry","9":"16","10":"196.81","11":"2.29404716","12":"NA","13":"2.613690e+03","14":"3.41725408","15":"Shine R, Sun L-X. 2003. Attack strategy of an ambush predator: which attributes of the prey trigger a pit-vipers strike? Functional Ecology 17, 340-348.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"14.00","22":"1.1461280","23":"14.060000","24":"Shine R, Sun L-X. 2003. Attack strategy of an ambush predator: which attributes of the prey trigger a pit-vipers strike? Functional Ecology 17, 340-348."},{"1":"snakes","2":"Armenian viper","3":"reptilia","4":"squamata","5":"viperidae","6":"montivipera","7":"raddei","8":"telemetry","9":"14","10":"162.14","11":"2.20989017","12":"NA","13":"2.459286e+05","14":"5.39080898","15":"Ettling JA, Aghasyan LA, Aghasyan AL, Parker PG. 2013. Spatial Ecology of Armenian Vipers, Montivipera raddei, in a Human-Modified Landscape. Copeia 1, 64-71.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"snakes","2":"snubnosed viper","3":"reptilia","4":"squamata","5":"viperidae","6":"vipera","7":"latastei","8":"telemetry","9":"7","10":"97.40","11":"1.98855896","12":"NA","13":"2.400000e+03","14":"3.38021124","15":"Brito JC. 2003. Seasonal Variation in Movements, Home Range, and Habitat Use by Male Vipera latastei in Northern Portugal. Journal of Herpetology 37(1), 155-160.","16":"terrestrial","17":"ectotherm","18":"crawling","19":"carnivore","20":"2D","21":"8.97","22":"0.9527924","23":"10.860000","24":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"turtles","2":"Eastern long-necked turtle","3":"reptilia","4":"testudines","5":"chelidae","6":"chelodina","7":"longicollis","8":"telemetry","9":"32","10":"691.00","11":"2.83947805","12":"NA","13":"1.420000e+05","14":"5.15228834","15":"Roe JH, Georges A. 2008. Terrestrial activity, movements and spatial ecology of an Australian freshwater turtle, Chelodina longicollis, in a temporally dynamic wetland system. Austral Ecology 33, 1045-1056.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"Dalh's toad-headed tortoise","3":"reptilia","4":"testudines","5":"chelidae","6":"mesoclemmys","7":"dahli","8":"telemetry","9":"8","10":"595.00","11":"2.77451697","12":"NA","13":"1.155000e+05","14":"5.06258198","15":"Forero-Medina G, Cardenas-Arevalo G, Castano-Mora OV. 2011. Abundance, Home Range, and Movement Patterns of the Endemic Species Dahls Toad-Headed Turtle (Mesoclemmys dahli) in Cesar, Colombia. Chelonian Conservation and Biology 10(2), 228-236.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"common snapping turtle","3":"reptilia","4":"testudines","5":"chelydridae","6":"chelydra","7":"serpentina","8":"telemetry","9":"6","10":"4250.00","11":"3.62838893","12":"NA","13":"6.530000e+04","14":"4.81491318","15":"Brown GP, Bishop CA, Brooka RJ. 1994. Growth Rate, Reproductive Output, and Temperature Selection of Snapping Turtles inHabitats of Different Productivities. Journal of Herpetology 28(4), 405-410.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"midland painted turtle","3":"reptilia","4":"testudines","5":"emydidae","6":"chrysemys","7":"picta marginata","8":"telemetry","9":"18","10":"354.50","11":"2.54961624","12":"Snow JE. 1984. Feeding Ecology of Juvenile Turtles (Chrysemys) under experimental conditions. PhD Thesis, University of Oklahoma.","13":"3.150000e+04","14":"4.49831055","15":"Rowe JW, Dalgarn SF. 2010. Home Range Size and Daily Movements of Midland Painted turtles (Cyrusemys picta marginata) in Relation to Bosy Size, Sex, and Weather Patterns. Herpetological Conservation and Biology 5(3), 461-473.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"chicken turtle","3":"reptilia","4":"testudines","5":"emydidae","6":"deirochelys","7":"reticularia","8":"telemetry","9":"7","10":"588.00","11":"2.76937733","12":"NA","13":"2.380000e+04","14":"4.37657696","15":"Buhlmann KA. 1995. Habitat Use, Terrestrial Movements, and Conservation of the Turtle, Deirochelys reticulariain Virginia. Journal of Herpetology 29(2), 173-181.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"Blanding's turtle","3":"reptilia","4":"testudines","5":"emydidae","6":"emydoidea","7":"blandingii","8":"telemetry","9":"10","10":"1294.00","11":"3.11193428","12":"NA","13":"3.300000e+04","14":"4.51851394","15":"Innes RJ, Babbitt KJ, Kanter JJ. 2008. Home Range and Movement of Blanding's Turtles (Emydoidea blandingii) in New Hampshire. Northeastern Naturalist 15(3), 431-444.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"European pond turtle","3":"reptilia","4":"testudines","5":"emydidae","6":"emys","7":"orbicularis","8":"telemetry","9":"3","10":"462.00","11":"2.66464198","12":"NA","13":"3.516000e+04","14":"4.54604887","15":"Prez-Santigosa N, Hidalgo-Vila J, Daz-Paniagua C. 2013. Comparing Activity Patterns and Aquatic Home Range Areas Among Exotic and Native Turtles in Southern Spain. Chelonian Conservation and Biology 12(2), 313-319.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"yellow-blotched map turtle","3":"reptilia","4":"testudines","5":"emydidae","6":"graptemys","7":"flavimaculata","8":"telemetry","9":"7","10":"1135.00","11":"3.05499586","12":"NA","13":"5.750000e+04","14":"4.75966785","15":"Jones RL. 1996. Home Range and Seasonal Movements of the Turtle Graptemys flavimaculata. Journal of Herpetology 30(3), 376-385.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"ornate box turtle","3":"reptilia","4":"testudines","5":"emydidae","6":"terrapene","7":"ornata","8":"telemetry","9":"10","10":"211.00","11":"2.32428246","12":"NA","13":"8.727000e+03","14":"3.94086498","15":"Bernstein NP, Richtsmeier RJ., Black RW, Montgomery BJ. 2007. Home Range and Philopatry in the Ornate Box Turtle, Terrapene ornata ornata, in Iowa. American Midland Naturalist 157, 162-174.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"Spanish pond turtle","3":"reptilia","4":"testudines","5":"geoemydidae","6":"mauremys","7":"leprosa","8":"telemetry","9":"6","10":"720.60","11":"2.85769426","12":"NA","13":"3.418000e+04","14":"4.53377206","15":"Prez-Santigosa N, Hidalgo-Vila J, Daz-Paniagua C. 2013. Comparing Activity Patterns and Aquatic Home Range Areas Among Exotic and Native Turtles in Southern Spain. Chelonian Conservation and Biology 12(2), 313-319.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"Eastern mud turtle","3":"reptilia","4":"testudines","5":"kinosternidae","6":"kinosternon","7":"rubrubrum","8":"telemetry","9":"10","10":"154.70","11":"2.18949031","12":"NA","13":"1.860000e+05","14":"5.26951294","15":"Cordero GA, Reeves R, Swarth CW. 2012. Home-Range Size of an Eastern Mud Turtle, Kinosternon subrubrum, Population in the Mid-Atlantic Region of the United States. Chelonian Conservation and Biology 11(1), 121-124.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"stripe-necked musk turtle","3":"reptilia","4":"testudines","5":"kinosternidae","6":"sternotherus","7":"minor peltifer","8":"telemetry","9":"14","10":"164.00","11":"2.21484385","12":"NA","13":"5.180000e+03","14":"3.71432976","15":"Ennen JR, Scott AF. 2013. Home-Range Size of an Eastern Mud Turtle, Kinosternon subrubrum, Population in the Mid-Atlantic Region of the United States. Chelonian Conservation and Biology 12(1), 199-203.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"stinkpot turtle","3":"reptilia","4":"testudines","5":"kinosternidae","6":"sternotherus","7":"odoratus","8":"telemetry","9":"18","10":"190.00","11":"2.27875360","12":"NA","13":"2.800000e+04","14":"4.44715803","15":"Rowe JW, Lehr GC, McCarthy PM, Converse PM. 2009. Activity, Movements and Activity Area Size in Stinkpot Turtles (Sternotherus odoratus) in Southwestern Michigan Lake. American Midland Naturalist 162(2), 266-275.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"red-footed tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"geochelone","7":"carbonaria","8":"telemetry","9":"13","10":"6166.60","11":"3.79004578","12":"NA","13":"1.384160e+06","14":"6.14118629","15":"Montao RR, Cullar E, Fitzgerald LA, Soria F, Mendoza F, Pea R, Dosapey T, Deem SL, Noss AJ. 2013. Ranging patterns by the red-footed tortoise - Geochelone carbonaria (Testudines: Testudinidae) - in the Bolivian Chaco. Ecologa en Bolivia 48(1), 17-30.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"desert tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"gopherus","7":"agassizii","8":"telemetry","9":"29","10":"2000.00","11":"3.30103000","12":"NA","13":"1.685000e+05","14":"5.22659990","15":"Duda JJ, Krzysik AJ, Freilich JE. 1999. Effects of Drought on Desert Tortoise Movement and Activity. The Journal of Wildlife Management 63(4), 1181-1192.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"gopher tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"gopherus","7":"polyphemus","8":"telemetry","9":"22","10":"335.00","11":"2.52504481","12":"NA","13":"5.200000e+03","14":"3.71600334","15":"Diemer JE. 1992. Home Range and Movements of the Tortoise Gopherus polyphemus in Northern Florida. Journal of Herpetology 26(2), 158-165.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"travancore tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"indotestudo","7":"travancorica","8":"telemetry","9":"4","10":"232.00","11":"2.36548799","12":"NA","13":"7.200000e+04","14":"4.85733250","15":"Vasudevan, K., Pandav, B & Deepak, V. 2010.Ecology of two endemic turtles in the Western Ghats. Final Technical Report, Wildlife Institute of India 74p.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"Speke's hinge-backed tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"kinixys","7":"spekii","8":"thread-trailing","9":"7","10":"620.00","11":"2.79239169","12":"NA","13":"1.900000e+04","14":"4.27875360","15":"Hailey A, Coulson IM. 1996. Home Range Use and Seasonal Movements of the Egyptian Tortoise (Testudo kleinmanni) in the Northwestern Negev, Israel. Canadian Journal of Zoology 74, 97-102.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"impressed tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"manouria","7":"impressa","8":"telemetry","9":"10","10":"3000.00","11":"3.47712126","12":"NA","13":"9.640000e+04","14":"4.98407703","15":"Wanchai P, Stanford CB, Thirakhupt K, Thankhikorn S. 2012. Home Range of the Impressed Tortoise, Manouria impressa (Gnther,1882) at Phu Luang Wildlife Sanctuary, Loei Province, Thailand. Tropical Natural History 12(2), 165-174","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"bushmanland tent tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"psammobates","7":"tentorius","8":"telemetry","9":"4","10":"500.00","11":"2.69897000","12":"NA","13":"3.197000e+05","14":"5.50474264","15":"Cunningham PL, Sumang A. 2008. Ecology of the Bushmanland Tent Tortoise (Psammobates tentorius verroxii) in Southern Namibia. Chelonian Conservation and biology 7(1), 119-124.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"leopard tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"stigmochelys","7":"pardalis","8":"telemetry","9":"14","10":"10600.00","11":"4.02530586","12":"NA","13":"2.050000e+06","14":"6.31175386","15":"McMaster MK, Downs CT. 2009. Home Range and Daily Movement of Leopard Tortoises (Stigmochelys pardalis) in the Nama-Karoo, South Africa. Journal of Herpetology 43(4), 561-569.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"spur-thighed tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"testudo","7":"graeca","8":"telemetry","9":"10","10":"400.00","11":"2.60205999","12":"NA","13":"1.710000e+04","14":"4.23299611","15":"Anadon JD, Gimenez A, Perez I, Martinez M, Esteve MA. 2006. Habitat selection by the spur-thighed tortoise Testudo graeca in a multisuccessional landscape: implications for habitat management. Biodiversity and Conservation 15, 2287-2299.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"mediterranean tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"testudo","7":"hermanii","8":"telemetry","9":"24","10":"1522.00","11":"3.18241465","12":"NA","13":"3.790000e+04","14":"4.57863921","15":"Rozylowicz L, Popescue VD. 2013. Habitat selection and movement ecology of eastern Hermanns tortoises in a rural Romanian landscape. European Journal of Wildlife Research 59, 47-55.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"Russian steppe tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"testudo","7":"horsfieldi","8":"telemetry","9":"29","10":"1018.00","11":"3.00774778","12":"NA","13":"5.700000e+05","14":"5.75587486","15":"Lagarde F, Bonnet X, Henen B, Legrand A, Borbin J, Nagy K, Naulleau G. 2003. Sex divergence in space utilisation in the steppe tortoise (Testudo horsfieldi). Canadian Journal of Zoology 81, 380-387.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"tortoises","2":"Egyptian tortoise","3":"reptilia","4":"testudines","5":"testudinidae","6":"testudo","7":"kleinmanni","8":"telemetry","9":"9","10":"222.00","11":"2.34635297","12":"NA","13":"1.417000e+05","14":"5.15136985","15":"Geffen E, Mendelssohn H. 1988. Home Range Use and Seasonal Movements of the Egyptian Tortoise (Testudo kleinmanni) in the Northwestern Negev, Israel. Herpetologica 44(3), 354-359.","16":"terrestrial","17":"ectotherm","18":"walking","19":"herbivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"},{"1":"turtles","2":"Eastern spiny softshell turtle","3":"reptilia","4":"testudines","5":"trionychidae","6":"apalone","7":"spinifera","8":"telemetry","9":"11","10":"2982.33","11":"3.47455570","12":"NA","13":"1.800000e+06","14":"6.25527250","15":"Galois P, Leveille M, Bouthillier L, Daigle C, Parren S. 2002. Movement Patterns, Activity, and Home Range of the Eastern Spiny Softshell Turtle (Apalone spinifers) in Northern Lake Champlain, Qubec, Vermont. Journal of Herpetology 36(3), 402-411.","16":"terrestrial","17":"ectotherm","18":"walking","19":"carnivore","20":"2D","21":"NA","22":"NA","23":"NA","24":"NA"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 2 {.tabset .tabset-fade .tabset-pills}

Question

Convert the class column (which is text) to create a factor column class_fct and assign the result to a tibble hra. Use forcats to order the factor levels as:

  • mammalia
  • reptilia
  • aves
  • actinopterygii

Solution

hra <- hra_raw %>%
  mutate(class_fct = as_factor(class) %>% fct_relevel("mammalia", "reptilia", "aves", "actinopterygii")) %>%
  relocate(class_fct, .after = class)

hra
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["taxon"],"name":[1],"type":["chr"],"align":["left"]},{"label":["common.name"],"name":[2],"type":["chr"],"align":["left"]},{"label":["class"],"name":[3],"type":["chr"],"align":["left"]},{"label":["class_fct"],"name":[4],"type":["fct"],"align":["left"]},{"label":["order"],"name":[5],"type":["chr"],"align":["left"]},{"label":["family"],"name":[6],"type":["chr"],"align":["left"]},{"label":["genus"],"name":[7],"type":["chr"],"align":["left"]},{"label":["species"],"name":[8],"type":["chr"],"align":["left"]},{"label":["primarymethod"],"name":[9],"type":["chr"],"align":["left"]},{"label":["N"],"name":[10],"type":["chr"],"align":["left"]},{"label":["mean.mass.g"],"name":[11],"type":["dbl"],"align":["right"]},{"label":["log10.mass"],"name":[12],"type":["dbl"],"align":["right"]},{"label":["alternative.mass.reference"],"name":[13],"type":["chr"],"align":["left"]},{"label":["mean.hra.m2"],"name":[14],"type":["dbl"],"align":["right"]},{"label":["log10.hra"],"name":[15],"type":["dbl"],"align":["right"]},{"label":["hra.reference"],"name":[16],"type":["chr"],"align":["left"]},{"label":["realm"],"name":[17],"type":["chr"],"align":["left"]},{"label":["thermoregulation"],"name":[18],"type":["chr"],"align":["left"]},{"label":["locomotion"],"name":[19],"type":["chr"],"align":["left"]},{"label":["trophic.guild"],"name":[20],"type":["chr"],"align":["left"]},{"label":["dimension"],"name":[21],"type":["chr"],"align":["left"]},{"label":["preymass"],"name":[22],"type":["dbl"],"align":["right"]},{"label":["log10.preymass"],"name":[23],"type":["dbl"],"align":["right"]},{"label":["PPMR"],"name":[24],"type":["dbl"],"align":["right"]},{"label":["prey.size.reference"],"name":[25],"type":["chr"],"align":["left"]}],"data":[{"1":"lake fishes","2":"american eel","3":"actinopterygii","4":"actinopterygii","5":"anguilliformes","6":"anguillidae","7":"anguilla","8":"rostrata","9":"telemetry","10":"16","11":"887.00","12":"2.94792362","13":"NA","14":"2.827500e+05","15":"5.45140261","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"blacktail redhorse","3":"actinopterygii","4":"actinopterygii","5":"cypriniformes","6":"catostomidae","7":"moxostoma","8":"poecilura","9":"mark-recapture","10":"NA","11":"562.00","12":"2.74973632","13":"NA","14":"2.821000e+02","15":"2.45040309","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"central stoneroller","3":"actinopterygii","4":"actinopterygii","5":"cypriniformes","6":"cyprinidae","7":"campostoma","8":"anomalum","9":"mark-recapture","10":"20","11":"34.00","12":"1.53147892","13":"NA","14":"1.161100e+02","15":"2.06486963","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"rosyside dace","3":"actinopterygii","4":"actinopterygii","5":"cypriniformes","6":"cyprinidae","7":"clinostomus","8":"funduloides","9":"mark-recapture","10":"26","11":"4.00","12":"0.60205999","13":"NA","14":"1.255000e+02","15":"2.09864373","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"longnose dace","3":"actinopterygii","4":"actinopterygii","5":"cypriniformes","6":"cyprinidae","7":"rhinichthys","8":"cataractae","9":"mark-recapture","10":"17","11":"4.00","12":"0.60205999","13":"NA","14":"8.710000e+01","15":"1.94001815","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"muskellunge","3":"actinopterygii","4":"actinopterygii","5":"esociformes","6":"esocidae","7":"esox","8":"masquinongy","9":"telemetry","10":"5","11":"3525.00","12":"3.54715912","13":"NA","14":"3.934350e+04","15":"4.59487299","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"pollack","3":"actinopterygii","4":"actinopterygii","5":"gadiformes","6":"gadidae","7":"pollachius","8":"pollachius","9":"telemetry","10":"2","11":"737.36","12":"2.86767957","13":"NA","14":"9.056410e+03","15":"3.95695608","16":"Sarno B, Glass CW, Smith GW, et al. 1994. A comparison of the movements of two species of gadoid in the vicinity of an underwater reef. Journal of Fisheries Biology 45, 811-817.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"1.39","23":"0.1430148","24":"530.000000","25":"Brose U, et al. 2005b. Body sizes of consumers and their resources. Ecology 86, 2545."},{"1":"marine fishes","2":"saithe","3":"actinopterygii","4":"actinopterygii","5":"gadiformes","6":"gadidae","7":"pollachius","8":"virens","9":"telemetry","10":"2","11":"448.61","12":"2.65186895","13":"NA","14":"4.451615e+04","15":"4.64851760","16":"Sarno B, Glass CW, Smith GW, et al. 1994. A comparison of the movements of two species of gadoid in the vicinity of an underwater reef. Journal of Fisheries Biology 45, 811-817.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"lined surgeonfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"acanthuridae","7":"acanthurus","8":"lineatus","9":"direct observation","10":"NA","11":"109.04","12":"2.03758584","13":"NA","14":"1.113000e+01","15":"1.04649516","16":"Nursall JR. 1974. Some Territorial Behavioral Attributes of the Surgeonfish Acanthurus lineatus at Heron Island, Queensland. Copeia 950-959.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"orangespine unicornfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"acanthuridae","7":"naso","8":"lituratus","9":"telemetry","10":"8","11":"772.16","12":"2.88770730","13":"NA","14":"3.209286e+04","15":"4.50640842","16":"Marshell A, Mills JS, Rhodes KL, et al. 2011. Passive acoustic telemetry reveals highly variable home range and movement patterns among unicornfish within a marine reserve. Coral Reefs 30, 631-642.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"bluespine unicornfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"acanthuridae","7":"naso","8":"unicornis","9":"telemetry","10":"7","11":"151.84","12":"2.18138619","13":"NA","14":"1.790000e+04","15":"4.25285303","16":"Marshell A, Mills JS, Rhodes KL, et al. 2011. Passive acoustic telemetry reveals highly variable home range and movement patterns among unicornfish within a marine reserve. Coral Reefs 30, 631-642.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"redlip blenny","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"blennidae","7":"ophioblennius","8":"atlanticus","9":"direct observation","10":"20","11":"6.20","12":"0.79239169","13":"NA","14":"5.200000e-01","15":"-0.28399666","16":"Nursall JR. 1977. Territoriality in Redlip blennies (Ophioblennius atlanticus - Pisces : Blenniidae). Journal of Zoology, London 182, 205-223.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"giant trevally","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"carangidae","7":"caranx","8":"ignobilis","9":"telemetry","10":"4","11":"726.18","12":"2.86104428","13":"NA","14":"5.277300e+04","15":"4.72241178","16":"Wetherbee BM, Holland KN, Meyer CG, et al. 2004. Use of a marine reserve in Kaneohe Bay, Hawaii by the giant trevally, Caranx ignobilis. Fisheries Research 67, 253-263. (doi:10.1016/j.fishres.2003.11.004)","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lake fishes","2":"rock bass","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"centrarchidae","7":"ambloplites","8":"rupestris","9":"mark-recapture","10":"16","11":"196.00","12":"2.29225607","13":"NA","14":"1.040690e+04","15":"4.01732138","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lake fishes","2":"pumpkinseed","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"centrarchidae","7":"lepomis","8":"gibbosus","9":"telemetry","10":"4","11":"82.00","12":"1.91381385","13":"NA","14":"4.950000e+03","15":"3.69460520","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lake fishes","2":"bluegill","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"centrarchidae","7":"lepomis","8":"macrochirus","9":"telemetry","10":"9","11":"79.00","12":"1.89762709","13":"NA","14":"4.420000e+03","15":"3.64542227","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"longear sunfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"centrarchidae","7":"lepomis","8":"megalotis","9":"mark-recapture","10":"NA","11":"16.00","12":"1.20411998","13":"NA","14":"9.750000e+01","15":"1.98900462","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"smallmouth bass","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"centrarchidae","7":"micropterus","8":"dolomieu","9":"telemetry","10":"NA","11":"1134.00","12":"3.05461305","13":"NA","14":"1.936500e+03","15":"3.28701750","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lake fishes","2":"largemouth bass","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"centrarchidae","7":"micropterus","8":"salmoides","9":"telemetry","10":"9","11":"2125.00","12":"3.32735893","13":"NA","14":"3.440333e+04","15":"4.53660048","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lake fishes","2":"white crappie","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"centrarchidae","7":"pomoxis","8":"annularis","9":"telemetry","10":"37","11":"423.00","12":"2.62634037","13":"NA","14":"1.580000e+05","15":"5.19865709","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"eastern triangular butterflyfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"chaetodontidae","7":"chaetodon","8":"baronessa","9":"direct observation","10":"NA","11":"27.63","12":"1.44138089","13":"NA","14":"6.324000e+01","15":"1.80099186","16":"Reese ES. 1973. Duration of Residence by Coral Reef Fishes on \"Home\" Reefs. Copeia, 1, 145-149.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"Tahititan butterflyfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"chaetodontidae","7":"chaetodon","8":"trichrous","9":"direct observation","10":"28","11":"31.88","12":"1.50351831","13":"NA","14":"5.950000e+01","15":"1.77451697","16":"Reavis RH, Copus JM. 2011. Monogamy in a feeding generalist, Chaetodon trichrous, the endemic Tahitian Butterflyfish. Environmental Biology of Fishes 92, 167-179.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"chevron butterflyfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"chaetodontidae","7":"chaetodon","8":"trifascialis","9":"direct observation","10":"NA","11":"60.54","12":"1.78204242","13":"NA","14":"6.491000e+01","15":"1.81231161","16":"Reese ES. 1973. Duration of Residence by Coral Reef Fishes on \"Home\" Reefs. Copeia, 1, 145-149.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"melon butterflyfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"chaetodontidae","7":"chaetodon","8":"trifasciatus","9":"direct observation","10":"NA","11":"70.45","12":"1.84788100","13":"NA","14":"2.209300e+02","15":"2.34425469","16":"Sutton M. 1985. Patterns of spacing in a coral reef fish in two habitats on the Great Barrier Reef. Animal Behavior 33, 1332-1337.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"teardrop butterflyfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"chaetodontidae","7":"chaetodon","8":"unimaculatus","9":"direct observation","10":"NA","11":"78.12","12":"1.89276223","13":"NA","14":"2.749400e+02","15":"2.43923793","16":"Reese ES. 1973. Duration of Residence by Coral Reef Fishes on \"Home\" Reefs. Copeia, 1, 145-149.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"red moki","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"cheilodactylidae","7":"cheilodactylus","8":"spectrabilis","9":"telemetry","10":"3","11":"1551.13","12":"3.19064820","13":"NA","14":"2.046670e+03","15":"3.31104782","16":"Buxton CD, Semmens JM, Forbes E, et al. 2010. Spatial Management of Reef Fisheries And Ecosystems: Understanding The Importance of Movement. FRDC Final Report - Project 2004/002.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"redspotted hawkfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"cirrhitidae","7":"amblycirrhitus","8":"pinos","9":"direct observation","10":"NA","11":"0.45","12":"-0.34678749","13":"NA","14":"2.540000e+00","15":"0.40483372","16":"Luckhurst BE, Luckhurst K. 1978. Diurnal Space Utilization in Coral Reef Fish Communities. Marine Biology 49, 325-332.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"dwarf hawkfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"cirrhitidae","7":"cirrhitichthys","8":"falco","9":"mark-recapture","10":"16","11":"10.45","12":"1.01911629","13":"NA","14":"4.620000e+01","15":"1.66464198","16":"Kadota T, Osato J, Hashimoto H, et al. 2011. Harem structure and female territoriality in the dwarf hawkfish Cirrhitichthys falco (Cirrhitidae). Environmental Biology of Fishes 92, 79-88.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"cabezon","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"cottidae","7":"scorpaenichthys","8":"marmoratus","9":"mark-recapture","10":"27","11":"1450.23","12":"3.16143689","13":"NA","14":"3.303110e+03","15":"3.51892304","16":"Mireles C, Nakamura R, Wendt DE. 2012. A collaborative approach to investigate site fidelity, home range, and homing behavior of cabezon (Scorpaenichthys marmoratus). Fisheries Research 113, 133-142.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"japanese shrimpgoby","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"gobiidae","7":"amblyeleotris","8":"japonica","9":"direct observation","10":"34","11":"2.70","12":"0.43136376","13":"NA","14":"2.827000e+01","15":"1.45132581","16":"Yanagisawa Y. 1982. Social Behaviour and Mating System of the Gobiid Fish Amblyeleotris japonica. Japanese Journal of Ichthyology 28: 401-422.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"bluebanded goby","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"gobiidae","7":"lythrypnus","8":"dalli","9":"mark-recapture","10":"48","11":"0.31","12":"-0.50863831","13":"NA","14":"5.000000e-01","15":"-0.30103000","16":"St. Mary CM. 1994. Sex allocation in a simultaneous hermaphrodite, the blue-banded goby (Lythrypnus dalli): the effects of body size and behavioral gender and the consequences for reproduction. Behavioral Ecology 5, 304-313.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"rusty goby","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"gobiidae","7":"priolepis","8":"hipoliti","9":"direct observation","10":"NA","11":"0.22","12":"-0.65757732","13":"NA","14":"3.000000e-02","15":"-1.52287875","16":"Luckhurst BE, Luckhurst K. 1978. Diurnal Space Utilization in Coral Reef Fish Communities. Marine Biology 49, 325-332.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"blackeye goby","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"gobiidae","7":"rhinogobiops","8":"nicholsii","9":"mark-recapture","10":"104","11":"4.00","12":"0.60205999","13":"NA","14":"3.200000e-01","15":"-0.49485002","16":"Kroon FJ, de Graff M, Liley NR. 2000. Social organisation and competition for refuges and nest sites in Coryphopterus nicholsii (Gobiidae), a temperate protogynous reef fish. Environmental Biology of Fishes 57, 401-411.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"longfinned goby","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"gobiidae","7":"valenciennea","8":"longipinnis","9":"mark-recapture","10":"14","11":"71.23","12":"1.85266294","13":"NA","14":"6.150000e+01","15":"1.78887512","16":"Takegaki T. 2001. Environmental factors affecting the spawning burrow selection by the gobiid Valenciennea longipinnis. Journal of Fish Biology. 58, 222-229. (doi:10.1006/jfbi.2000.1438)","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"bermuda chub","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"kyphosidae","7":"kyphosus","8":"sectatrix","9":"telemetry","10":"11","11":"1086.71","12":"3.03611366","13":"NA","14":"3.442300e+04","15":"4.53684872","16":"Eristhee N, Oxenford HA. 2001. Home range size and use of space by Bermuda chub Kyphosus sectatrix (L.) in two marine reserves in the Soufrire Marine Management Area, St Lucia, West Indies. Journal of Fisheries Biology 59, 129-151.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"spanish hogfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"bodianus","8":"rufus","9":"direct observation","10":"47","11":"133.38","12":"2.12509071","13":"NA","14":"5.178000e+02","15":"2.71416205","16":"Hoffman SG. 1983. Sex-Related Foraging Behavior in Sequentially Hermaphroditic Hogfishes (Bodianus Spp.). Ecology 64, 798-808.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"humphead wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"chelinus","8":"undulatus","9":"mark-recapture","10":"1","11":"1644.90","12":"3.21613950","13":"NA","14":"5.000000e+04","15":"4.69897000","16":"Chateau O, Wantiez L. 2007. Site fidelity and activity patterns of a humphead wrasse, Cheilinus undulatus (Labridae), as determined by acoustic telemetry. Environmental Biology of Fishes 808, 503-508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"mediterranean rainbow wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"coris","8":"julis","9":"mark-recapture","10":"NA","11":"119.16","12":"2.07613050","13":"NA","14":"2.276000e+02","15":"2.35717226","16":"Palmer M, Balle S, March D, et al. 2011. Size estimation of circular home range from fish mark-release-(single)-recapture data: case study of a small labrid targeted by recreational fishing. Marine Ecology Progress Series 430, 87-97.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"slippery dick","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"halichoeres","8":"bivittatus","9":"mark-recapture","10":"4","11":"7.17","12":"0.85551916","13":"NA","14":"1.425000e+02","15":"2.15381486","16":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"yellowhead wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"halichoeres","8":"garnoti","9":"mark-recapture","10":"2","11":"6.57","12":"0.81756537","13":"NA","14":"1.285000e+02","15":"2.10890313","16":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"clown wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"halichoeres","8":"maculipinna","9":"mark-recapture","10":"2","11":"9.55","12":"0.98000337","13":"NA","14":"1.584000e+02","15":"2.19975518","16":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"blackear wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"halichoeres","8":"poeyi","9":"mark-recapture","10":"2","11":"7.03","12":"0.84695533","13":"NA","14":"1.637000e+02","15":"2.21404868","16":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"bluestreak cleaner wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"labroides","8":"dimidiatus","9":"direct observation","10":"NA","11":"3.49","12":"0.54282543","13":"NA","14":"3.316000e+01","15":"1.52061452","16":"Robertson DR. 1974. A Study of the Ethology and Reproductive Biology of the Labrid Fish, Labroides dimidiatus, at Heron Island, Great Barrier Reef. Ph.D. thesis. University of Queensland.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"ballan wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"labrus","8":"bergylta","9":"telemetry","10":"2","11":"362.30","12":"2.55906833","13":"NA","14":"4.028590e+03","15":"3.60515307","16":"Pita P, Freire J. 2011. Movements of three large coastal predatory fishes in the northeast Atlantic: a preliminary telemetry study. Scientia Marina 75, 759-770.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"maori wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"opthalmolepis","8":"lineolatus","9":"mark-recapture","10":"14","11":"95.54","12":"1.98018524","13":"NA","14":"8.560000e+02","15":"2.93247377","16":"Kingsford MJ, Carlson IJ. 2010. Patterns of distribution and movement of fishes, Ophthalmolepis lineolatus and Hypoplectrodes maccullochi, on temperate rocky reefs of south eastern Australia. Environmental Biology of Fishes 88, 105-118. (doi: 10.1007/s10641-010-9621-1)","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"california sheepshead","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"semicossyphus","8":"pulcher","9":"telemetry","10":"16","11":"1484.14","12":"3.17147487","13":"NA","14":"1.513400e+04","15":"4.17995373","16":"Topping DT, Lowe CG, Caselle JE. 2005. Home range and habitat utilization of adult California sheephead, Semicossyphus pulcher (Labridae), in a temperate no-take marine reserve. Marine Biology 147, 301-311.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"cunner","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"tautogolabrus","8":"adspersus","9":"telemetry","10":"8","11":"103.47","12":"2.01481445","13":"NA","14":"1.368110e+03","15":"3.13612102","16":"Bradbury C, Green JM, Bruce-Lockhart. 1995. Home ranges of female cunner, Tautogolabrus adspersus (Labridae), as determined by ultrasonic telemetry. Canadian Journal of Zoology 73, 1268-1279.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"bluehead wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"thalassoma","8":"bifasciatum","9":"mark-recapture","10":"2","11":"3.12","12":"0.49415459","13":"NA","14":"1.033000e+02","15":"2.01410032","16":"Jones KMM. 2005. Home range areas and activity centres in six species of Caribbean wrasses (Labridae). Journal of Fisheries Biology 66, 150-166.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"moon wrasse","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"labridae","7":"thalassoma","8":"lunare","9":"direct observation","10":"NA","11":"84.06","12":"1.92458939","13":"NA","14":"1.187000e+01","15":"1.07445072","16":"Robertson DR, Choat JH. 1974. Protogynous Hermaphroditism and Social Systems in Labrid Fish. In: Proc. Int. Coral Reef Symp., 2nd ed. (Cameron, A.M., B.M. Cambell, A.B. Cribb, R.Endean, J.S. Jell, O.A. Jones, P. Mather and F.H. Talbot, eds.), 1, 217-226.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"thumbprint emperor","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"lethrinidae","7":"lethrinus","8":"harak","9":"telemetry","10":"21","11":"236.76","12":"2.37430833","13":"NA","14":"1.988100e+03","15":"3.29843822","16":"Nanami A, Yamada H. 2009. Site fidelity, size, and spatial arrangement of daytime home range of thumbprint emperor Lethrinus harak (Lethrinidae). Fisheries Science 75, 1109-1116.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"mutton snapper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"lutjanidae","7":"lutjanus","8":"analis","9":"telemetry","10":"4","11":"2167.70","12":"3.33599918","13":"NA","14":"7.640000e+06","15":"6.88309336","16":"Farmer NA, Ault JS. 2011. Grouper and snapper movements and habitat use in Dry Tortugas, Florida. Marine Ecology Progress Series 433, 169-184.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"schoolmaster snapper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"lutjanidae","7":"lutjanus","8":"apodus","9":"telemetry","10":"15","11":"56.04","12":"1.74849813","13":"NA","14":"6.660000e+03","15":"3.82347423","16":"Hammerschlag-Peyer CM, Layman CA. 2010. Intrapopulation variation in habitat use by two abundant coastal fish species. Marine Ecology Progress Series 415, 211-220.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"4.69","23":"0.6711728","24":"11.950000","25":"Rooker JR. 1995. Feeding Ecology of the Schoolmaster Snapper Lutjanus apodus (Walbaum), From Southwestern Puerto Rico. Bulletin of Marine Science 56(3), 881-894."},{"1":"marine fishes","2":"checkered snapper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"lutjanidae","7":"lutjanus","8":"decussatus","9":"telemetry","10":"58","11":"50.00","12":"1.69897000","13":"NA","14":"1.340600e+03","15":"3.12729921","16":"Nanami A, Yamada H. 2008. Size and spatial arrangement of home range of checkered snapper Lutjanus decussatus (Lutjanidae) in an Okinawan coral reef determined using a portable GPS receiver. Marine Biology 153, 1103-1111.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"gray snapper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"lutjanidae","7":"lutjanus","8":"griseus","9":"telemetry","10":"14","11":"56.27","12":"1.75027691","13":"NA","14":"3.538400e+04","15":"4.54880693","16":"Hammerschlag-Peyer CM, Layman CA. 2010. Intrapopulation variation in habitat use by two abundant coastal fish species. Marine Ecology Progress Series 415, 211-220.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"yellowtail snapper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"lutjanidae","7":"ocyurus","8":"chrysurus","9":"telemetry","10":"5","11":"1176.86","12":"3.07072480","13":"NA","14":"4.172000e+06","15":"6.62034430","16":"Farmer NA, Ault JS. 2011. Grouper and snapper movements and habitat use in Dry Tortugas, Florida. Marine Ecology Progress Series 433, 169-184.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"ocean whitefish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"malacanthidae","7":"caulolatilus","8":"princeps","9":"telemetry","10":"17","11":"1940.27","12":"3.28786217","13":"NA","14":"3.547400e+04","15":"4.54991016","16":"Bellquist LF, Lowe CG, Caselle JE. 2008. Fine-scale movement patterns, site fidelity, and habitat selection of ocean whitefish (Caulolatilus princeps). Fisheries Research 91, 325-335.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"european seabass","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"moronidae","7":"dicentrarchus","8":"labrax","9":"telemetry","10":"2","11":"85.99","12":"1.93444795","13":"NA","14":"1.771235e+04","15":"4.24827618","16":"Pita P, Freire J. 2011. Movements of three large coastal predatory fishes in the northeast Atlantic: a preliminary telemetry study. Scientia Marina 75, 759-770.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"white goatfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"mullidae","7":"mulloidichthys","8":"flavolineatus","9":"telemetry","10":"4","11":"297.72","12":"2.47380801","13":"NA","14":"5.400000e+03","15":"3.73239376","16":"Holland KN, Peterson JD, Lowe CG, et al. 1993. Movements, Distribution and Growth Rates of The White Goatfish Mulloides flavolineatus in a Fisheries Conservation Zone. Bulletin of Marine Science 52: 982-992.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"whitesaddle goatfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"mullidae","7":"parupeneus","8":"porphyreus","9":"telemetry","10":"16","11":"191.55","12":"2.28228216","13":"NA","14":"1.920000e+04","15":"4.28330123","16":"Meyer CG, Holland KN, Wetherbee BM, et al. 2000. Movement patterns, habitat utilization, home range size and site fidelity of whitesaddle goatfish, Parupeneus porphyreus, in a marine reserve. Environmental Biology of Fishes 59, 235-242.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lake fishes","2":"yellow perch","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"percidae","7":"perca","8":"flavescens","9":"telemetry","10":"4","11":"134.00","12":"2.12710480","13":"NA","14":"1.140000e+04","15":"4.05690485","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"canary damsel","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacanthidae","7":"abudefduf","8":"luridus","9":"direct observation","10":"NA","11":"94.58","12":"1.97579931","13":"NA","14":"2.700000e+01","15":"1.43136376","16":"Mapstone GM, Wood EM. 1975. The ethology of Abudefduf luridus and Chromis chromis (Pisces: Pomacentridae) from the Azores. Journal of Zoology, London 175, 179-199.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"cherubfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacanthidae","7":"centropyge","8":"argi","9":"direct observation","10":"NA","11":"2.50","12":"0.39794001","13":"NA","14":"1.130000e+00","15":"0.05307844","16":"Luckhurst BE, Luckhurst K. 1978. Diurnal Space Utilization in Coral Reef Fish Communities. Marine Biology 49, 325-332.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"damselfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacentridae","7":"chromis","8":"chromis","9":"direct observation","10":"NA","11":"28.41","12":"1.45347123","13":"NA","14":"1.850000e+01","15":"1.26717173","16":"Mapstone GM, Wood EM. 1975. The ethology of Abudefduf luridus and Chromis chromis (Pisces: Pomacentridae) from the Azores. Journal of Zoology, London 175, 179-199.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"twinspot damselfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacentridae","7":"chrysiptera","8":"biocellata","9":"direct observation","10":"18","11":"9.19","12":"0.96331551","13":"NA","14":"2.580000e+00","15":"0.41161971","16":"Keenleyside MHA. 1972. The Behaviour of Abudefduf zonatus (Pisces, Pomacentridae) at Heron Island, Great Barrier Reef. Animal Behavior 20, 763-774.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"whitetail dascyllus","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacentridae","7":"dascyllus","8":"aruanus","9":"mark-recapture","10":"NA","11":"3.96","12":"0.59769519","13":"NA","14":"1.100000e+00","15":"0.04139268","16":"Sale PF. 1971. Extremely Limited Home Range in a Coral Reef Fish, Dascyllus aruanus (Pisces; Pomacentridae). Copeia, 324-327.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"wards damsel","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacentridae","7":"pomacentrus","8":"wardi","9":"direct observation","10":"NA","11":"10.49","12":"1.02077549","13":"NA","14":"5.400000e-01","15":"-0.26760624","16":"Sale PF. 1974. Mechanisms of co-existence in a guild of territorial fishes at Heron Island. pp. 193-206. In: Proc. Second Intern. Symp. Coral Reefs, Vol. 1, Great Barrier Reef Committee. Brisbane.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"australian gregory","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacentridae","7":"stegastes","8":"apicalis","9":"direct observation","10":"NA","11":"45.30","12":"1.65609820","13":"NA","14":"2.250000e+00","15":"0.35218252","16":"Sale PF. 1978. Coexistence of coral reef fishes - a lottery for living space. Environmental Biology of Fishes 3(1), 85-102.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"bicolor damselfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacentridae","7":"stegastes","8":"partitus","9":"direct observation","10":"NA","11":"6.64","12":"0.82216808","13":"NA","14":"5.000000e-02","15":"-1.30103000","16":"Luckhurst BE, Luckhurst K. 1978. Diurnal Space Utilization in Coral Reef Fish Communities. Marine Biology 49, 325-332.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"cocoa damselfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"pomacentridae","7":"stegastes","8":"variabilis","9":"direct observation","10":"10","11":"39.00","12":"1.59106461","13":"NA","14":"7.400000e+00","15":"0.86923172","16":"Gronell A. 1980. Space utilization by the cocoa damselfish Eupomacentrus variabilis (Pisces: Pomacentridae). Bulletin of Marine Science 30, 237-251.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"steephead parrotfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"scaridae","7":"chlorurus","8":"microrhinos","9":"telemetry","10":"7","11":"1668.11","12":"3.22222469","13":"NA","14":"7.830000e+03","15":"3.89376176","16":"Welsh JQ, Bellwood DR. 2011. Spatial ecology of the steephead parrotfish (Chlorurus microrhinos): an evaluation using acoustic telemetry. Coral Reefs 31, 55-65. (doi: 10.1007/s00338-011-0813-8)","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"striped parrotfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"scaridae","7":"scarus","8":"iseri","9":"direct observation","10":"25","11":"171.42","12":"2.23406149","13":"NA","14":"1.720000e+02","15":"2.23552845","16":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"rivulated parrotfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"scaridae","7":"scarus","8":"rivulatus","9":"telemetry","10":"18","11":"289.40","12":"2.46149853","13":"NA","14":"2.444278e+04","15":"4.38815060","16":"Welsh JQ, Bellwood DR. .2012. How far do schools of roving herbivores rove? A case study using Scarus rivulatus. Coral Reefs 31, 991-1003. (doi: 10.1007/s00338-012-0922-z)","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"redband parrotfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"scaridae","7":"sparisoma","8":"aurofrenatum","9":"direct observation","10":"25","11":"250.64","12":"2.39905038","13":"NA","14":"2.870000e+02","15":"2.45788190","16":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"redtail parrotfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"scaridae","7":"sparisoma","8":"chrysopterum","9":"direct observation","10":"17","11":"388.84","12":"2.58977093","13":"NA","14":"1.650000e+02","15":"2.21748394","16":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"redfin parrotfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"scaridae","7":"sparisoma","8":"rubripinne","9":"direct observation","10":"17","11":"523.80","12":"2.71916549","13":"NA","14":"1.750000e+02","15":"2.24303805","16":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"stoplight parrotfish","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"scaridae","7":"sparisoma","8":"viride","9":"direct observation","10":"27","11":"521.16","12":"2.71697108","13":"NA","14":"7.200000e+01","15":"1.85733250","16":"Mumby PJ, Wabnitz CCC. 2002. Spatial patterns of aggression, territory size, and harem size in five sympatric Caribbean parrotfish species. Environmental Biology of Fishes 63, 265-279.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"peacock hind","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"cephalopholis","8":"argus","9":"mark-recapture","10":"16","11":"697.00","12":"2.84323278","13":"NA","14":"1.300000e+03","15":"3.11394335","16":"Shpigel M, Fishelson L. 1991. Territoriality and associated behaviour in three species of the genus Cephalopholis (Pisces: Serranidae) in the Gulf of Aqaba, Red Sea. Journal of Fisheries Biology 38, 887-896.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"6.50","23":"0.8129134","24":"107.230000","25":"Dierking J, Williams ID, Walsh W. 2009. Diet composition and prey selection of the introduced grouper species peacock hind (Cephalopholis argus) in Hawaii. Fish. Bull. 107:464476."},{"1":"marine fishes","2":"graysby","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"cephalopholis","8":"cruentata","9":"telemetry","10":"10","11":"436.24","12":"2.63972549","13":"NA","14":"2.120000e+03","15":"3.32633586","16":"Popple ID, Hunte W. 2005. Movement patterns of Cephalopholis cruentata in a marine reserve in St Lucia, W.I., obtained from ultrasonic telemetry. Journal of Fish Biology 67, 981-992.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"yellowfin hind","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"cephalopholis","8":"hemistiktos","9":"mark-recapture","10":"9","11":"119.00","12":"2.07554696","13":"NA","14":"1.200000e+01","15":"1.07918125","16":"Shpigel M, Fishelson L. 1991. Territoriality and associated behaviour in three species of the genus Cephalopholis (Pisces: Serranidae) in the Gulf of Aqaba, Red Sea. Journal of Fisheries Biology 38, 887-896.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"coral hind","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"cephalopholis","8":"miniata","9":"mark-recapture","10":"19","11":"476.00","12":"2.67760695","13":"NA","14":"2.170000e+02","15":"2.33645973","16":"Shpigel M, Fishelson L. 1991. Territoriality and associated behaviour in three species of the genus Cephalopholis (Pisces: Serranidae) in the Gulf of Aqaba, Red Sea. Journal of Fisheries Biology 38, 887-896.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"red hind","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"epinephelus","8":"guttatus","9":"mark-recapture","10":"NA","11":"312.30","12":"2.49457198","13":"NA","14":"1.243400e+03","15":"3.09461086","16":"Shapiro DY, Garcia-Moliner G, Sadovy Y. 1994. Social system of an inshore stock of the red hind grouper, Ephephelus guttatus (Pisces : Serranidae). Environmental Biology of Fishes 41, 415-422.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"dusky grouper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"epinephelus","8":"marginatus","9":"telemetry","10":"7","11":"398.51","12":"2.60043922","13":"NA","14":"5.312000e+03","15":"3.72525807","16":"Lembo G, Spedicato MT, kland F, et al. 2002. A wireless communication system for determining site fidelity of juvenile dusky groupers Epinephelus marginatus (Lowe, 1834) using coded acoustic transmitters. Hydrobiologia 483, 249-257.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"4.48","23":"0.6512780","24":"88.950000","25":"Linde M, Grau AM, Riera F, Massuti-Pascual E. 2004. Analysis of Trophic Ontogeny in Epinephelus Marginatus (Serranidae). Cybium 28(1): 27-35."},{"1":"marine fishes","2":"red grouper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"epinephelus","8":"morio","9":"telemetry","10":"45","11":"2181.15","12":"3.33868553","13":"NA","14":"2.087500e+06","15":"6.31962648","16":"Farmer NA, Ault JS. 2011. Grouper and snapper movements and habitat use in Dry Tortugas, Florida. Marine Ecology Progress Series 433, 169-184.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"nassau grouper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"epinephelus","8":"striatus","9":"telemetry","10":"22","11":"2362.06","12":"3.37329093","13":"NA","14":"1.830500e+04","15":"4.26256973","16":"Bolden SK. 2001. Using Ultrasonic Telemetry to Determine Home Range of a Coral-Reef Fish. In: Sibert JR, Nielsen JL, eds. Electronic Tagging and Tracking in Marine Fisheries New York, NY: Springer. 484p.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"13.26","23":"1.1225435","24":"178.134238","25":"Sadovy Y, Eklund A-M. 1999. Synopsis of Biological Data on the Nassau Grouper, Epinephelus striatus (Bloch, 1792), and the Jewfish, E. itajara (Lichtenstein 1822). NOAA Technical Report NMFS 146."},{"1":"marine fishes","2":"greasy grouper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"epinephelus","8":"tauvina","9":"telemetry","10":"14","11":"3081.08","12":"3.48870297","13":"NA","14":"2.990000e+05","15":"5.47567119","16":"Kaunda-Arara B, Rose GA. 2004. Homing and site fidelity in the greasy grouper Epinephelus tauvina (Serranidae) within a marine protected area in coastal Kenya. Marine Ecology Progress Series 277, 245-251.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"redbanded perch","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"hypoplectrodes","8":"huntii","9":"direct observation","10":"6","11":"119.00","12":"2.07554696","13":"NA","14":"2.190000e+00","15":"0.34044411","16":"Jones GP. 1980. Contribution to the biology of the redbanded perch, Ellerkeidia huntii (Hector), with a discussion on hermaphroditism. Journal of Fisheries Biology 17, 197-207.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"half-banded seaperch","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"hypoplectrodes","8":"maccullochi","9":"mark-recapture","10":"13","11":"24.87","12":"1.39567578","13":"NA","14":"6.830000e+00","15":"0.83442070","16":"Kingsford MJ, Carlson IJ. 2010. Patterns of distribution and movement of fishes, Ophthalmolepis lineolatus and Hypoplectrodes maccullochi, on temperate rocky reefs of south eastern Australia. Environmental Biology of Fishes 88, 105-118. (doi: 10.1007/s10641-010-9621-1)","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"black grouper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"mycteroperca","8":"bonaci","9":"telemetry","10":"3","11":"3247.34","12":"3.51152776","13":"NA","14":"1.435000e+06","15":"6.15685190","16":"Farmer NA, Ault JS. 2011. Grouper and snapper movements and habitat use in Dry Tortugas, Florida. Marine Ecology Progress Series 433, 169-184.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"kelp bass","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"paralabrax","8":"clathratus","9":"telemetry","10":"12","11":"378.42","12":"2.57797408","13":"NA","14":"3.760250e+03","15":"3.57521672","16":"Lowe CG, Topping DT, Cartamil DP, et al. 2003. Movement patterns, home range, and habitat utilization of adult kelp bass Paralabrax clathratus in a temperate no-take marine reserve. Marine Ecology Progress Series 256, 205-216.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"barred sand bass","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"paralabrax","8":"nebulifer","9":"telemetry","10":"8","11":"1527.64","12":"3.18402102","13":"NA","14":"1.000271e+04","15":"4.00011768","16":"Mason TJ, Lowe CG. 2010. Home range, habitat use, and site fidelity of barred sand bass within a southern California marine protected area. Fisheries Research 106, 93-101.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"coral grouper","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"plectropomus","8":"areolatus","9":"telemetry","10":"15","11":"1992.23","12":"3.29933948","13":"NA","14":"1.680000e+05","15":"5.22530928","16":"Hutchinson N, Rhodes KL. 2010. Home range estimates for squaretail coralgrouper, Plectropomus areolatus (Rppell 1830). Coral Reefs 29: 511-519.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"coral trout","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"plectropomus","8":"leopardus","9":"telemetry","10":"39","11":"1753.40","12":"3.24388100","13":"NA","14":"1.879600e+04","15":"4.27406544","16":"Zeller DC. 1997. Home range and activity patterns of the coral trout Plectropomus leopardus (Serranidae). Marine Ecology Progress Series. 154, 65-77.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"49.01","23":"1.6902847","24":"35.780000","25":"St John J. 1999. Ontogenetic changes in the diet of the coral reef grouper Plectropomus leopardus (Serranidae): patterns in taxa, size and habitat of prey. Marine Ecology Progress Series 180, 233-246."},{"1":"marine fishes","2":"comber","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"serranus","8":"cabrilla","9":"telemetry","10":"15","11":"41.11","12":"1.61394748","13":"NA","14":"7.616667e+05","15":"5.88176495","16":"Als J, March D, Palmer M, Grau A, Morales-Nin. 2011. Spatial and temporal patterns in Serranus cabrilla habitat use in the NW Mediterranean revealed by acoustic telemetry. Marine Ecology Progress Series 427, 173 - 186.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"painted comber","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"serranidae","7":"serranus","8":"scriba","9":"telemetry","10":"15","11":"75.93","12":"1.88041340","13":"NA","14":"1.107500e+06","15":"6.04434373","16":"March D, Palmer M, Als J, et al. 2010. Short-term residence, home range size and diel patterns of the painted comber Serranus scriba in a temperate marine reserve. Marine Ecology Progress Series 400, 195-206.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"salema","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"sparidae","7":"sarpa","8":"salpa","9":"telemetry","10":"NA","11":"731.58","12":"2.86426182","13":"NA","14":"4.948214e+04","15":"4.69444847","16":"Jadot C, Donnay A, Acolas ML, et al. 2006. Activity patterns, home-range size, and habitat utilization of Sarpa salpa (Teleostei: Sparidae) in the Mediterranean Sea. ICES Journal of Marine Science 63, 128-139.","17":"aquatic","18":"ectotherm","19":"swimming","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"gilthead seabream","3":"actinopterygii","4":"actinopterygii","5":"perciformes","6":"sparidae","7":"sparus","8":"auratus","9":"telemetry","10":"NA","11":"934.20","12":"2.97043986","13":"NA","14":"2.975481e+04","15":"4.47355718","16":"Parsons DM, Babcock RC, Hankin RKS, et al. 2003. Snapper Pagrus auratus (Sparidae) home range dynamics: acoustic tagging studies in a marine reserve. Marine Ecology Progress Series 262, 253-265.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"cutthroat trout","3":"actinopterygii","4":"actinopterygii","5":"salmoniformes","6":"salmonidae","7":"oncorhynchus","8":"clarki","9":"mark-recapture","10":"58","11":"99.20","12":"1.99651167","13":"NA","14":"1.012500e+02","15":"2.00539503","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"gila trout","3":"actinopterygii","4":"actinopterygii","5":"salmoniformes","6":"salmonidae","7":"oncorhynchus","8":"gilae","9":"mark-recapture","10":"129","11":"47.00","12":"1.67209786","13":"NA","14":"3.437000e+02","15":"2.53617953","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"rainbow trout","3":"actinopterygii","4":"actinopterygii","5":"salmoniformes","6":"salmonidae","7":"oncorhynchus","8":"mykiss","9":"mark-recapture","10":"125","11":"109.00","12":"2.03742650","13":"NA","14":"1.740000e+02","15":"2.24054925","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"atlantic salmon","3":"actinopterygii","4":"actinopterygii","5":"salmoniformes","6":"salmonidae","7":"salmo","8":"salar","9":"mark-recapture","10":"MCP","11":"2.00","12":"0.30103000","13":"NA","14":"4.500000e+01","15":"1.65321251","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lake fishes","2":"brown trout","3":"actinopterygii","4":"actinopterygii","5":"salmoniformes","6":"salmonidae","7":"salmo","8":"trutta","9":"telemetry","10":"NA","11":"402.00","12":"2.60422605","13":"NA","14":"1.528840e+04","15":"4.18436204","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"1.96","23":"0.2922561","24":"205.100000","25":"Hyvarinen P, Huusko A. 2006. Diet of brown trout in relation to variation in abundance and size of pelagic fish prey. Journal of Fish Biology 68, 8798."},{"1":"river fishes","2":"mottled sculpin","3":"actinopterygii","4":"actinopterygii","5":"scorpaeniformes","6":"cottidae","7":"cottus","8":"bairdi","9":"mark-recapture","10":"51","11":"5.00","12":"0.69897000","13":"NA","14":"8.390000e+01","15":"1.92376196","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"banded sculpin","3":"actinopterygii","4":"actinopterygii","5":"scorpaeniformes","6":"cottidae","7":"cottus","8":"carolinae","9":"mark-recapture","10":"32","11":"3.00","12":"0.47712126","13":"NA","14":"4.700000e+01","15":"1.67209786","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"river fishes","2":"sculpin","3":"actinopterygii","4":"actinopterygii","5":"scorpaeniformes","6":"cottidae","7":"cottus","8":"gobio","9":"mark-recapture","10":"NA","11":"5.00","12":"0.69897000","13":"NA","14":"4.813000e+01","15":"1.68241586","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"copper rockfish","3":"actinopterygii","4":"actinopterygii","5":"scorpaeniformes","6":"sebastidae","7":"sebastes","8":"caurinus","9":"telemetry","10":"4","11":"1100.33","12":"3.04152295","13":"NA","14":"2.157750e+03","15":"3.33400112","16":"Tolimieri N, Andrews K, Williams G, et al. 2009. Home range size and patterns of space use by lingcod, copper rockfish and quillback rockfish in relation to diel and tidal cycles. Marine Ecology Progress Series. 380, 229-243. (doi: 10.3354/meps07930)","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"6.80","23":"0.8325089","24":"161.810000","25":"Murie DJ. 1995. Comparative feeding ecology of two sympatric rockfish congeners, Sebastes caurinus (copper rockfish) and S. maliger (quillback rockfish). Marine Biology 124: 341-353."},{"1":"marine fishes","2":"japanese black rockfish","3":"actinopterygii","4":"actinopterygii","5":"scorpaeniformes","6":"sebastidae","7":"sebastes","8":"inermis","9":"telemetry","10":"3","11":"99.25","12":"1.99673052","13":"NA","14":"8.154000e+02","15":"2.91137071","16":"Mitamura H, Uchida K, Miyamoto Y, et al. 2009. Preliminary study on homing, site fidelity, and diel movement of black rockfish Sebastes inermis measured by acoustic telemetry. Fisheries Science 75, 113-1140.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"0.67","23":"-0.1739252","24":"148.130000","25":"Honda H, Masatoshi K. 1997. Size selective feeding and its limitations for the black rockfish, Sebastes inermis, in a demersal fish assemblage of Onagawa Bay, northeastern Japan. Environmental Biology of Fishes 50: 183193."},{"1":"marine fishes","2":"quillback rockfish","3":"actinopterygii","4":"actinopterygii","5":"scorpaeniformes","6":"sebastidae","7":"sebastes","8":"maliger","9":"telemetry","10":"5","11":"1341.25","12":"3.12750973","13":"NA","14":"1.571000e+03","15":"3.19617619","16":"Tolimieri N, Andrews K, Williams G, et al. 2009. Home range size and patterns of space use by lingcod, copper rockfish and quillback rockfish in relation to diel and tidal cycles. Marine Ecology Progress Series. 380, 229-243. (doi: 10.3354/meps07930)","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"7.80","23":"0.8920946","24":"171.960000","25":"Murie DJ. 1995. Comparative feeding ecology of two sympatric rockfish congeners, Sebastes caurinus (copper rockfish) and S. maliger (quillback rockfish). Marine Biology 124: 341-353."},{"1":"marine fishes","2":"black rockfish","3":"actinopterygii","4":"actinopterygii","5":"scorpaeniformes","6":"sebastidae","7":"sebastes","8":"melanops","9":"telemetry","10":"23","11":"737.78","12":"2.86792688","13":"NA","14":"2.500000e+05","15":"5.39794001","16":"Green KM, Starr RM. 2011. Movements of small adult black rockfish: implications for the design of MPAs. Marine Ecology Progress Series 14, 219-230.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"blue rockfish","3":"actinopterygii","4":"actinopterygii","5":"scorpaeniformes","6":"sebastidae","7":"sebastes","8":"mustinus","9":"telemetry","10":"10","11":"780.54","12":"2.89239516","13":"NA","14":"3.469240e+04","15":"4.54023435","16":"Jorgensen SJ, Kaplan DM, Klimley AP, et al. 2006. Limited movement in blue rockfish Sebastes mystinus: internal structure of home range. Marine Ecology Progress Series 327, 157-170.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lake fishes","2":"yellow bullhead","3":"actinopterygii","4":"actinopterygii","5":"siluriformes","6":"ictaluridae","7":"ictalurus","8":"natalis","9":"mark-recapture","10":"27","11":"202.00","12":"2.30535137","13":"NA","14":"6.145740e+03","15":"3.78857418","16":"Minns, C. K. 1995. Allometry of home range size in lake and river fishes. Canadian Journal of Fisheries and Aquatic Sciences 52:1499-1508.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"long-snouted seahorse","3":"actinopterygii","4":"actinopterygii","5":"syngnathiformes","6":"syngnathidae","7":"hippocampus","8":"guttulatus","9":"mark-recapture","10":"NA","11":"9.55","12":"0.98000337","13":"NA","14":"1.990000e+01","15":"1.29885308","16":"Curtis JMR, Vincent CJ. 2006. Life history of an unusual marine fish: survival, growth and movement patterns of Hippocampus guttulatus Cuvier 1829. Journal of Fisheries Biology 68, 707-733.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"worm pipefish","3":"actinopterygii","4":"actinopterygii","5":"syngnathiformes","6":"syngnathidae","7":"nerophis","8":"lumbriciformis","9":"direct observation","10":"NA","11":"1.22","12":"0.08635983","13":"NA","14":"1.260000e+01","15":"1.10037055","16":"Monteiro NM, da Natividade Viera M, Almada V. 2005. Homing behaviour and individual identification of the pipefish Nerophis lumbriciformis (Pisces; Syngnathidae): a true intertidal resident? Estuarine and Coastal Shelf Science 63, 93-99.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"marine fishes","2":"atlantic sharpnose puffer","3":"actinopterygii","4":"actinopterygii","5":"tetraodontiformes","6":"tetraodontidae","7":"canthigaster","8":"rostrata","9":"mark-recapture","10":"NA","11":"8.96","12":"0.95230801","13":"NA","14":"1.515000e+02","15":"2.18041263","16":"Sikkel PC. 1990. Social organization and spawning in the Atlantic sharpnose puffer, Canthigaster rostrata (Tetraodontidae). Environmental Biology of Fishes 27, 243-254.","17":"aquatic","18":"ectotherm","19":"swimming","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"golden eagle","3":"aves","4":"aves","5":"accipitriformes","6":"accipitridae","7":"aquila","8":"chrysaetos","9":"telemetry*","10":"NA","11":"3000.00","12":"3.47712126","13":"NA","14":"2.755000e+07","15":"7.44012160","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"636.94","23":"2.8040985","24":"4.710000","25":"Gliwicz J. 2008. Body Size Relationships between Avian Predators and Their Rodent Prey in a North-American Sagebrush Community. Acta Ornithologica, 43(2):151-158."},{"1":"birds","2":"common buzzard","3":"aves","4":"aves","5":"accipitriformes","6":"accipitridae","7":"buteo","8":"buteo","9":"telemetry*","10":"NA","11":"846.00","12":"2.92737036","13":"NA","14":"5.024000e+07","15":"7.70104963","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"275.84","23":"2.4406572","24":"3.067000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"short-toed snake eagle","3":"aves","4":"aves","5":"accipitriformes","6":"accipitridae","7":"circaetus","8":"gallicus","9":"telemetry*","10":"NA","11":"1699.00","12":"3.23019338","13":"NA","14":"7.850000e+07","15":"7.89486966","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"164.95","23":"2.2173523","24":"10.300000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"Bonelli's eagle","3":"aves","4":"aves","5":"accipitriformes","6":"accipitridae","7":"hieraaetus","8":"fasciatus","9":"telemetry*","10":"NA","11":"2049.00","12":"3.31154196","13":"NA","14":"1.962000e+07","15":"7.29269900","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"booted eagle","3":"aves","4":"aves","5":"accipitriformes","6":"accipitridae","7":"hieraaetus","8":"pennatus","9":"telemetry","10":"4","11":"975.00","12":"2.98900462","13":"NA","14":"1.173000e+08","15":"8.06929801","16":"Martinez JE, Pagan I, Palazon JA, Calvo JF. 2007. Habitat use of booted eagles (Hieraaetus pennatus) in a Special Protection Area: implications for conservation. Biodiversity Conservation 16, 3481-3488.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"365.17","23":"2.5624951","24":"2.560000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"Egyptian vulture","3":"aves","4":"aves","5":"accipitriformes","6":"accipitridae","7":"neophron","8":"percnopterus","9":"telemetry*","10":"NA","11":"2203.00","12":"3.34301450","13":"NA","14":"6.357000e+07","15":"7.80325221","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"gadwall","3":"aves","4":"aves","5":"anseriformes","6":"anatidae","7":"anas","8":"strepera","9":"telemetry","10":"3","11":"719.00","12":"2.85672889","13":"NA","14":"4.591200e+07","15":"7.66192621","16":"Namgail T, Takekawa JY, Balachandran S, Sathiyaselvam P, Mundkur T, Newman SH. 2014. Space use of wintering waterbirds in India: Influence of trophic ecology on home-range size. Current Zoology 60(5), 616-621.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"northern brown kiwi","3":"aves","4":"aves","5":"apterygiformes","6":"apterygidae","7":"apteryx","8":"australis","9":"telemetry","10":"6","11":"2320.00","12":"3.36548799","13":"NA","14":"4.639000e+05","15":"5.66642437","16":"Miles JRG Miles, Potter MA, Fordham RA. 1997. Northern brown kiwi (Apteryx australis mantelli) in Tongariro National Park and Tongariro Forest ecology and threats. Science for Conservation 51, 1-23.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"European nightjar","3":"aves","4":"aves","5":"caprimulgiformes","6":"caprimulgidae","7":"caprimulgus","8":"europaeus","9":"telemetry*","10":"NA","11":"48.00","12":"1.68124124","13":"NA","14":"7.850000e+05","15":"5.89486966","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"oystercatcher","3":"aves","4":"aves","5":"charadriiformes","6":"haematopodidae","7":"haematopus","8":"ostralegus","9":"telemetry","10":"8","11":"521.00","12":"2.71683772","13":"NA","14":"2.460000e+06","15":"6.39093511","16":"Schwemmer P, Garthe S. 2011. Spatial and temporal patterns of habitat use by Eurasian oystercatchers (Haematopus ostralegus) in the eastern Wadden Sea revealed using GPS data loggers. Marine Biology 158, 541-550.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"inca dove","3":"aves","4":"aves","5":"columbidormes","6":"columbidae","7":"scardafella","8":"inca","9":"direct observation","10":"NA","11":"47.70","12":"1.67851838","13":"NA","14":"2.589980e+03","15":"3.41329641","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"common wood pigeon","3":"aves","4":"aves","5":"columbiformes","6":"columbidae","7":"columba","8":"palumbus","9":"telemetry*","10":"NA","11":"150.00","12":"2.17609126","13":"NA","14":"2.540000e+06","15":"6.40483372","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"European turtle dove","3":"aves","4":"aves","5":"columbiformes","6":"columbidae","7":"streptopelia","8":"turtur","9":"telemetry*","10":"NA","11":"140.33","12":"2.14715052","13":"NA","14":"6.358500e+07","15":"7.80335468","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"European roller","3":"aves","4":"aves","5":"coraciiformes","6":"coraciidae","7":"coracias","8":"garrulus","9":"telemetry*","10":"NA","11":"103.00","12":"2.01283723","13":"NA","14":"1.000000e+06","15":"6.00000000","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"hoopoe","3":"aves","4":"aves","5":"coraciiformes","6":"upupidae","7":"upupa","8":"epops","9":"telemetry*","10":"NA","11":"67.00","12":"1.82607480","13":"NA","14":"1.256000e+07","15":"7.09898964","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"great spotted cuckoo","3":"aves","4":"aves","5":"cuculiformes","6":"cuculidae","7":"clamator","8":"glandarius","9":"telemetry*","10":"NA","11":"151.50","12":"2.18041263","13":"NA","14":"1.256000e+07","15":"7.09898964","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"common cuckoo","3":"aves","4":"aves","5":"cuculiformes","6":"cuculidae","7":"cuculus","8":"canorus","9":"telemetry*","10":"NA","11":"128.00","12":"2.10720997","13":"NA","14":"3.846000e+07","15":"7.58500928","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"greater roadrunner","3":"aves","4":"aves","5":"cuculiformes","6":"cuculidae","7":"geococcyx","8":"californianus","9":"telemetry","10":"9","11":"300.00","12":"2.47712126","13":"Weight calculated from telemetry backpack (10g = 3% body mass)","14":"5.500000e+05","15":"5.74036269","16":"Kelley SW, Ransom D, Butcher JA, Schulz GG, Surber BW, Punchak WE, Santamaria CA, Hurtado LA. 2011. Home range dynamics, habitat selection, and survival of Greater Roadrunners. Journal of Field Ornithology 82(2), 165-174.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"banded ground-cuckoo","3":"aves","4":"aves","5":"cuculiformes","6":"cuculidae","7":"neopmorphus","8":"radiolosus","9":"telemetry","10":"1","11":"433.00","12":"2.63648790","13":"NA","14":"4.990000e+05","15":"5.69810055","16":"Karubuan J, Carrasco L. 2008. Home Range and Habitat Preferences of the Banded Ground-cuckoo. The Wilson Journal of Ornithology 120(1):205-209.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Cooper's hawk","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"accipiter","8":"cooperii","9":"direct observation","10":"NA","11":"469.00","12":"2.67117284","13":"NA","14":"2.254095e+06","15":"6.35297230","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"88.99","23":"1.9493412","24":"5.270000","25":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"Northern goshawk","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"accipiter","8":"gentilis","9":"direct observation","10":"NA","11":"978.00","12":"2.99033886","13":"NA","14":"4.000000e+07","15":"7.60205999","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"327.00","23":"2.5145478","24":"2.990000","25":"Schoener TW. 1968. Sizes of Feeding Territories among Birds. Ecology 49(1), 123-141."},{"1":"birds","2":"Eurasian sparrowhawk","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"accipiter","8":"nisus","9":"telemetry*","10":"NA","11":"807.00","12":"2.90687353","13":"NA","14":"7.100000e+06","15":"6.85125835","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"sharp-shinned hawk","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"accipiter","8":"striatus","9":"direct observation","10":"NA","11":"141.00","12":"2.14921911","13":"NA","14":"9.955251e+05","15":"5.99805221","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"41.96","23":"1.6228355","24":"3.360000","25":"Schoener TW. 1968. Sizes of Feeding Territories among Birds. Ecology 49(1), 123-141."},{"1":"birds","2":"red-tailed hawk","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"buteo","8":"jamaicensis","9":"direct observation","10":"NA","11":"1126.00","12":"3.05153839","13":"NA","14":"4.249193e+06","15":"6.62830641","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"198.94","23":"2.2987221","24":"5.660000","25":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"red-shouldered hawk","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"buteo","8":"lineatus","9":"direct observation","10":"NA","11":"626.00","12":"2.79657433","13":"NA","14":"6.394023e+05","15":"5.80577419","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"43.99","23":"1.6433540","24":"14.230000","25":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"Swainson's hawk","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"buteo","8":"swainsoni","9":"direct observation","10":"NA","11":"971.00","12":"2.98721923","13":"NA","14":"2.464532e+06","15":"6.39173440","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"344.33","23":"2.5369749","24":"2.820000","25":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"hen harrier","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"circus","8":"cyaneus","9":"direct observation","10":"NA","11":"521.00","12":"2.71683772","13":"NA","14":"2.521188e+06","15":"6.40160515","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"49.01","23":"1.6902847","24":"10.630000","25":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"Montagu's harrier","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"circus","8":"pygargus","9":"telemetry*","10":"NA","11":"315.50","12":"2.49899936","13":"NA","14":"2.009800e+08","15":"8.30315284","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"red kite","3":"aves","4":"aves","5":"falconiformes","6":"accipitridae","7":"milvus","8":"milvus","9":"telemetry*","10":"NA","11":"1033.70","12":"3.01439452","13":"NA","14":"1.962500e+07","15":"7.29280967","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"527.40","23":"2.7221401","24":"1.960000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"caracara","3":"aves","4":"aves","5":"falconiformes","6":"falconidae","7":"caracara","8":"cheriway","9":"telemetry","10":"26","11":"1125.00","12":"3.05115252","13":"NA","14":"2.410000e+08","15":"8.38201704","16":"Dwyer JF, Fraser JD, Morrison JL. 2013. Range sizes and habitat use of non-breeding Crested Caracaras in Florida. Journal of Field Ornithology 84(3), 223-233.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"red-throated caracara","3":"aves","4":"aves","5":"falconiformes","6":"falconidae","7":"daptrius","8":"americanus","9":"direct observation","10":"6","11":"625.00","12":"2.79588002","13":"NA","14":"6.660000e+05","15":"5.82347423","16":"Thiollay J-M. 2008. Foraging, home range use and social behaviour of a group-living rainforest raptor, the Red-throated Caracara Daptrius americanus. Ibis 133(4), 382-393.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"lanner falcon","3":"aves","4":"aves","5":"falconiformes","6":"falconidae","7":"falco","8":"biarmicus","9":"telemetry*","10":"NA","11":"675.00","12":"2.82930377","13":"NA","14":"5.000000e+07","15":"7.69897000","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"prairie falcon","3":"aves","4":"aves","5":"falconiformes","6":"falconidae","7":"falco","8":"mexicanus","9":"direct observation","10":"NA","11":"721.00","12":"2.85793527","13":"NA","14":"2.577843e+07","15":"7.41125654","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"55.00","23":"1.7403627","24":"13.110000","25":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"peregrine falcon","3":"aves","4":"aves","5":"falconiformes","6":"falconidae","7":"falco","8":"peregrinus","9":"telemetry*","10":"NA","11":"781.50","12":"2.89292898","13":"NA","14":"1.538600e+08","15":"8.18712573","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"165.90","23":"2.2198464","24":"4.710000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"American kestrel","3":"aves","4":"aves","5":"falconiformes","6":"falconidae","7":"falco","8":"sparverius","9":"direct observation","10":"NA","11":"112.00","12":"2.04921802","13":"NA","14":"1.416398e+06","15":"6.15118515","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"32.00","23":"1.5051500","24":"3.500000","25":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"European kestrel","3":"aves","4":"aves","5":"falconiformes","6":"falconidae","7":"falco","8":"tinnunculus","9":"NA","10":"NA","11":"200.00","12":"2.30103000","13":"NA","14":"3.000000e+06","15":"6.47712126","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"16.81","23":"1.2255677","24":"11.900000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"hazel grouse","3":"aves","4":"aves","5":"galliformes","6":"phasianidae","7":"bonasa","8":"bonasia","9":"telemetry*","10":"NA","11":"410.00","12":"2.61278386","13":"NA","14":"1.030000e+05","15":"5.01283723","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"sage grouse","3":"aves","4":"aves","5":"galliformes","6":"phasianidae","7":"centrocercus","8":"urophasianus","9":"telemetry","10":"5","11":"1750.00","12":"3.24303805","13":"Beck TDI, Brain CE. 1978. Weights of Colorado Sage Grouse. The Condor 80(2), 241-243.","14":"1.815822e+07","15":"7.25907318","16":"Eng RL, Schladweiler P. 1972. Sage Grouse Winter Movements and Habitat Use in Central Montana. The Journal of Wildlife Management 36(1), 141-146.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"dusky grouse","3":"aves","4":"aves","5":"galliformes","6":"phasianidae","7":"dendragapus","8":"obscurus","9":"direct observation","10":"3","11":"1050.00","12":"3.02118930","13":"NA","14":"1.699677e+04","15":"4.23036640","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"willow ptarmigan","3":"aves","4":"aves","5":"galliformes","6":"phasianidae","7":"lagopus","8":"lagopus","9":"direct observation","10":"NA","11":"620.00","12":"2.79239169","13":"NA","14":"2.589984e+04","15":"4.41329708","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"grey partridge","3":"aves","4":"aves","5":"galliformes","6":"phasianidae","7":"perdix","8":"perdix","9":"telemetry*","10":"NA","11":"381.50","12":"2.58149454","13":"NA","14":"6.200000e+04","15":"4.79239169","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"black grouse","3":"aves","4":"aves","5":"galliformes","6":"phasianidae","7":"tetrao","8":"tetrix","9":"telemetry*","10":"NA","11":"1139.00","12":"3.05652372","13":"NA","14":"1.975000e+06","15":"6.29556710","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"western capercaillie","3":"aves","4":"aves","5":"galliformes","6":"phasianidae","7":"tetrao","8":"urogallus","9":"telemetry*","10":"NA","11":"2936.00","12":"3.46775605","13":"NA","14":"5.500000e+06","15":"6.74036269","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"greater prairie-chicken","3":"aves","4":"aves","5":"galliformes","6":"phasianidae","7":"typmanuchus","8":"cupido pinnatus","9":"telemetry","10":"71","11":"900.00","12":"2.95424251","13":"NA","14":"1.203000e+07","15":"7.08026563","16":"Patten, M. A., C. L. Pruett, and D. H. Wolfe. 2011. Home range size and movements of Greater Prairie-Chickens. Pp. 5162 in B. K. Sandercock, K. Martin, and G. Segelbacher (editors). Ecology, conservation, and management of grouse. Studies in Avian Biology (no. 39), University of California Press, Berkeley, CA.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"brown wood rail","3":"aves","4":"aves","5":"gruiformes","6":"rallidae","7":"aramides","8":"wolfi","9":"telemetry","10":"1","11":"506.00","12":"2.70415052","13":"NA","14":"9.000000e+04","15":"4.95424251","16":"Karubian J, Carrasco L, Mena P, Olivio J, Cabrera D, Castillo F, Duraes R, El Ksabi N. 2011. nesting Biology, Home Range, and Habitat Use of the Brown Wood Rail (Aramides wolfi) in Northwest Ecuador. The Wilson Journal or Ornithology 123(1), 137-141.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"corncrake","3":"aves","4":"aves","5":"gruiformes","6":"rallidae","7":"crex","8":"crex","9":"telemetry","10":"20","11":"165.00","12":"2.21748394","13":"Keiss O, Granats J, Mednis A. 2004. Use of biometrical data to study Corncrake Crex crex population in Latvia. Acta Universitatis Latviensis, Biology 676, 119126.","14":"4.300000e+04","15":"4.63346846","16":"Grabovsky VI. 1993.Spatial Distribution and Spacing Behaviour of Males in a Russion Corncrake (Crex crex) Population. Gibier Faune Sauvage 10, 259-279.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"king rail","3":"aves","4":"aves","5":"gruiformes","6":"rallidae","7":"rallus","8":"elegans","9":"telemetry","10":"18","11":"266.00","12":"2.42488164","13":"NA","14":"4.400000e+04","15":"4.64345268","16":"Pickens BA, King SL. 2013. Microhabitat Selection, Demography and Correlates of Home Range Size for the King Rail (Rallus elegans). Waterbirds 36(3), 319-329.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"melodious warbler","3":"aves","4":"aves","5":"passeriformes","6":"acrocephalisae","7":"hippolais","8":"polyglotta","9":"telemetry*","10":"NA","11":"11.00","12":"1.04139268","13":"NA","14":"3.000000e+04","15":"4.47712126","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"long-tailed tit","3":"aves","4":"aves","5":"passeriformes","6":"aegithalidae","7":"aegithalos","8":"caudatus","9":"telemetry*","10":"NA","11":"8.00","12":"0.90308999","13":"NA","14":"4.200000e+04","15":"4.62324929","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"woodlark","3":"aves","4":"aves","5":"passeriformes","6":"alaudidae","7":"lululla","8":"arborea","9":"direct observation","10":"NA","11":"30.00","12":"1.47712125","13":"NA","14":"8.296043e+04","15":"4.91887099","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"red-throated ant tanager","3":"aves","4":"aves","5":"passeriformes","6":"cardinalidae","7":"habia","8":"fuscicauda","9":"direct observation","10":"NA","11":"37.70","12":"1.57634135","13":"NA","14":"6.070275e+04","15":"4.78320837","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"red-crowned ant tanager","3":"aves","4":"aves","5":"passeriformes","6":"cardinalidae","7":"habia","8":"rubica","9":"direct observation","10":"NA","11":"32.80","12":"1.51587384","13":"NA","14":"4.856220e+04","15":"4.68629835","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Eurasian treecreeper","3":"aves","4":"aves","5":"passeriformes","6":"certhidae","7":"certhia","8":"familiaris","9":"telemetry*","10":"NA","11":"8.77","12":"0.94299959","13":"NA","14":"4.700000e+04","15":"4.67209786","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"streaked fantail warbler","3":"aves","4":"aves","5":"passeriformes","6":"cisticolidae","7":"cisticola","8":"juncidis","9":"telemetry*","10":"NA","11":"9.80","12":"0.99122608","13":"NA","14":"1.440000e+04","15":"4.15836249","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"common raven","3":"aves","4":"aves","5":"passeriformes","6":"corvidae","7":"corvus","8":"corax","9":"telemetry*","10":"NA","11":"1410.00","12":"3.14921911","13":"NA","14":"2.800000e+07","15":"7.44715803","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"spotted nutcracker","3":"aves","4":"aves","5":"passeriformes","6":"corvidae","7":"nucifraga","8":"caryocatactes","9":"direct observation","10":"NA","11":"130.00","12":"2.11394335","13":"NA","14":"1.323320e+05","15":"5.12166488","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Peruvian plantcutter","3":"aves","4":"aves","5":"passeriformes","6":"cotingidae","7":"phytotoma","8":"raimondii","9":"mark-recapture","10":"6","11":"42.00","12":"1.62324929","13":"Sabat P, Ramirez-Otatola , Barcelo G, Salinas J, Bozinovic F. Comparative basal metabolic rate among passerines and the food habit hypothesis. Comparative Biochemistry and Physiology Part A 157, 3540.","14":"3.090000e+04","15":"4.48995848","16":"Nolazco S, Sanchez AM, Roper JJ. 2014. Tamao poblacional, distribucin y mbito de hogar de la Cortarrama Peruana (Phytotoma raimondii) en el Santuario Histrico Bosque de Pmac, Lambayeque, Per. Boletn de la Unin de Ornitlogos del Per (UNOP), 9 (2): 5-19 .","17":"terrestrial","18":"endotherm","19":"flying","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"grasshopper sparrow","3":"aves","4":"aves","5":"passeriformes","6":"emberizidae","7":"ammodramus","8":"savannarum","9":"direct observation","10":"54","11":"16.70","12":"1.22271647","13":"NA","14":"1.092650e+04","15":"4.03848107","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"indigo bunting","3":"aves","4":"aves","5":"passeriformes","6":"emberizidae","7":"passerina","8":"cyanea","9":"direct observation","10":"10","11":"14.30","12":"1.15533604","13":"NA","14":"1.052180e+03","15":"3.02209004","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Abert's towhee","3":"aves","4":"aves","5":"passeriformes","6":"emberizidae","7":"pipilo","8":"aberti","9":"direct observation","10":"NA","11":"46.30","12":"1.66558099","13":"NA","14":"1.618740e+04","15":"4.20917710","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"canyon towhee","3":"aves","4":"aves","5":"passeriformes","6":"emberizidae","7":"pipilo","8":"fuscus","9":"direct observation","10":"34","11":"44.70","12":"1.65030752","13":"NA","14":"2.589984e+04","15":"4.41329708","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"American tree sparrow","3":"aves","4":"aves","5":"passeriformes","6":"emberizidae","7":"spizella","8":"arborea","9":"direct observation","10":"30","11":"18.10","12":"1.25767857","13":"NA","14":"1.699677e+04","15":"4.23036640","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"chipping sparrow","3":"aves","4":"aves","5":"passeriformes","6":"emberizidae","7":"spizella","8":"passerina","9":"direct observation","10":"NA","11":"12.20","12":"1.08635983","13":"NA","14":"3.075606e+04","15":"4.48793070","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"common linnet","3":"aves","4":"aves","5":"passeriformes","6":"fringillidae","7":"carduelis","8":"cannabina","9":"telemetry*","10":"NA","11":"1550.00","12":"3.19033170","13":"NA","14":"3.140000e+06","15":"6.49692965","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"common chaffinch","3":"aves","4":"aves","5":"passeriformes","6":"fringillidae","7":"fringilla","8":"coelebs","9":"telemetry*","10":"NA","11":"23.25","12":"1.36642296","13":"NA","14":"4.200000e+04","15":"4.62324929","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"European serin","3":"aves","4":"aves","5":"passeriformes","6":"fringillidae","7":"serinus","8":"serinus","9":"telemetry*","10":"NA","11":"10.70","12":"1.02938378","13":"NA","14":"1.000000e+04","15":"4.00000000","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"eastern meadowlark","3":"aves","4":"aves","5":"passeriformes","6":"icteridae","7":"sturnella","8":"magna","9":"direct observation","10":"NA","11":"89.00","12":"1.94939001","13":"NA","14":"3.035138e+04","15":"4.48217844","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"western meadowlard","3":"aves","4":"aves","5":"passeriformes","6":"icteridae","7":"sturnella","8":"neglecta","9":"direct observation","10":"NA","11":"89.00","12":"1.94939001","13":"NA","14":"3.035138e+04","15":"4.48217844","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"yellow-breasted chat","3":"aves","4":"aves","5":"passeriformes","6":"incertae","7":"icteria","8":"virens","9":"direct observation","10":"8","11":"27.00","12":"1.43136376","13":"NA","14":"1.335460e+03","15":"3.12563088","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"red-backed shrike","3":"aves","4":"aves","5":"passeriformes","6":"laniidae","7":"laniuis","8":"collurio","9":"direct observation","10":"NA","11":"30.00","12":"1.47712125","13":"NA","14":"1.578272e+04","15":"4.19818185","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"loggerhead shrike","3":"aves","4":"aves","5":"passeriformes","6":"laniidae","7":"laniuis","8":"ludovicianus","9":"direct observation","10":"NA","11":"48.10","12":"1.68214508","13":"NA","14":"7.567610e+04","15":"4.87895874","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"lesser grey shrike","3":"aves","4":"aves","5":"passeriformes","6":"laniidae","7":"lanius","8":"minor","9":"telemetry*","10":"NA","11":"44.22","12":"1.64561874","13":"NA","14":"6.358000e+05","15":"5.80332052","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"woodchat shrike","3":"aves","4":"aves","5":"passeriformes","6":"laniidae","7":"lanius","8":"senator","9":"telemetry*","10":"NA","11":"35.00","12":"1.54406804","13":"NA","14":"8.000000e+04","15":"4.90308999","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"northern mockingbird","3":"aves","4":"aves","5":"passeriformes","6":"mimidae","7":"mimus","8":"polyglottos","9":"direct observation","10":"NA","11":"50.10","12":"1.69983773","13":"NA","14":"4.046850e+03","15":"3.60711711","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"white wagtail","3":"aves","4":"aves","5":"passeriformes","6":"motacillidae","7":"motacilla","8":"alba","9":"telemetry*","10":"NA","11":"21.22","12":"1.32674538","13":"NA","14":"7.850000e+05","15":"5.89486966","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"western yellow wagtail","3":"aves","4":"aves","5":"passeriformes","6":"motacillidae","7":"motacilla","8":"flava","9":"direct observation","10":"NA","11":"17.50","12":"1.24303805","13":"NA","14":"1.011713e+04","15":"4.00505733","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"spotted flycatcher","3":"aves","4":"aves","5":"passeriformes","6":"muscicapidae","7":"muscicapa","8":"striata","9":"telemetry*","10":"NA","11":"12.80","12":"1.10720997","13":"NA","14":"1.000000e+04","15":"4.00000000","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"northern wheatear","3":"aves","4":"aves","5":"passeriformes","6":"muscicapidae","7":"oenanthe","8":"oenanthe","9":"direct observation","10":"NA","11":"25.20","12":"1.40140054","13":"NA","14":"1.537803e+04","15":"4.18690070","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"common redstart","3":"aves","4":"aves","5":"passeriformes","6":"muscicapidae","7":"phoenicurus","8":"phoenicurus","9":"telemetry*","10":"NA","11":"15.21","12":"1.18212921","13":"NA","14":"4.500000e+03","15":"3.65321251","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"whinchat","3":"aves","4":"aves","5":"passeriformes","6":"muscicapidae","7":"saxicola","8":"rubetra","9":"telemetry*","10":"NA","11":"16.48","12":"1.21695721","13":"NA","14":"7.300000e+03","15":"3.86332286","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"black-capped chickadee","3":"aves","4":"aves","5":"passeriformes","6":"paridae","7":"parus","8":"atricapillus","9":"direct observation","10":"NA","11":"11.00","12":"1.04139268","13":"NA","14":"1.456866e+04","15":"4.16341961","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Carolina chickadee","3":"aves","4":"aves","5":"passeriformes","6":"paridae","7":"parus","8":"carolinensis","9":"direct observation","10":"NA","11":"10.10","12":"1.00432137","13":"NA","14":"1.497335e+04","15":"4.17531898","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Oak titmouse","3":"aves","4":"aves","5":"passeriformes","6":"paridae","7":"parus","8":"inornatus","9":"direct observation","10":"NA","11":"16.60","12":"1.22010809","13":"NA","14":"2.428110e+04","15":"4.38526836","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"marsh tit","3":"aves","4":"aves","5":"passeriformes","6":"paridae","7":"parus","8":"palustris","9":"direct observation","10":"NA","11":"11.00","12":"1.04139268","13":"NA","14":"2.266236e+04","15":"4.35530513","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"mourning warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"geothlypis","8":"philadelphia","9":"direct observation","10":"NA","11":"11.30","12":"1.05307844","13":"NA","14":"7.689020e+03","15":"3.88587099","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"common yellowthroat","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"geothylpis","8":"trichas","9":"direct observation","10":"NA","11":"9.80","12":"0.99122608","13":"NA","14":"5.260910e+03","15":"3.72106087","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"prothonotary warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"protonotaria","8":"citrea","9":"direct observation","10":"NA","11":"16.10","12":"1.20682588","13":"NA","14":"1.497335e+04","15":"4.17531898","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"ovenbird","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"seiurus","8":"aurocapillus","9":"direct observation","10":"NA","11":"18.90","12":"1.27646180","13":"NA","14":"1.011713e+04","15":"4.00505733","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Blackburnian warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"setophaga","8":"fusca","9":"direct observation","10":"NA","11":"9.70","12":"0.98677173","13":"NA","14":"5.260910e+03","15":"3.72106087","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Kirtland's warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"setophaga","8":"kirtlandi","9":"direct observation","10":"NA","11":"14.00","12":"1.14612804","13":"NA","14":"3.399354e+04","15":"4.53139639","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"magnolia warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"setophaga","8":"magnolia","9":"direct observation","10":"NA","11":"8.60","12":"0.93449845","13":"NA","14":"7.284330e+03","15":"3.86238961","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"chestnut-sided warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"setophaga","8":"pensylvanica","9":"direct observation","10":"NA","11":"9.60","12":"0.98227123","13":"NA","14":"6.070280e+03","15":"3.78320872","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"American yellow warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"setophaga","8":"petechia","9":"direct observation","10":"8","11":"9.50","12":"0.97772360","13":"NA","14":"1.699680e+03","15":"3.23036716","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"American redstart","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"setophaga","8":"ruticilla","9":"direct observation","10":"NA","11":"9.00","12":"0.95424251","13":"NA","14":"1.942490e+03","15":"3.28835879","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"black-throated green warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"setophaga","8":"virens","9":"direct observation","10":"NA","11":"9.00","12":"0.95424251","13":"NA","14":"6.474960e+03","15":"3.81123709","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Canada warbler","3":"aves","4":"aves","5":"passeriformes","6":"parulidae","7":"wilsonia","8":"canadensis","9":"direct observation","10":"NA","11":"9.30","12":"0.96848295","13":"NA","14":"1.011713e+04","15":"4.00505733","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Western Bonelli's warbler","3":"aves","4":"aves","5":"passeriformes","6":"phylloscopidae","7":"phylloscopus","8":"bonelli","9":"telemetry*","10":"NA","11":"7.50","12":"0.87506126","13":"NA","14":"3.500000e+04","15":"4.54406804","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"tooth-billed bowerbird","3":"aves","4":"aves","5":"passeriformes","6":"ptilonorhynchidae","7":"scenopoeetes","8":"dentirostris","9":"telemetry","10":"4","11":"158.00","12":"2.19865709","13":"Frith CB, Frith DW. 2001. Morphology, Moult and Survival in Three Sympatric Bowerbirds in Australian Wet Tropics Upland Rainforest. Corella 25(3): 41-60.","14":"9.500000e+04","15":"4.97772361","16":"Frith CB, Frith DW. 2001. Morphology, Moult, and Survival in Three Sympatric Bowerirds in Australian Wet Tropics Upland Rainforest. Corella 25(3), 41-60.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"common firecrest","3":"aves","4":"aves","5":"passeriformes","6":"regulidae","7":"regulus","8":"ignicapillus","9":"telemetry*","10":"NA","11":"5.30","12":"0.72427587","13":"NA","14":"1.650000e+04","15":"4.21748394","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"goldcrest","3":"aves","4":"aves","5":"passeriformes","6":"regulidae","7":"regulus","8":"regulus","9":"telemetry*","10":"NA","11":"5.15","12":"0.71180723","13":"NA","14":"1.990000e+04","15":"4.29885308","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"European nuthatch","3":"aves","4":"aves","5":"passeriformes","6":"stittidae","7":"sitta","8":"europaea","9":"telemetry*","10":"NA","11":"18.30","12":"1.26245109","13":"NA","14":"2.100000e+04","15":"4.32221930","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"wrentit","3":"aves","4":"aves","5":"passeriformes","6":"sylvidae","7":"chamaea","8":"fasciata","9":"direct observation","10":"NA","11":"14.80","12":"1.17026172","13":"NA","14":"3.237480e+03","15":"3.51020709","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Marmora's warbler","3":"aves","4":"aves","5":"passeriformes","6":"sylviidae","7":"sylvia","8":"sarda","9":"telemetry*","10":"NA","11":"10.50","12":"1.02118930","13":"NA","14":"3.300000e+03","15":"3.51851394","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Dartford warbler","3":"aves","4":"aves","5":"passeriformes","6":"sylviidae","7":"sylvia","8":"undata","9":"telemetry*","10":"NA","11":"8.80","12":"0.94448267","13":"NA","14":"2.800000e+03","15":"3.44715803","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Berwick's wren","3":"aves","4":"aves","5":"passeriformes","6":"troglodytidae","7":"thryomanes","8":"bewickiI","9":"direct observation","10":"NA","11":"11.00","12":"1.04139268","13":"NA","14":"4.856220e+03","15":"3.68629835","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Carolina wren","3":"aves","4":"aves","5":"passeriformes","6":"troglodytidae","7":"thryothorus","8":"ludovicianus","9":"direct observation","10":"6","11":"18.50","12":"1.26717173","13":"NA","14":"1.214060e+03","15":"3.08424015","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"house wren","3":"aves","4":"aves","5":"passeriformes","6":"troglodytidae","7":"troglodytes","8":"aedon","9":"direct observation","10":"NA","11":"11.20","12":"1.04921802","13":"NA","14":"4.046850e+03","15":"3.60711711","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Eurasian wren","3":"aves","4":"aves","5":"passeriformes","6":"troglodytidae","7":"troglodytes","8":"troglodytes","9":"direct observation","10":"NA","11":"9.50","12":"0.97772360","13":"NA","14":"1.011713e+04","15":"4.00505733","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"eastern bluebird","3":"aves","4":"aves","5":"passeriformes","6":"turdidae","7":"sialia","8":"sialis","9":"direct observation","10":"NA","11":"30.80","12":"1.48855072","13":"NA","14":"1.011713e+04","15":"4.00505733","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"eastern wood pewee","3":"aves","4":"aves","5":"passeriformes","6":"tyrannidae","7":"contopus","8":"virens","9":"direct observation","10":"NA","11":"13.80","12":"1.13987909","13":"NA","14":"4.402973e+04","15":"4.64374602","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"least flycatcher","3":"aves","4":"aves","5":"passeriformes","6":"tyrannidae","7":"empidonax","8":"minimus","9":"direct observation","10":"NA","11":"9.90","12":"0.99563519","13":"NA","14":"1.780610e+03","15":"3.25056881","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"American gray flycatcher","3":"aves","4":"aves","5":"passeriformes","6":"tyrannidae","7":"empidonax","8":"wrightii","9":"direct observation","10":"NA","11":"12.30","12":"1.08990511","13":"NA","14":"1.578272e+04","15":"4.19818185","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"eastern kingbird","3":"aves","4":"aves","5":"passeriformes","6":"tyrannidae","7":"tyrannus","8":"tyrannus","9":"direct observation","10":"NA","11":"40.40","12":"1.60638137","13":"NA","14":"8.376980e+04","15":"4.92308748","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"black-capped vireo","3":"aves","4":"aves","5":"passeriformes","6":"vireonidae","7":"vireo","8":"atricapillus","9":"direct observation","10":"NA","11":"8.50","12":"0.92941893","13":"NA","14":"1.497335e+04","15":"4.17531898","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Bell's vireo","3":"aves","4":"aves","5":"passeriformes","6":"vireonidae","7":"vireo","8":"belli","9":"direct observation","10":"NA","11":"10.00","12":"1.00000000","13":"NA","14":"1.173587e+04","15":"4.06951529","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"white-eyed vireo","3":"aves","4":"aves","5":"passeriformes","6":"vireonidae","7":"vireo","8":"griseus","9":"direct observation","10":"2","11":"11.40","12":"1.05690485","13":"NA","14":"1.335460e+03","15":"3.12563088","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"red-eyed vireo","3":"aves","4":"aves","5":"passeriformes","6":"vireonidae","7":"vireo","8":"olivaceus","9":"direct observation","10":"NA","11":"17.60","12":"1.24551267","13":"NA","14":"7.284330e+03","15":"3.86238961","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"great bittern","3":"aves","4":"aves","5":"pelecaniformes","6":"ardeidae","7":"botaurus","8":"stellaris","9":"telemetry","10":"8","11":"900.00","12":"2.95424251","13":"NA","14":"1.930000e+05","15":"5.28555731","16":"Gilbert G, Tyler G, Smith KW. 2005. Behaviour, home-range size and habitat use by male Great Bittern Botaurus stellaris in Britain. Ibis 147, 533-543.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"least bittern","3":"aves","4":"aves","5":"pelecaniformes","6":"ardeidae","7":"ixobrychus","8":"exilis","9":"telemetry","10":"33","11":"67.00","12":"1.82607480","13":"NA","14":"9.700000e+04","15":"4.98677173","16":"Bogner HE, Baldassarre GA. 2002. Home Range, Movement, and Nesting of Least Bitterns in Western New York. The Wilson Bulletin 114(3), 297-308.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"black woodpecker","3":"aves","4":"aves","5":"piciformes","6":"picidae","7":"dryocopus","8":"martius","9":"telemetry*","10":"NA","11":"277.37","12":"2.44305949","13":"NA","14":"3.500000e+06","15":"6.54406804","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Eurasian wryneck","3":"aves","4":"aves","5":"piciformes","6":"picidae","7":"jynx","8":"torquilla","9":"telemetry*","10":"NA","11":"38.00","12":"1.57978360","13":"NA","14":"1.038100e+06","15":"6.01623919","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"white-backed woodpecker","3":"aves","4":"aves","5":"piciformes","6":"picidae","7":"picoides","8":"leucotos","9":"telemetry*","10":"NA","11":"109.25","12":"2.03842145","13":"NA","14":"5.306600e+06","15":"6.72481635","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"middle spotted woodpeckers","3":"aves","4":"aves","5":"piciformes","6":"picidae","7":"picoides","8":"medius","9":"telemetry*","10":"NA","11":"59.00","12":"1.77085201","13":"NA","14":"1.415000e+05","15":"5.15075644","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"Eurasian three-toed woodpecker","3":"aves","4":"aves","5":"piciformes","6":"picidae","7":"picoides","8":"tridactylus","9":"telemetry*","10":"NA","11":"65.65","12":"1.81723473","13":"NA","14":"3.500000e+05","15":"5.54406804","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"grey-headed woodpecker","3":"aves","4":"aves","5":"piciformes","6":"picidae","7":"picus","8":"canus","9":"telemetry*","10":"NA","11":"124.50","12":"2.09516935","13":"NA","14":"4.521600e+06","15":"6.65529214","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"European green woodpecker","3":"aves","4":"aves","5":"piciformes","6":"picidae","7":"picus","8":"viridis","9":"telemetry*","10":"NA","11":"186.67","12":"2.27107453","13":"NA","14":"1.850000e+06","15":"6.26717173","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"kakapo","3":"aves","4":"aves","5":"psittaciformes","6":"strigopidae","7":"strigops","8":"habroptilus","9":"telemetry","10":"13","11":"1941.00","12":"3.28802554","13":"NA","14":"1.950000e+05","15":"5.29003461","16":"Farrimond M, Clout MN. 2006. Home range size of kakapo (Strigops habroptilus) on Codfish Island. Notornis 53, 150-152.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"greater rhea","3":"aves","4":"aves","5":"rheiformes","6":"rheidae","7":"rhea","8":"americana","9":"telemetry","10":"10","11":"25000.00","12":"4.39794001","13":"Forsyth DM, Wilmhurst JM, Allen RB, Coomes DA. Impacts of introduced deer and extinct moa on New Zealand ecosystems. New Zealand Journal of Ecology 34(1), 48-65.","14":"2.450000e+06","15":"6.38916608","16":"Bellis LM, Martella MB, Navarro JL, Vignolo PE. 2004. Home range of greater and lesser rhea in Argentina: relevance to conservation. Biodiversity and Conservation 13, 2589-2598.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"lesser rhea","3":"aves","4":"aves","5":"rheiformes","6":"rheidae","7":"rhea","8":"pennata","9":"telemetry","10":"7","11":"15000.00","12":"4.17609126","13":"Forsyth DM, Wilmhurst JM, Allen RB, Coomes DA. Impacts of introduced deer and extinct moa on New Zealand ecosystems. New Zealand Journal of Ecology 34(1), 48-65.","14":"2.388000e+07","15":"7.37803432","16":"Bellis LM, Martella MB, Navarro JL, Vignolo PE. 2004. Home range of greater and lesser rhea in Argentina: relevance to conservation. Biodiversity and Conservation 13, 2589-2598.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"boreal owl","3":"aves","4":"aves","5":"strigiformes","6":"strigidae","7":"aegolius","8":"funereus","9":"telemetry*","10":"NA","11":"119.00","12":"2.07554696","13":"NA","14":"3.140000e+06","15":"6.49692965","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"long-eared owl","3":"aves","4":"aves","5":"strigiformes","6":"strigidae","7":"asio","8":"otus","9":"telemetry*","10":"NA","11":"252.00","12":"2.40140054","13":"NA","14":"1.962000e+07","15":"7.29269900","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"32.98","23":"1.5182507","24":"7.640000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"little owl","3":"aves","4":"aves","5":"strigiformes","6":"strigidae","7":"athene","8":"noctua","9":"telemetry*","10":"NA","11":"156.50","12":"2.19451434","13":"NA","14":"5.000000e+05","15":"5.69897000","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"20.66","23":"1.3151303","24":"7.575700","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"Eurasian eagle-owl","3":"aves","4":"aves","5":"strigiformes","6":"strigidae","7":"bubo","8":"bubo","9":"telemetry*","10":"NA","11":"2191.00","12":"3.34064238","13":"NA","14":"1.600000e+07","15":"7.20411998","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"375.00","23":"2.5740313","24":"5.842667","25":"Marchesi L, Sergio F, Pedrini P. 2002. Costs and benefits of breeding in human-altered landscapes for the Eagle Owl Bubo bubo. Ibis 144, E164-E177."},{"1":"birds","2":"great horned owl","3":"aves","4":"aves","5":"strigiformes","6":"strigidae","7":"bubo","8":"virginianus","9":"direct observation","10":"NA","11":"1510.00","12":"3.17897695","13":"NA","14":"2.124596e+06","15":"6.32727641","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"279.11","23":"2.4457754","24":"5.410000","25":"Jaksic FM, Carothers JH. 1985. Ecological, Morphological, and Bioenergetic Correlates of Hunting Mode in Hawks and Owls. Ornis Scandinavica 16(3), 165-172."},{"1":"birds","2":"Eurasian pygmy owl","3":"aves","4":"aves","5":"strigiformes","6":"strigidae","7":"glaucidium","8":"passerinum","9":"telemetry*","10":"NA","11":"61.32","12":"1.78760215","13":"NA","14":"1.250000e+06","15":"6.09691001","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"16.99","23":"1.2301934","24":"3.610000","25":"Slagsvold T, Sonerud GA. 2007. Prey size and ingestion rate in raptors: importance for sex roles and reversed sexual size dimorphism. J. Avian Biol. 38: 650 661."},{"1":"birds","2":"snowy owl","3":"aves","4":"aves","5":"strigiformes","6":"strigidae","7":"nyctea","8":"scandiaca","9":"direct observation","10":"NA","11":"1920.00","12":"3.28330123","13":"NA","14":"4.937157e+06","15":"6.69347694","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"tawny owl","3":"aves","4":"aves","5":"strigiformes","6":"strigidae","7":"strix","8":"aluco","9":"direct observation","10":"55","11":"519.00","12":"2.71516736","13":"NA","14":"3.569322e+05","15":"5.55258569","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"29.61","23":"1.4714384","24":"17.530000","25":"Galeotti P, Morimando F, Violani C. 2009. Feeding ecology of the tawny owls (Strix aluco) in urban habitats (northern Italy). Bolletino di zoologia 58(2), 143-150."},{"1":"birds","2":"barn owl","3":"aves","4":"aves","5":"strigiformes","6":"tytonidae","7":"tyto","8":"alba","9":"telemetry*","10":"NA","11":"285.00","12":"2.45484486","13":"NA","14":"1.500000e+06","15":"6.17609126","16":"Ottaviani, D., S. C. Cairns, M. Oliverio, and L. Boitani. 2006. Body mass as a predictive variable of home-range size among Italian mammals and birds. Journal of Zoology 269:317-330.","17":"terrestrial","18":"endotherm","19":"flying","20":"carnivore","21":"3D","22":"19.39","23":"1.2875778","24":"14.700000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, andConsequences. Oecologia 71(3), 461-472."},{"1":"birds","2":"ostrich","3":"aves","4":"aves","5":"struthioniformes","6":"struthionidae","7":"struthio","8":"camelus","9":"telemetry","10":"1","11":"88250.00","12":"4.94571471","13":"NA","14":"8.430000e+07","15":"7.92582757","16":"Williams JB, Siegfried WR, Milton SJ, Adams NJ, Dean WRT, du Plessis MA, Jackson S. 1993. Field Metabolism, Water Requirements, and Foraging Behavior of Wild Ostriches in the Namib. Ecology 74(2), 390-404.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"birds","2":"ornate tinamou","3":"aves","4":"aves","5":"tinamiformes","6":"tinamidae","7":"nothoprocta","8":"ornata","9":"direct observation","10":"14","11":"622.00","12":"2.79379038","13":"NA","14":"2.428110e+04","15":"4.38526836","16":"Schoener, T. W. 1968. Sizes of feeding territories among birds. Ecology 49:123-141.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"giant golden mole","3":"mammalia","4":"mammalia","5":"afrosoricida","6":"chrysochloridae","7":"chrysospalax","8":"trevelyani","9":"telemetry*","10":"NA","11":"436.52","12":"2.64000415","13":"NA","14":"6.166000e+02","15":"2.79000352","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Grant's golden mole","3":"mammalia","4":"mammalia","5":"afrosoricida","6":"chrysochloridae","7":"eremitalpa","8":"granti","9":"telemetry*","10":"NA","11":"23.00","12":"1.36172784","13":"NA","14":"4.629989e+04","15":"4.66557996","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"pronghorn","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"antilocapridae","7":"antilocapra","8":"americana","9":"telemetry*","10":"NA","11":"46099.90","12":"4.66369998","13":"NA","14":"1.012535e+07","15":"7.00541000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"impala","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"aepyceros","8":"melampus","9":"telemetry*","10":"NA","11":"63503.84","12":"4.80279999","13":"NA","14":"3.224482e+06","15":"6.50846000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"hartebeest","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"alcelaphus","8":"buselaphus","9":"telemetry*","10":"NA","11":"136000.34","12":"5.13353999","13":"NA","14":"2.176858e+06","15":"6.33783000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"barbary sheep","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"ammotragus","8":"lervia","9":"telemetry*","10":"NA","11":"167498.14","12":"5.22400999","13":"NA","14":"9.050030e+06","15":"6.95665000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"American bison","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"bison","8":"bison","9":"telemetry*","10":"NA","11":"629999.20","12":"5.79934000","13":"NA","14":"2.657786e+08","15":"8.42452000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"European bison","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"bison","8":"bonasus","9":"telemetry*","10":"NA","11":"628000.52","12":"5.79796000","13":"NA","14":"1.014051e+07","15":"7.00606000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"goat","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"capra","8":"hircus","9":"telemetry*","10":"NA","11":"50999.98","12":"4.70757001","13":"NA","14":"6.452827e+07","15":"7.80975000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Spanish ibex","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"capra","8":"pyrenaica","9":"telemetry*","10":"NA","11":"69499.23","12":"4.84197999","13":"NA","14":"7.000032e+05","15":"5.84510000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Peter's dukier","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"cephalophus","8":"callipygus","9":"telemetry*","10":"NA","11":"18143.87","12":"4.25872993","13":"NA","14":"4.161693e+05","15":"5.61927000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"bay dikier","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"cephalophus","8":"dorsalis","9":"telemetry*","10":"NA","11":"20411.74","12":"4.30988003","13":"NA","14":"3.570015e+05","15":"5.55267000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"mountain gazelle","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"gazella","8":"gazella","9":"telemetry*","10":"NA","11":"21474.84","12":"4.33192994","13":"NA","14":"1.872837e+06","15":"6.27250000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Gnther's dik-dik","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"madoqua","8":"guentheri","9":"telemetry*","10":"NA","11":"4600.02","12":"3.66275972","13":"NA","14":"2.733317e+04","15":"4.43669000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"mountain goat","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"oreamnos","8":"americanus","9":"telemetry*","10":"NA","11":"629999.20","12":"5.79934000","13":"NA","14":"2.328574e+07","15":"7.36709000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"argali","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"ovis","8":"ammon","9":"telemetry*","10":"NA","11":"113998.73","12":"5.05690001","13":"NA","14":"5.882474e+06","15":"6.76956000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"bighorn sheep","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"ovis","8":"canadensis","9":"telemetry*","10":"NA","11":"90719.36","12":"4.95769998","13":"NA","14":"2.754482e+07","15":"7.44004000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"steenbok","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"raphicerus","8":"campestris","9":"telemetry*","10":"NA","11":"11300.04","12":"4.05307998","13":"NA","14":"6.199976e+05","15":"5.79239000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"chamois","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"rupicapra","8":"rupicapra","9":"telemetry*","10":"NA","11":"30999.88","12":"4.49136001","13":"NA","14":"3.408003e+06","15":"6.53250000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"common eland","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"taurotragus","8":"oryx","9":"telemetry*","10":"NA","11":"635038.42","12":"5.80280000","13":"NA","14":"5.239984e+07","15":"7.71933000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"bushbuck","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"tragelaphus","8":"scriptus","9":"telemetry*","10":"NA","11":"54431.46","12":"4.73584998","13":"NA","14":"3.710906e+04","15":"4.56947995","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"greater kudu","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"bovidae","7":"tragelaphus","8":"strepsiceros","9":"telemetry*","10":"NA","11":"197314.95","12":"5.29515999","13":"NA","14":"1.070040e+09","15":"9.02940000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"moose","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"alces","8":"alces","9":"telemetry*","10":"NA","11":"307227.44","12":"5.48746000","13":"NA","14":"9.382531e+07","15":"7.97232000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"chital","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"axis","8":"axis","9":"telemetry*","10":"NA","11":"62823.19","12":"4.79811998","13":"NA","14":"3.647707e+06","15":"6.56202000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"roe deer","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"capreolus","8":"capreolus","9":"telemetry*","10":"NA","11":"24050.27","12":"4.38111996","13":"NA","14":"6.746368e+05","15":"5.82907000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"red deer","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"cervus","8":"elaphus","9":"telemetry*","10":"NA","11":"234757.78","12":"5.37061999","13":"NA","14":"7.486520e+07","15":"7.87428000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"sika deer","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"cervus","8":"nippon","9":"telemetry*","10":"NA","11":"29450.32","12":"4.46909002","13":"NA","14":"8.514909e+05","15":"5.93018000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"fallow deer","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"dama","8":"dama","9":"telemetry*","10":"NA","11":"71449.63","12":"4.85399998","13":"NA","14":"9.850086e+05","15":"5.99344000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Reeves's muntjac","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"muntiacus","8":"reevesi","9":"telemetry*","10":"NA","11":"13499.88","12":"4.13032991","13":"NA","14":"1.620541e+05","15":"5.20966000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"mule deer","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"odocoileus","8":"hemionus","9":"telemetry*","10":"NA","11":"53864.17","12":"4.73129997","13":"NA","14":"3.507276e+07","15":"7.54497000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"white-tailed deer","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"odocoileus","8":"virginianus","9":"telemetry*","10":"NA","11":"87884.04","12":"4.94391001","13":"NA","14":"2.488342e+06","15":"6.39591000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"pampas deer","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"ozotoceros","8":"bezoarticus","9":"telemetry*","10":"NA","11":"35000.16","12":"4.54407003","13":"NA","14":"7.900053e+06","15":"6.89763000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"pudu","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"pudu","8":"puda","9":"telemetry*","10":"NA","11":"7499.98","12":"3.87506011","13":"NA","14":"1.976651e+05","15":"5.29593000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"reindeer","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"cervidae","7":"rangifer","8":"tarandus","9":"telemetry*","10":"NA","11":"102058.69","12":"5.00884999","13":"NA","14":"3.550831e+09","15":"9.55033000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"giraffe","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"giraffidae","7":"giraffa","8":"camelopardalis","9":"telemetry*","10":"NA","11":"1339985.19","12":"6.12710000","13":"NA","14":"1.365369e+08","15":"8.13525000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"okapi","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"giraffidae","7":"okapia","8":"johnstoni","9":"telemetry*","10":"NA","11":"230001.15","12":"5.36173001","13":"NA","14":"5.899973e+06","15":"6.77085000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"desert warthog","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"suidae","7":"phacochoerus","8":"aethiopicus","9":"telemetry*","10":"NA","11":"80513.74","12":"4.90587000","13":"NA","14":"1.742007e+06","15":"6.24105000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Chacoan peccary","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"tayassuidae","7":"catagonus","8":"wagneri","9":"telemetry*","10":"NA","11":"34700.04","12":"4.54032997","13":"NA","14":"1.097994e+07","15":"7.04060000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"collared peccary","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"tayassuidae","7":"pecari","8":"tajacu","9":"telemetry*","10":"NA","11":"23205.98","12":"4.36559991","13":"NA","14":"2.486223e+06","15":"6.39554000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"white-lipped peccary","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"tayassuidae","7":"tayassu","8":"pecari","9":"telemetry*","10":"NA","11":"20250.23","12":"4.30642996","13":"NA","14":"1.459990e+07","15":"7.16435000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"water chevrotain","3":"mammalia","4":"mammalia","5":"artiodactyla","6":"tragulidae","7":"hyemoschus","8":"aquaticus","9":"telemetry*","10":"NA","11":"10850.01","12":"4.03543014","13":"NA","14":"1.919995e+05","15":"5.28330001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"red panda","3":"mammalia","4":"mammalia","5":"carnivora","6":"ailuridae","7":"ailurus","8":"fulgens","9":"telemetry*","10":"NA","11":"5399.95","12":"3.73238974","13":"NA","14":"1.024991e+06","15":"6.01072000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"arctic fox","3":"mammalia","4":"mammalia","5":"carnivora","6":"canidae","7":"alopex","8":"lagopus","9":"telemetry*","10":"NA","11":"4989.53","12":"3.69805964","13":"NA","14":"2.849902e+07","15":"7.45483000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Ethiopian wolf","3":"mammalia","4":"mammalia","5":"carnivora","6":"canidae","7":"canis","8":"simensis","9":"telemetry*","10":"NA","11":"27749.81","12":"4.44326001","13":"NA","14":"5.393740e+06","15":"6.73189000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"culpeo","3":"mammalia","4":"mammalia","5":"carnivora","6":"canidae","7":"pseudalopex","8":"culpaeus","9":"telemetry*","10":"NA","11":"7370.04","12":"3.86746985","13":"NA","14":"4.928673e+06","15":"6.69273000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"427.68","23":"2.6311189","24":"17.232480","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"South American gray fox","3":"mammalia","4":"mammalia","5":"carnivora","6":"canidae","7":"pseudalopex","8":"griseus","9":"telemetry*","10":"NA","11":"3989.97","12":"3.60096963","13":"NA","14":"2.000000e+06","15":"6.30103000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"kit fox","3":"mammalia","4":"mammalia","5":"carnivora","6":"canidae","7":"vulpes","8":"macroti","9":"telemetry*","10":"NA","11":"4499.97","12":"3.65320962","13":"NA","14":"8.772836e+06","15":"6.94314000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Ruppel's fox","3":"mammalia","4":"mammalia","5":"carnivora","6":"canidae","7":"vulpes","8":"ruppelli","9":"telemetry*","10":"NA","11":"3249.97","12":"3.51187935","13":"NA","14":"3.039975e+07","15":"7.48287000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"swift fox","3":"mammalia","4":"mammalia","5":"carnivora","6":"canidae","7":"vulpes","8":"velox","9":"telemetry*","10":"NA","11":"2089.30","12":"3.32000080","13":"NA","14":"5.495409e+06","15":"6.74000000","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"thick-tailed three-toed jerboa","3":"mammalia","4":"mammalia","5":"carnivora","6":"dipodidae","7":"stylodipus","8":"telum","9":"telemetry*","10":"NA","11":"60.00","12":"1.77815125","13":"NA","14":"4.487040e+03","15":"3.65195994","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"fossa","3":"mammalia","4":"mammalia","5":"carnivora","6":"eupleridae","7":"cryptoprocta","8":"ferox","9":"telemetry*","10":"NA","11":"9549.93","12":"3.98000019","13":"NA","14":"8.912509e+05","15":"5.95000000","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"cheetah","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"acinonyx","8":"jubatus","9":"telemetry*","10":"NA","11":"50000.00","12":"4.69897000","13":"NA","14":"8.150608e+08","15":"8.91119000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"caracal","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"caracal","8":"caracal","9":"telemetry*","10":"NA","11":"12999.90","12":"4.11394001","13":"NA","14":"3.766344e+08","15":"8.57592000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"18055.42","23":"4.2566076","24":"0.720000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"cat","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"felis","8":"catus","9":"telemetry*","10":"NA","11":"3394.53","12":"3.53077965","13":"NA","14":"1.472448e+06","15":"6.16804000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"wildcat","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"felis","8":"sylvestris","9":"telemetry*","10":"NA","11":"4825.03","12":"3.68350002","13":"NA","14":"2.794988e+06","15":"6.44638000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"jaguarundi","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"herpailurus","8":"yagouaroundi","9":"telemetry*","10":"NA","11":"6803.93","12":"3.83275984","13":"NA","14":"6.707953e+07","15":"7.82659000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"ocelot","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"leopardus","8":"pardalis","9":"telemetry*","10":"NA","11":"9989.64","12":"3.99954984","13":"NA","14":"6.849360e+06","15":"6.83565000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"1527.47","23":"3.1839727","24":"6.540000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"margay","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"leopardus","8":"wiedii","9":"telemetry*","10":"NA","11":"3628.77","12":"3.55975944","13":"NA","14":"1.094990e+07","15":"7.03941000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"1109.72","23":"3.0452134","24":"3.270000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"serval","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"leptailurus","8":"serval","9":"telemetry*","10":"NA","11":"11999.97","12":"4.07918016","13":"NA","14":"2.390012e+06","15":"6.37840000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Canada lynx","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"lynx","8":"canadensis","9":"telemetry*","10":"NA","11":"10205.87","12":"4.00885003","13":"NA","14":"8.274848e+07","15":"7.91776000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"10521.52","23":"4.0220785","24":"0.970000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"Eurasian lynx","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"lynx","8":"lynx","9":"telemetry*","10":"NA","11":"29999.91","12":"4.47711995","13":"NA","14":"1.810423e+08","15":"8.25778000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"4065.03","23":"3.6090638","24":"7.380000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"Iberian lynx","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"lynx","8":"pardinus","9":"telemetry*","10":"NA","11":"11049.94","12":"4.04335992","13":"NA","14":"9.499921e+06","15":"6.97772000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"3890.80","23":"3.5900389","24":"2.840000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"bobcat","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"lynx","8":"rufus","9":"telemetry*","10":"NA","11":"11339.92","12":"4.05460999","13":"NA","14":"3.987769e+07","15":"7.60073000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Geoffroy's cat","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"oncifelis","8":"geoffroyi","9":"telemetry*","10":"NA","11":"3589.96","12":"3.55508961","13":"NA","14":"7.126725e+06","15":"6.85289000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"361.53","23":"2.5581443","24":"9.930000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"jaguar","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"panthera","8":"onca","9":"telemetry*","10":"NA","11":"84040.77","12":"4.92449002","13":"NA","14":"8.273514e+07","15":"7.91769000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"leopard","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"panthera","8":"pardus","9":"telemetry*","10":"NA","11":"48374.89","12":"4.68461999","13":"NA","14":"5.049403e+08","15":"8.70324000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"30234.31","23":"4.4805001","24":"1.600000","25":"Radloff FG, Du Toit JT. 2004. Large predators and their prey in a southern African savanna: a predators size determines its prey size range. Journal of Animal Ecology 73, 410-423."},{"1":"mammals","2":"tiger","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"panthera","8":"tigris","9":"telemetry*","10":"NA","11":"112000.51","12":"5.04922000","13":"NA","14":"5.358337e+07","15":"7.72903000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"130233.20","23":"5.1147217","24":"0.860000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"leopard cat","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"prionailurus","8":"bengalensis","9":"telemetry*","10":"NA","11":"2500.00","12":"3.39794001","13":"NA","14":"2.406855e+06","15":"6.38145000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"cougar","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"puma","8":"concolor","9":"telemetry*","10":"NA","11":"89999.48","12":"4.95424000","13":"NA","14":"3.120039e+08","15":"8.49416000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"snow leopard","3":"mammalia","4":"mammalia","5":"carnivora","6":"felidae","7":"uncia","8":"uncia","9":"telemetry*","10":"NA","11":"30500.01","12":"4.48429998","13":"NA","14":"1.735322e+07","15":"7.23938000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"57547.19","23":"4.7600241","24":"0.530000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"marsh mongoose","3":"mammalia","4":"mammalia","5":"carnivora","6":"herpestidae","7":"atilax","8":"paludinosus","9":"telemetry*","10":"NA","11":"3599.98","12":"3.55630009","13":"NA","14":"2.219985e+06","15":"6.34635000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"yellow mongoose","3":"mammalia","4":"mammalia","5":"carnivora","6":"herpestidae","7":"cynictis","8":"penicillata","9":"telemetry*","10":"NA","11":"620.00","12":"2.79239169","13":"NA","14":"5.925705e+05","15":"5.77274000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"common dwarf mongoose","3":"mammalia","4":"mammalia","5":"carnivora","6":"herpestidae","7":"helogale","8":"parvula","9":"\\\\","10":"NA","11":"281.84","12":"2.45000263","13":"NA","14":"2.818383e+05","15":"5.44999999","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Egyptian mongoose","3":"mammalia","4":"mammalia","5":"carnivora","6":"herpestidae","7":"herpestes","8":"inchneumon","9":"telemetry","10":"20","11":"2810.00","12":"3.44870632","13":"NA","14":"3.100000e+06","15":"6.49136169","16":"Palomares F. 1994. Site fidelity and effects of body mass on home-range size of Egyptian mongooses. Canadian Journal of Zoology 72, 465 - 469.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"143.37","23":"2.1564583","24":"19.600000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"mammals","2":"white-tailed mongoose","3":"mammalia","4":"mammalia","5":"carnivora","6":"herpestidae","7":"ichneumia","8":"albicauda","9":"telemetry*","10":"NA","11":"3599.98","12":"3.55630009","13":"NA","14":"3.872666e+05","15":"5.58801000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"aardwolf","3":"mammalia","4":"mammalia","5":"carnivora","6":"hyanidae","7":"proteles","8":"cristatus","9":"telemetry*","10":"NA","11":"10000.00","12":"4.00000000","13":"NA","14":"3.799969e+06","15":"6.57978000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"tayra","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"eira","8":"barbata","9":"telemetry*","10":"NA","11":"4466.22","12":"3.64994011","13":"NA","14":"1.461740e+07","15":"7.16487000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"greater grison","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"galictis","8":"vittata","9":"telemetry*","10":"NA","11":"1750.01","12":"3.24304053","13":"NA","14":"4.150018e+06","15":"6.61805000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"wolverine","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"gulo","8":"gulo","9":"telemetry*","10":"NA","11":"21545.67","12":"4.33336000","13":"NA","14":"3.619178e+08","15":"8.55861000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"American marten","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"martes","8":"americana","9":"telemetry*","10":"NA","11":"883.49","12":"2.94620164","13":"NA","14":"7.066104e+06","15":"6.84918000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"23.15","23":"1.3645510","24":"38.170000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"beech marten","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"martes","8":"foina","9":"telemetry*","10":"NA","11":"1799.99","12":"3.25527009","13":"NA","14":"4.356523e+06","15":"6.63914000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"European pine marten","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"martes","8":"martes","9":"telemetry*","10":"NA","11":"2475.03","12":"3.39358047","13":"NA","14":"9.093478e+06","15":"6.95873000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"95.19","23":"1.9785913","24":"26.000000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"fisher","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"martes","8":"pennanti","9":"telemetry*","10":"NA","11":"3175.19","12":"3.50176972","13":"NA","14":"1.675560e+07","15":"7.22416000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"656.03","23":"2.8169237","24":"4.840000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"stoat","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"mustela","8":"erminea","9":"telemetry*","10":"NA","11":"270.54","12":"2.43223149","13":"NA","14":"1.323244e+06","15":"6.12164000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"47.55","23":"1.6771505","24":"5.690000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"long-tailed weasel","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"mustela","8":"frenata","9":"telemetry*","10":"NA","11":"150.19","12":"2.17664102","13":"NA","14":"1.767502e+05","15":"5.24736001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"14.58","23":"1.1637575","24":"10.300000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"ferret","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"mustela","8":"furo","9":"telemetry*","10":"NA","11":"808.74","12":"2.90780892","13":"NA","14":"8.999948e+05","15":"5.95424000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"European mink","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"mustela","8":"lutreola","9":"telemetry*","10":"NA","11":"562.34","12":"2.74999898","13":"NA","14":"2.089296e+05","15":"5.31999999","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"black-footed ferret","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"mustela","8":"nigripes","9":"telemetry*","10":"NA","11":"912.01","12":"2.95999960","13":"NA","14":"1.000000e+06","15":"6.00000000","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"least weasel","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"mustela","8":"nivalis","9":"telemetry*","10":"NA","11":"88.10","12":"1.94497591","13":"NA","14":"6.488585e+05","15":"5.81215000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"30.59","23":"1.4855795","24":"2.880000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"mammals","2":"Siberian weasel","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"mustela","8":"sibirica","9":"telemetry*","10":"NA","11":"524.81","12":"2.72000210","13":"NA","14":"4.073803e+06","15":"6.61000000","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"American badger","3":"mammalia","4":"mammalia","5":"carnivora","6":"mustelidae","7":"taxidea","8":"taxus","9":"telemetry*","10":"NA","11":"8618.27","12":"3.93542010","13":"NA","14":"3.808816e+06","15":"6.58079000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"kinkajou","3":"mammalia","4":"mammalia","5":"carnivora","6":"procyonidae","7":"potos","8":"flavus","9":"telemetry*","10":"NA","11":"2887.62","12":"3.46054004","13":"NA","14":"2.792480e+05","15":"5.44598999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"giant panda","3":"mammalia","4":"mammalia","5":"carnivora","6":"ursidae","7":"ailuropoda","8":"melanoleuca","9":"telemetry*","10":"NA","11":"87500.39","12":"4.94200999","13":"NA","14":"4.135043e+06","15":"6.61648000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"sloth bear","3":"mammalia","4":"mammalia","5":"carnivora","6":"ursidae","7":"melursus","8":"ursinus","9":"telemetry*","10":"NA","11":"97750.73","12":"4.99012001","13":"NA","14":"1.000000e+07","15":"7.00000000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"common genet","3":"mammalia","4":"mammalia","5":"carnivora","6":"viverridae","7":"genetta","8":"genetta","9":"telemetry*","10":"NA","11":"1750.01","12":"3.24304053","13":"NA","14":"7.809981e+06","15":"6.89265000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"42.00","23":"1.6232493","24":"41.670000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"mammals","2":"cape genet","3":"mammalia","4":"mammalia","5":"carnivora","6":"viverridae","7":"genetta","8":"tigrina","9":"telemetry*","10":"NA","11":"2150.01","12":"3.33244048","13":"NA","14":"5.750029e+04","15":"4.75967004","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"large indian civet","3":"mammalia","4":"mammalia","5":"carnivora","6":"viverridae","7":"viverra","8":"zibetha","9":"telemetry*","10":"NA","11":"8000.00","12":"3.90308999","13":"NA","14":"1.199997e+07","15":"7.07918000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Western quoll","3":"mammalia","4":"mammalia","5":"dasyuromorpha","6":"dasyuridae","7":"dasyurus","8":"geoffroii","9":"telemetry*","10":"NA","11":"1096.48","12":"3.04000071","13":"NA","14":"2.290868e+06","15":"6.36000000","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"tiger quoll","3":"mammalia","4":"mammalia","5":"dasyuromorpha","6":"dasyuridae","7":"dasyurus","8":"maculatus","9":"telemetry","10":"19","11":"2810.00","12":"3.44870632","13":"NA","14":"1.159500e+07","15":"7.06427075","16":"Belcher CA, Darrant JP. 2004. Home range and spatial organization of the marsupial carnivore, Dasyurus maculatus maculatus (Marsupialia: Dasyuridae) in south-eastern Australia. Journal of Zoology (London) 262, 271-280.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"white-footed dunnart","3":"mammalia","4":"mammalia","5":"dasyuromorpha","6":"dasyuridae","7":"sminthopsis","8":"leucopus","9":"telemetry*","10":"NA","11":"23.00","12":"1.36172784","13":"NA","14":"1.141011e+04","15":"4.05728983","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"brown antechinus","3":"mammalia","4":"mammalia","5":"dasyuromorpia","6":"dasyuridae","7":"antechinus","8":"stuartii","9":"telemetry*","10":"NA","11":"27.50","12":"1.43933269","13":"NA","14":"3.500016e+04","15":"4.54407003","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Northern three-striped opossum","3":"mammalia","4":"mammalia","5":"didelphimorphia","6":"didelphidae","7":"monodelphis","8":"americana","9":"telemetry*","10":"NA","11":"19.50","12":"1.29003461","13":"NA","14":"4.677400e+02","15":"2.67000451","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"elegant fat-tailed opossum","3":"mammalia","4":"mammalia","5":"didelphimorphia","6":"didelphidae","7":"thylamys","8":"elegans","9":"telemetry*","10":"NA","11":"29.00","12":"1.46239800","13":"NA","14":"7.079400e+02","15":"2.84999645","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Lumholtz's tree-kangaroo","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"dendrolagus","8":"lumholtzi","9":"telemetry*","10":"NA","11":"6649.97","12":"3.82281969","13":"NA","14":"1.930012e+04","15":"4.28556001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"antilopine kangaroo","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"macropus","8":"antilopinus","9":"telemetry*","10":"NA","11":"27250.22","12":"4.43537001","13":"NA","14":"6.413277e+05","15":"5.80708000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"black-striped wallaby","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"macropus","8":"dorsalis","9":"telemetry*","10":"NA","11":"11249.93","12":"4.05114982","13":"NA","14":"9.149977e+05","15":"5.96142000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Western grey kangaroo","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"macropus","8":"fuliginosus","9":"telemetry*","10":"NA","11":"22124.83","12":"4.34487994","13":"NA","14":"3.236533e+06","15":"6.51008000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Eastern grey kangaroo","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"macropus","8":"giganteus","9":"telemetry*","10":"NA","11":"10375.05","12":"4.01599020","13":"NA","14":"6.133382e+06","15":"6.78770000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"common wallaroo","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"macropus","8":"robustus","9":"telemetry*","10":"NA","11":"21250.05","12":"4.32735996","13":"NA","14":"9.709123e+05","15":"5.98718000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"red-necked wallaby","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"macropus","8":"rufogriseus","9":"telemetry*","10":"NA","11":"16850.00","12":"4.22659990","13":"NA","14":"1.630009e+05","15":"5.21219000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"red kangaroo","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"macropus","8":"rufus","9":"telemetry*","10":"NA","11":"46249.82","12":"4.66511005","13":"NA","14":"7.739983e+06","15":"6.88874000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"allied rock-wallaby","3":"mammalia","4":"mammalia","5":"diprodontia","6":"macropodidae","7":"petrogale","8":"assimilis","9":"telemetry*","10":"NA","11":"4646.01","12":"3.66708014","13":"NA","14":"1.190008e+05","15":"5.07554999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"eastern bettong","3":"mammalia","4":"mammalia","5":"diprodontia","6":"potoroidae","7":"bettongia","8":"gaimardi","9":"telemetry*","10":"NA","11":"1660.01","12":"3.22011070","13":"NA","14":"4.566674e+05","15":"5.65960000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"long-footed potoroo","3":"mammalia","4":"mammalia","5":"diprodontia","6":"potoroidae","7":"potorous","8":"longipes","9":"telemetry*","10":"NA","11":"1899.98","12":"3.27874903","13":"NA","14":"3.732759e+05","15":"5.57203000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"greater glider","3":"mammalia","4":"mammalia","5":"diprodontia","6":"pseudocheiridae","7":"petauroides","8":"volans","9":"telemetry*","10":"NA","11":"1299.99","12":"3.11394001","13":"NA","14":"1.545468e+04","15":"4.18906002","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"bridled nail-tail wallaby","3":"mammalia","4":"mammalia","5":"diprotodontia","6":"macropodidae","7":"onychogalea","8":"fraenata","9":"telemetry*","10":"NA","11":"5000.00","12":"3.69897000","13":"NA","14":"4.250010e+05","15":"5.62839000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"red-legged pademelon","3":"mammalia","4":"mammalia","5":"diprotodontia","6":"macropodidae","7":"thylogale","8":"stigmatica","9":"telemetry*","10":"NA","11":"4649.97","12":"3.66745015","13":"NA","14":"3.566646e+04","15":"4.55226001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"red-necked pademelon","3":"mammalia","4":"mammalia","5":"diprotodontia","6":"macropodidae","7":"thylogale","8":"thetis","9":"telemetry*","10":"NA","11":"5399.95","12":"3.73238974","13":"NA","14":"1.385639e+05","15":"5.14165000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"swamp wallaby","3":"mammalia","4":"mammalia","5":"diprotodontia","6":"macropodidae","7":"wallabia","8":"bicolor","9":"telemetry*","10":"NA","11":"14999.96","12":"4.17609010","13":"NA","14":"1.527601e+05","15":"5.18400999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"common brushtail possum","3":"mammalia","4":"mammalia","5":"diprotodontia","6":"phalangeridae","7":"trichosurus","8":"vulpecula","9":"telemetry*","10":"NA","11":"2875.01","12":"3.45863936","13":"NA","14":"5.013488e+04","15":"4.70013998","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"northern hairy-nosed wombat","3":"mammalia","4":"mammalia","5":"diprotodontia","6":"vombatidae","7":"lasiorhinus","8":"krefftii","9":"telemetry*","10":"NA","11":"25499.99","12":"4.40654001","13":"NA","14":"2.500000e+05","15":"5.39794001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"common wombat","3":"mammalia","4":"mammalia","5":"diprotodontia","6":"vombatidae","7":"vombatus","8":"ursinus","9":"telemetry*","10":"NA","11":"25999.80","12":"4.41497001","13":"NA","14":"1.079991e+05","15":"5.03342002","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"European hedgehog","3":"mammalia","4":"mammalia","5":"erinaceomorpha","6":"erinaceidae","7":"erinaceus","8":"europaeus","9":"telemetry*","10":"NA","11":"800.00","12":"2.90308999","13":"NA","14":"1.942361e+05","15":"5.28832999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"long-eared hedgehog","3":"mammalia","4":"mammalia","5":"erinaceomorpha","6":"erinaceidae","7":"hemiechinus","8":"auritus","9":"telemetry*","10":"NA","11":"296.00","12":"2.47129171","13":"NA","14":"4.037755e+04","15":"4.60613996","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"pygmy rabbit","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"brachylagus","8":"idahoensis","9":"telemetry*","10":"NA","11":"340.20","12":"2.53173431","13":"NA","14":"4.858810e+03","15":"3.68652992","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"snowshoe hare","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"lepus","8":"americanus","9":"telemetry*","10":"NA","11":"1360.79","12":"3.13379111","13":"NA","14":"3.271674e+04","15":"4.51477002","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Arctic hare","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"lepus","8":"arcticus","9":"telemetry*","10":"NA","11":"4050.05","12":"3.60746038","13":"NA","14":"2.900013e+06","15":"6.46240000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"black-tailed jackrabbit","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"lepus","8":"californicus","9":"telemetry*","10":"NA","11":"2267.98","12":"3.35563922","13":"NA","14":"1.592759e+06","15":"6.20215000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"cape hare","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"lepus","8":"capensis","9":"telemetry*","10":"NA","11":"3549.11","12":"3.55011946","13":"NA","14":"5.300050e+05","15":"5.72428000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"European hare","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"lepus","8":"europaeus","9":"telemetry*","10":"NA","11":"5250.01","12":"3.72016013","13":"NA","14":"2.866157e+05","15":"5.45730001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Indian hare","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"lepus","8":"nigricollis","9":"telemetry*","10":"NA","11":"3129.97","12":"3.49554017","13":"NA","14":"1.389985e+04","15":"4.14301011","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"mountain hare","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"lepus","8":"timidus","9":"telemetry*","10":"NA","11":"2825.01","12":"3.45101999","13":"NA","14":"4.532418e+05","15":"5.65633000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"European rabbit","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"oryctolagus","8":"cuniculus","9":"telemetry*","10":"NA","11":"1600.00","12":"3.20411998","13":"NA","14":"6.299992e+04","15":"4.79934000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"swamp rabbit","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"sylvilagus","8":"aquaticus","9":"telemetry*","10":"NA","11":"2150.01","12":"3.33244048","13":"NA","14":"1.829995e+04","15":"4.26244990","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"eastern cottontail","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"sylvilagus","8":"floridanus","9":"telemetry*","10":"NA","11":"1360.79","12":"3.13379111","13":"NA","14":"2.892011e+04","15":"4.46119994","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"marsh rabbit","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"leporidae","7":"sylvilagus","8":"palustris","9":"telemetry*","10":"NA","11":"1349.99","12":"3.13033055","13":"NA","14":"3.960044e+04","15":"4.59770001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"plateau pika","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"ochotonidae","7":"ochotona","8":"curzoniae","9":"telemetry*","10":"NA","11":"155.30","12":"2.19117146","13":"NA","14":"1.376000e+03","15":"3.13861843","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"American pika","3":"mammalia","4":"mammalia","5":"lagomorpha","6":"ochotonidae","7":"ochotona","8":"princeps","9":"telemetry*","10":"NA","11":"146.50","12":"2.16583762","13":"NA","14":"1.866340e+03","15":"3.27099076","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"rufous elephant shrew","3":"mammalia","4":"mammalia","5":"macroscelidea","6":"macroscelididae","7":"elephantulus","8":"rufescens","9":"telemetry*","10":"NA","11":"58.00","12":"1.76342799","13":"NA","14":"3.393130e+03","15":"3.53060050","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"four-toed elephant shrew","3":"mammalia","4":"mammalia","5":"macroscelidea","6":"macroscelididae","7":"petrodromus","8":"tetradactylus","9":"telemetry*","10":"NA","11":"201.00","12":"2.30319606","13":"NA","14":"1.199997e+04","15":"4.07918016","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"golden-rumped elephant shrew","3":"mammalia","4":"mammalia","5":"macroscelidea","6":"macroscelididae","7":"rhynchocyon","8":"chrysopygus","9":"telemetry*","10":"NA","11":"535.20","12":"2.72851611","13":"NA","14":"2.900013e+04","15":"4.46239994","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"east African mole rat","3":"mammalia","4":"mammalia","5":"monotrematae","6":"tachyglossidae","7":"tachyoryctes","8":"splendens","9":"telemetry*","10":"NA","11":"257.00","12":"2.40993312","13":"NA","14":"1.000000e+02","15":"2.00000000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"golden bandicoot","3":"mammalia","4":"mammalia","5":"peramelemorphia","6":"peramelidae","7":"isoodon","8":"auratus","9":"telemetry*","10":"NA","11":"390.50","12":"2.59162104","13":"NA","14":"1.168342e+05","15":"5.06756999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Southern brown bandicoot","3":"mammalia","4":"mammalia","5":"peramelemorphia","6":"peramelidae","7":"isoodon","8":"obesulus","9":"telemetry*","10":"NA","11":"775.00","12":"2.88930170","13":"NA","14":"2.113343e+04","15":"4.32496999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"horse","3":"mammalia","4":"mammalia","5":"perissodactyla","6":"equidae","7":"equus","8":"caballus","9":"telemetry*","10":"NA","11":"427996.29","12":"5.63144000","13":"NA","14":"2.229513e+07","15":"7.34821000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"white rhinoceros","3":"mammalia","4":"mammalia","5":"perissodactyla","6":"rhinocerotidae","7":"ceratotherium","8":"simum","9":"telemetry*","10":"NA","11":"2249986.95","12":"6.35218000","13":"NA","14":"1.591256e+07","15":"7.20174000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"black rhinoceros","3":"mammalia","4":"mammalia","5":"perissodactyla","6":"rhinocerotidae","7":"diceros","8":"bicornis","9":"telemetry*","10":"NA","11":"1050001.69","12":"6.02119000","13":"NA","14":"4.206588e+07","15":"7.62393000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"maned sloth","3":"mammalia","4":"mammalia","5":"pilosa","6":"bradypodidae","7":"bradypus","8":"torquatus","9":"telemetry*","10":"NA","11":"3899.96","12":"3.59106015","13":"NA","14":"4.499974e+04","15":"4.65321001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Asian elephant","3":"mammalia","4":"mammalia","5":"proboscidea","6":"elephantidae","7":"elephas","8":"maximus","9":"telemetry*","10":"NA","11":"4000000.08","12":"6.60206000","13":"NA","14":"1.099993e+08","15":"8.04139000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"African bush elephant","3":"mammalia","4":"mammalia","5":"proboscidea","6":"elephantidae","7":"loxodonta","8":"africana","9":"telemetry*","10":"NA","11":"4000000.08","12":"6.60206000","13":"NA","14":"1.753759e+09","15":"9.24397000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"southern grasshopper mouse","3":"mammalia","4":"mammalia","5":"roden","6":"cricetidae","7":"onychomys","8":"torridus","9":"telemetry*","10":"NA","11":"22.00","12":"1.34242268","13":"NA","14":"2.594538e+04","15":"4.41406004","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"mountain beaver","3":"mammalia","4":"mammalia","5":"rodentia","6":"aplodontiidae","7":"aplodontia","8":"rufa","9":"telemetry*","10":"NA","11":"1133.99","12":"3.05460923","13":"NA","14":"1.037410e+03","15":"3.01595043","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"cape dune mole rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"bathyergidae","7":"bathyergus","8":"suillus","9":"telemetry*","10":"NA","11":"625.00","12":"2.79588002","13":"NA","14":"2.685840e+03","15":"3.42908014","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Damaraland mole rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"bathyergidae","7":"cryptomys","8":"damarensis","9":"telemetry*","10":"NA","11":"148.00","12":"2.17026172","13":"NA","14":"1.299990e+04","15":"4.11394001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"common mole rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"bathyergidae","7":"cryptomys","8":"hottentotus","9":"telemetry*","10":"NA","11":"65.00","12":"1.81291336","13":"NA","14":"1.582010e+03","15":"3.19920922","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"cape mole rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"bathyergidae","7":"georychus","8":"capensis","9":"telemetry*","10":"NA","11":"242.00","12":"2.38381537","13":"NA","14":"2.720000e+02","15":"2.43456890","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"silvery mole rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"bathyergidae","7":"heliophobius","8":"argenteocinereus","9":"telemetry*","10":"NA","11":"155.00","12":"2.19033170","13":"NA","14":"1.720000e+02","15":"2.23552845","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"naked mole rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"bathyergidae","7":"heterocephalus","8":"glaber","9":"telemetry*","10":"NA","11":"39.00","12":"1.59106461","13":"NA","14":"5.400950e+03","15":"3.73247016","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Patagonian mara","3":"mammalia","4":"mammalia","5":"rodentia","6":"caviidae","7":"dolichotus","8":"patagonus","9":"telemetry*","10":"NA","11":"8000.00","12":"3.90308999","13":"NA","14":"9.769897e+05","15":"5.98989000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"plains viscacha","3":"mammalia","4":"mammalia","5":"rodentia","6":"chinchillidae","7":"lagostomus","8":"maximus","9":"telemetry*","10":"NA","11":"5190.03","12":"3.71516987","13":"NA","14":"1.000000e+04","15":"4.00000000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"western red-backed vole","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"clethrionomys","8":"californicus","9":"telemetry*","10":"NA","11":"22.57","12":"1.35353156","13":"NA","14":"1.596980e+03","15":"3.20329948","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"large-headed rice rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"hylaeamys","8":"megacephalus","9":"telemetry*","10":"NA","11":"66.30","12":"1.82151353","13":"NA","14":"7.738910e+03","15":"3.88867980","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Siberian brown lemming","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"lemmus","8":"sibiricus","9":"telemetry*","10":"NA","11":"92.14","12":"1.96444821","13":"NA","14":"8.322040e+03","15":"3.92022980","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"field vole","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"microtus","8":"agrestis","9":"telemetry*","10":"NA","11":"38.00","12":"1.57978360","13":"NA","14":"7.004200e+02","15":"2.84535854","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"California vole","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"microtus","8":"californicus","9":"telemetry*","10":"NA","11":"70.87","12":"1.85046243","13":"NA","14":"8.550000e+01","15":"1.93196612","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"montane vole","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"microtus","8":"montanus","9":"telemetry*","10":"NA","11":"56.70","12":"1.75358306","13":"NA","14":"1.516000e+02","15":"2.18069920","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"prairie vole","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"microtus","8":"ochrogaster","9":"telemetry*","10":"NA","11":"35.44","12":"1.54949371","13":"NA","14":"6.744700e+02","15":"2.82896264","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"meadow vole","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"microtus","8":"pennsylvanicus","9":"telemetry*","10":"NA","11":"49.61","12":"1.69556923","13":"NA","14":"4.117400e+02","15":"2.61462306","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"woodland vole","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"microtus","8":"pinetorum","9":"telemetry*","10":"NA","11":"29.50","12":"1.46982202","13":"NA","14":"3.667000e+01","15":"1.56431091","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"water vole","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"microtus","8":"richardsoni","9":"telemetry*","10":"NA","11":"85.50","12":"1.93196612","13":"NA","14":"4.192000e+02","15":"2.62242127","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"wood lemming","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"myopus","8":"schisticolor","9":"telemetry*","10":"NA","11":"30.00","12":"1.47712125","13":"NA","14":"9.821300e+02","15":"2.99216898","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"bushy-tailed woodrat","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"neotoma","8":"cinerea","9":"telemetry*","10":"NA","11":"395.48","12":"2.59712452","13":"NA","14":"4.761678e+04","15":"4.67776002","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"dusky-footed woodrat","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"neotoma","8":"fuscipes","9":"telemetry*","10":"NA","11":"308.30","12":"2.48897353","13":"NA","14":"2.537000e+03","15":"3.40432047","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"desert woodrat","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"neotoma","8":"lepida","9":"telemetry*","10":"NA","11":"132.29","12":"2.12152702","13":"NA","14":"5.330000e+02","15":"2.72672721","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Southern plains woodrat","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"neotoma","8":"micropus","9":"telemetry*","10":"NA","11":"255.15","12":"2.40679557","13":"NA","14":"5.805500e+02","15":"2.76383963","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"muskrat","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"ondatra","8":"zibethica","9":"telemetry*","10":"NA","11":"1360.79","12":"3.13379111","13":"NA","14":"5.995010e+03","15":"3.77778991","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"cotton mouse","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"peromyscus","8":"gossypinus","9":"telemetry*","10":"NA","11":"27.54","12":"1.43996394","13":"NA","14":"5.011870e+03","15":"3.69999980","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"salt marsh harvest mouse","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"reithrodontomys","8":"raviventris","9":"telemetry*","10":"NA","11":"11.05","12":"1.04336228","13":"NA","14":"2.132900e+03","15":"3.32897049","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"southern bog lemming","3":"mammalia","4":"mammalia","5":"rodentia","6":"cricetidae","7":"synaptomys","8":"cooperi","9":"telemetry*","10":"NA","11":"38.27","12":"1.58285846","13":"NA","14":"4.549990e+03","15":"3.65801044","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"dwarf fat-tailed jerboa","3":"mammalia","4":"mammalia","5":"rodentia","6":"dipodidae","7":"pygeretmus","8":"pumilio","9":"telemetry*","10":"NA","11":"52.50","12":"1.72015930","13":"NA","14":"3.127810e+03","15":"3.49524036","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Cuvier's spiny rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"echimyidae","7":"proechimys","8":"cuvieri","9":"telemetry*","10":"NA","11":"350.00","12":"2.54406804","13":"NA","14":"5.788150e+03","15":"3.76253978","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Tome's spiny rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"echimyidae","7":"proechimys","8":"semispinosus","9":"telemetry*","10":"NA","11":"428.00","12":"2.63144377","13":"NA","14":"1.038510e+03","15":"3.01641068","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Brazilian porcupine","3":"mammalia","4":"mammalia","5":"rodentia","6":"erethizontidae","7":"coendou","8":"prehensilis","9":"telemetry*","10":"NA","11":"4250.01","12":"3.62838995","13":"NA","14":"1.866680e+05","15":"5.27106999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"North American porcupine","3":"mammalia","4":"mammalia","5":"rodentia","6":"erethizontidae","7":"erethizon","8":"dorsatum","9":"telemetry*","10":"NA","11":"8618.27","12":"3.93542010","13":"NA","14":"3.615014e+05","15":"5.55811000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Botta's pocket gopher","3":"mammalia","4":"mammalia","5":"rodentia","6":"geomyidae","7":"thomomys","8":"bottae","9":"telemetry*","10":"NA","11":"160.18","12":"2.20460829","13":"NA","14":"7.114000e+01","15":"1.85211386","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"spectacled dormouse","3":"mammalia","4":"mammalia","5":"rodentia","6":"gliridae","7":"graphiurus","8":"ocularis","9":"telemetry*","10":"NA","11":"68.80","12":"1.83758844","13":"NA","14":"1.093000e+05","15":"5.03862000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"hazel dormouse","3":"mammalia","4":"mammalia","5":"rodentia","6":"gliridae","7":"muscardinus","8":"avellanarius","9":"telemetry*","10":"NA","11":"31.00","12":"1.49136169","13":"NA","14":"4.369990e+03","15":"3.64048044","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"giant kangaroo rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"heteromyidae","7":"dipodomys","8":"ingens","9":"telemetry*","10":"NA","11":"153.56","12":"2.18627810","13":"NA","14":"4.317000e+02","15":"2.63518205","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Merriam's kangaroo rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"heteromyidae","7":"dipodomys","8":"merriami","9":"telemetry*","10":"NA","11":"41.82","12":"1.62138403","13":"NA","14":"7.374800e+03","15":"3.86775025","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Ord's kangaroo rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"heteromyidae","7":"dipodomys","8":"ordii","9":"telemetry*","10":"NA","11":"56.70","12":"1.75358306","13":"NA","14":"1.769987e+04","15":"4.24797008","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"banner-tailed kangaroo rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"heteromyidae","7":"dipodomys","8":"spectabilis","9":"telemetry*","10":"NA","11":"144.58","12":"2.16010822","13":"NA","14":"3.008500e+03","15":"3.47835002","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Stephen's kangaroo rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"heteromyidae","7":"dipodomys","8":"stephensi","9":"telemetry*","10":"NA","11":"76.20","12":"1.88195497","13":"NA","14":"1.480440e+03","15":"3.17039081","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"cape porcupine","3":"mammalia","4":"mammalia","5":"rodentia","6":"hystricidae","7":"hystrix","8":"africaeaustralis","9":"telemetry*","10":"NA","11":"17000.04","12":"4.23044994","13":"NA","14":"1.689779e+06","15":"6.22783000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Indian crested porcupine","3":"mammalia","4":"mammalia","5":"rodentia","6":"hystricidae","7":"hystrix","8":"indica","9":"telemetry*","10":"NA","11":"14999.96","12":"4.17609010","13":"NA","14":"1.411985e+06","15":"6.14983000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"African brush-tailed porcupine","3":"mammalia","4":"mammalia","5":"rodentia","6":"hystridicae","7":"atherurus","8":"africanus","9":"telemetry*","10":"NA","11":"2749.98","12":"3.43932954","13":"NA","14":"1.511785e+05","15":"5.17949000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"yellow-necked mouse","3":"mammalia","4":"mammalia","5":"rodentia","6":"muridae","7":"apodemus","8":"flavicollis","9":"telemetry*","10":"NA","11":"31.60","12":"1.49968708","13":"NA","14":"7.574950e+03","15":"3.87937977","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"wood mouse","3":"mammalia","4":"mammalia","5":"rodentia","6":"muridae","7":"apodemus","8":"sylvaticus","9":"telemetry*","10":"NA","11":"21.20","12":"1.32633586","13":"NA","14":"1.305209e+04","15":"4.11568006","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Indian desert jird","3":"mammalia","4":"mammalia","5":"rodentia","6":"muridae","7":"meriones","8":"hurrianae","9":"telemetry*","10":"NA","11":"88.30","12":"1.94596070","13":"NA","14":"1.327000e+02","15":"2.12287092","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"broad-toothed mouse","3":"mammalia","4":"mammalia","5":"rodentia","6":"muridae","7":"pseudomys","8":"fuscus","9":"telemetry*","10":"NA","11":"122.00","12":"2.08635983","13":"NA","14":"6.300000e+02","15":"2.79934055","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Malagasy giant rat","3":"mammalia","4":"mammalia","5":"rodentia","6":"nesomyidae","7":"hypogeomys","8":"antimena","9":"telemetry*","10":"NA","11":"1185.00","12":"3.07371835","13":"NA","14":"3.500016e+04","15":"4.54407003","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"White-belliednesomys","3":"mammalia","4":"mammalia","5":"rodentia","6":"nesomyidae","7":"nesomys","8":"audeberti","9":"telemetry*","10":"NA","11":"215.60","12":"2.33364876","13":"NA","14":"9.499920e+03","15":"3.97771995","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"island mouse","3":"mammalia","4":"mammalia","5":"rodentia","6":"nesomyidae","7":"nesomys","8":"rufus","9":"telemetry*","10":"NA","11":"165.45","12":"2.21866677","13":"NA","14":"5.000000e+03","15":"3.69897000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"coruro","3":"mammalia","4":"mammalia","5":"rodentia","6":"octodontidae","7":"spalacopus","8":"cyanus","9":"telemetry*","10":"NA","11":"100.86","12":"2.00371896","13":"NA","14":"4.030000e+01","15":"1.60530505","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Siberian chipmunk","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"eutamias","8":"sibiricus","9":"telemetry*","10":"NA","11":"95.80","12":"1.98136551","13":"NA","14":"1.932810e+03","15":"3.28618916","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Northern parl squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"funambulus","8":"pennanti","9":"telemetry*","10":"NA","11":"102.50","12":"2.01072387","13":"NA","14":"1.799990e+03","15":"3.25527009","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Northern flying squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"glaucomys","8":"sabrinus","9":"telemetry*","10":"NA","11":"148.84","12":"2.17271966","13":"NA","14":"7.900053e+04","15":"4.89763000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Southern flying squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"glaucomys","8":"volans","9":"telemetry*","10":"NA","11":"64.50","12":"1.80955972","13":"NA","14":"2.919577e+04","15":"4.46531993","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"yellow-bellied marmot","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"marmota","8":"flaviventris","9":"telemetry*","10":"NA","11":"3401.97","12":"3.53173048","13":"NA","14":"5.696394e+04","15":"4.75560002","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"groundhog","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"marmota","8":"monax","9":"telemetry*","10":"NA","11":"3401.97","12":"3.53173048","13":"NA","14":"1.653903e+05","15":"5.21851001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"red bush squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"paraxerus","8":"palliatus","9":"telemetry*","10":"NA","11":"375.00","12":"2.57403127","13":"NA","14":"2.749983e+04","15":"4.43933001","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Abert's squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"sciurus","8":"aberti","9":"telemetry*","10":"NA","11":"793.80","12":"2.89971109","13":"NA","14":"1.308881e+05","15":"5.11690000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"eastern gray squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"sciurus","8":"carolinensis","9":"telemetry*","10":"NA","11":"532.98","12":"2.72671091","13":"NA","14":"4.900040e+03","15":"3.69019962","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Japanese squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"sciurus","8":"lis","9":"telemetry*","10":"NA","11":"264.30","12":"2.42209716","13":"NA","14":"1.708205e+05","15":"5.23253999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"fox squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"sciurus","8":"niger","9":"telemetry*","10":"NA","11":"952.99","12":"2.97908834","13":"NA","14":"1.282655e+05","15":"5.10810999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"red squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"sciurus","8":"vulgaris","9":"telemetry","10":"NA","11":"327.50","12":"2.51521130","13":"NA","14":"7.490831e+04","15":"4.87453000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"California ground squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"spermophilus","8":"beecheyi","9":"telemetry*","10":"NA","11":"725.75","12":"2.86078704","13":"NA","14":"5.188400e+02","15":"2.71503345","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Columbian ground squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"spermophilus","8":"columbianus","9":"telemetry*","10":"NA","11":"578.34","12":"2.76218323","13":"NA","14":"5.355000e+02","15":"2.72875947","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Franklin's ground squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"spermophilus","8":"franklinii","9":"telemetry*","10":"NA","11":"637.87","12":"2.80473218","13":"NA","14":"1.684380e+05","15":"5.22644000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"arctic ground squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"spermophilus","8":"parryii","9":"telemetry*","10":"NA","11":"794.49","12":"2.90008843","13":"NA","14":"3.010925e+04","15":"4.47869994","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"spotted ground squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"spermophilus","8":"spilosoma","9":"telemetry*","10":"NA","11":"106.00","12":"2.02530586","13":"NA","14":"1.504181e+04","15":"4.17730010","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"thirteen-lined ground squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"spermophilus","8":"tridecemlineatus","9":"telemetry*","10":"NA","11":"198.45","12":"2.29765110","13":"NA","14":"1.559983e+04","15":"4.19311987","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"rock squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"spermophilus","8":"variegatus","9":"telemetry*","10":"NA","11":"748.43","12":"2.87415119","13":"NA","14":"4.250500e+04","15":"4.62844002","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"yellow-pine chipmunk","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"tamias","8":"amoenus","9":"telemetry*","10":"NA","11":"26.93","12":"1.43023635","13":"NA","14":"8.163190e+03","15":"3.91185991","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"least chipmunk","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"tamias","8":"minimus","9":"telemetry*","10":"NA","11":"42.52","12":"1.62859326","13":"NA","14":"1.490219e+04","15":"4.17325010","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Colorado chipmunk","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"tamias","8":"quadrivittatus","9":"telemetry*","10":"NA","11":"42.52","12":"1.62859326","13":"NA","14":"5.325005e+04","15":"4.72632002","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Uinta chipmunk","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"tamias","8":"umbrinus","9":"telemetry*","10":"NA","11":"42.52","12":"1.62859326","13":"NA","14":"3.246011e+04","15":"4.51134999","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"American red squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"tamiasciurus","8":"hudsonicus","9":"telemetry*","10":"NA","11":"223.96","12":"2.35017046","13":"NA","14":"4.753350e+03","15":"3.67699979","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"striped ground squirrel","3":"mammalia","4":"mammalia","5":"rodentia","6":"sciuridae","7":"xerus","8":"erythropus","9":"telemetry*","10":"NA","11":"502.00","12":"2.70070372","13":"NA","14":"1.239995e+05","15":"5.09342000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"greater white-footed shrew","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"soricidae","7":"crocidura","8":"russula","9":"telemetry*","10":"NA","11":"10.00","12":"1.00000000","13":"NA","14":"2.344200e+02","15":"2.36999466","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"arctic shrew","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"soricidae","7":"sorex","8":"arcticus","9":"telemetry*","10":"NA","11":"8.13","12":"0.91009055","13":"NA","14":"4.786300e+03","15":"3.67999992","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"cinereus shrew","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"soricidae","7":"sorex","8":"cinereus","9":"telemetry*","10":"NA","11":"4.17","12":"0.62013606","13":"NA","14":"5.011870e+03","15":"3.69999980","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"crowned shrew","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"soricidae","7":"sorex","8":"coronatus","9":"telemetry*","10":"NA","11":"9.33","12":"0.96988164","13":"NA","14":"3.715400e+02","15":"2.57000558","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"slender shrew","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"soricidae","7":"sorex","8":"gracillimus","9":"telemetry*","10":"NA","11":"4.37","12":"0.64048144","13":"NA","14":"2.754200e+02","15":"2.43999547","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"long-clawed shrew","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"soricidae","7":"sorex","8":"unguiculatus","9":"telemetry*","10":"NA","11":"14.13","12":"1.15014216","13":"NA","14":"7.762000e+01","15":"1.88997364","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"star-nosed mole","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"talpidae","7":"condylura","8":"cristata","9":"telemetry*","10":"NA","11":"47.86","12":"1.67997269","13":"NA","14":"3.630780e+03","15":"3.55999993","16":"Tucker, M. A., T. J. Ord, and T. L. Rogers. 2014. Evolutionary predictors of mammalian home range size: body mass, diet and the environment. Global Ecology and Biogeography 23:1105-1114.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"eastern mole","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"talpidae","7":"scalopus","8":"aquaticus","9":"telemetry*","10":"NA","11":"103.50","12":"2.01494035","13":"NA","14":"7.428650e+03","15":"3.87090990","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"European mole","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"talpidae","7":"talpa","8":"europaea","9":"telemetry*","10":"NA","11":"96.50","12":"1.98452731","13":"NA","14":"3.004350e+03","15":"3.47775053","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"mammals","2":"Roman mole","3":"mammalia","4":"mammalia","5":"soricomorpha","6":"talpidae","7":"talpa","8":"romana","9":"telemetry*","10":"NA","11":"81.42","12":"1.91073110","13":"NA","14":"2.828590e+03","15":"3.45157000","16":"Kelt, D. A., and D. Van Vuren. 1999. Energetic constraints and the relationship between body size and home range area in mammals. Ecology 80:337-340; Kelt, D. A., and D. Van Vuren. In press. Home ranges of recent mammals. Ecology.","17":"terrestrial","18":"endotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"spiny tail lizard","3":"reptilia","4":"reptilia","5":"squamata","6":"agamidae","7":"uromastyx","8":"aegyptius","9":"mark-recapture","10":"20","11":"2500.00","12":"3.39794001","13":"NA","14":"1.176068e+04","15":"4.07043243","16":"Cunningham P. 2000. Daily activity pattern and diet of a population of the Spinytailed Lizard, Uromastyx aegyptius microlepis, during summer in the United Arab Emirates. Zoology in the Middle East 21(1), 37-46.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"western worm snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"carphopis","8":"vermis","9":"radiotag","10":"1","11":"3.46","12":"0.53907610","13":"NA","14":"7.000000e+02","15":"2.84509804","16":"Clark DR. 1970. Age-Specific \"Reproductive Effort\" in the Worm Snake Carphophis vermis (Kennicott). Transactions of the Kansas Academy of Science 73(1), 20-24.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"eastern worm snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"carphopis","8":"viridis","9":"radiotag","10":"10","11":"3.65","12":"0.56229286","13":"NA","14":"2.530000e+02","15":"2.40312052","16":"Barbour RW, Harvey MJ, and Hardin JW. 1969. Home Range, Movements, and Activity of the Eastern Worm Snake, Carphophis Amoenus Amoenus. Ecology 50(3), 470-476.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"racer","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"coluber","8":"constrictor","9":"telemetry","10":"15","11":"556.15","12":"2.74519194","13":"NA","14":"1.510000e+05","15":"5.17897695","16":"Carfagno GLF, Weatherhead PJ. 2008. Energetics and space use: intraspecific and interspecific comparisons of movements and home ranges of two Colubrid snakes. Journal of Animal Ecology 77, 416-424.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"617.94","23":"2.7909463","24":"0.900000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"yellow bellied racer","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"coluber","8":"constrictor flaviventris","9":"telemetry","10":"12","11":"144.50","12":"2.15986785","13":"NA","14":"1.145000e+05","15":"5.05880549","16":"Klug PE, Fill J, With KA. 2011. Spatial ecology of Eastern yellow-bellies racer (Coluber constrictor flaviventris) and great plains rat snake (Pantherophis emoryi) in a contiguous tallgrass-prairie landscape. Herpetologica 67(4), 428-439.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"160.56","23":"2.2056374","24":"0.900000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"ringneck snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"diadophis","8":"punctatus","9":"mark-recapture","10":"NA","11":"9.00","12":"0.95424251","13":"NA","14":"6.476000e+03","15":"3.81130684","16":"Fitch HS. 1975. A Demographic Study of the Ringneck Snake (Diadophis punctatus) in Kansas. University of Kansas Museum of Natural History Miscellaneous Publication No. 62.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"eastern indigo snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"drymarchon","8":"couperi","9":"telemetry","10":"1","11":"450.00","12":"2.65321251","13":"NA","14":"1.853000e+06","15":"6.26787542","16":"Dodd CK, Barichivich WJ. 2007. Movements of large snakes (Drymarchon, Masticophis_ in North-central Florida. Florida Scientist 70(1), 83-94.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"great plains ratsnake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"elaphe","8":"guttata emoryi","9":"telemetry","10":"12","11":"256.70","12":"2.40942587","13":"NA","14":"1.506000e+05","15":"5.17782497","16":"Klug PE, Fill J, With KA. 2011. Spatial ecology of Eastern yellow-bellies racer (Coluber constrictor flaviventris) and great plains rat snake (Pantherophis emoryi) in a contiguous tallgrass-prairie landscape. Herpetologica 67(4), 428-439.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"western ratsnake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"elaphe","8":"obsoleta","9":"telemetry","10":"18","11":"642.80","12":"2.80807587","13":"NA","14":"4.600000e+04","15":"4.66275783","16":"Carfagno GLF, Weatherhead PJ. 2008. Energetics and space use: intraspecific and interspecific comparisons of movements and home ranges of two Colubrid snakes. Journal of Animal Ecology 77, 416-424.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"71.50","23":"1.8543060","24":"8.990000","25":"Weatherhead PJ, Blouin-Demers G, Cavey KM. 2003. Seasonal and Prey-size Dietary Patterns of Black Ratsnakes (Elaphe obsoleta obsoleta). American Midland Naturalist 150, 275-281."},{"1":"snakes","2":"hognose snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"heterodon","8":"platirhinos","9":"telemetry","10":"8","11":"147.32","12":"2.16826171","13":"NA","14":"5.163750e+05","15":"5.71296521","16":"Plummer MV, Mills NE. 2000. Spatial Ecology and Survivorship of Resident and Translocated Hognose Snakes (Heterodonplatirhinos). Journal of Herpetology 34(4), 565-575.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"European whipsnake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"hierophis","8":"viridiflavus","9":"telemetry","10":"32","11":"234.10","12":"2.36940141","13":"NA","14":"1.109000e+05","15":"5.04493155","16":"Herbe L, Moreau C, Blouin-Demers G, Bonnet X, Lourdais O. 2012. Two Syntopic Colubrid Snakes Differ In Their Energetic Requirements and In Their Use of Space. Herpetologica 68(3), 358-364.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"40.78","23":"1.6104472","24":"5.740000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"Eastern kingsnake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"lampropeltis","8":"getula getula","9":"telemetry","10":"12","11":"315.72","12":"2.49930209","13":"NA","14":"4.950000e+05","15":"5.69460520","16":"Linehan JM, Smith LL, Steen DA. 2010. Ecology of the Eastern kingsnake (Lampropeltis getula getula) in a longleaf pine (Pinus palustris) forest in Southwestern Georgia. Herpetological Conservation Biology 5(1), 94-101.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"milksnake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"lampropeltis","8":"triangulum","9":"telemetry","10":"10","11":"165.00","12":"2.21748394","13":"NA","14":"2.404000e+05","15":"5.38093446","16":"Row JR, Blouin-Demers G. 2006. Kernels are not Accurate Estimators of Home-Range Size For Herpetofauna. Copeia 4, 797-802.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"coachwhip","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"masticophis","8":"flagellum","9":"telemetry","10":"4","11":"534.50","12":"2.72794771","13":"NA","14":"4.293000e+05","15":"5.63276089","16":"Dodd CK, Barichivich WJ. 2007. Movements of large snakes (Drymarchon, Masticophis_ in North-central Florida. Florida Scientist 70(1), 83-94.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"grass snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"natrix","8":"natrix","9":"telemetry","10":"4","11":"78.50","12":"1.89486966","13":"NA","14":"9.900000e+04","15":"4.99563520","16":"Madsen T. 1984. Movements, Home Range Size and Habitat Use of Radio-Tracked Grass Snakes (Natrix natrix) in Southern Sweden. Copeia 3, 707-713.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"13.99","23":"1.1458177","24":"5.610000","25":"Gregory PT, Isaac LA. 2004. Food Habits of the Grass Snake in Southeastern England: Is Natrix natrix a Generalist Predator? Journal of Herpetology 38(1): 88-95."},{"1":"snakes","2":"copperbelly watersnake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"nerodia","8":"erythrogaster","9":"telemetry","10":"15","11":"313.24","12":"2.49587722","13":"NA","14":"1.310000e+05","15":"5.11727130","16":"Roe JH, Kingsbury BA, Herbert NR. 2004. Comparative water snake ecology: conservation of mobile animals that use temporally dynamic resources. Biological Conservation 118, 79-89.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"Northern watersnake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"nerodia","8":"sipeodon","9":"telemetry","10":"13","11":"190.55","12":"2.28000895","13":"NA","14":"4.000000e+04","15":"4.60205999","16":"Roe JH, Kingsbury BA, Herbert NR. 2004. Comparative water snake ecology: conservation of mobile animals that use temporally dynamic resources. Biological Conservation 118, 79-89.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"97.72","23":"1.9899835","24":"14.630000","25":"King RB. 2002. Predicted and Observed Maximum Prey Size - Snake Size Allometry. Functional Ecology 16(6), 766-772."},{"1":"snakes","2":"redbacked ratsnake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"oocatochus","8":"rufodorsatus","9":"telemetry","10":"21","11":"62.50","12":"1.79588002","13":"NA","14":"1.540000e+04","15":"4.18752072","16":"Lee H-J, Lee J-H, Park D. 2011. Habitat Use and Movement Patterns of the Viviparous Aquatic Snake, Oocatochus rufodorsatus, from Northeast Asia. Zoological Science 28, 593-599.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"gopher snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"pituophis","8":"catenifer","9":"telemetry","10":"4","11":"375.00","12":"2.57403127","13":"NA","14":"1.740000e+04","15":"4.24054925","16":"Rodriguez-Robles JA. 2003. Home Ranges of Gopher Snakes (Pituophis catenifer, Colubridae) in Central California. Copeia 2, 391-396.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"pine snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"pituophis","8":"melanoleucus","9":"telemetry","10":"12","11":"1004.00","12":"3.00173371","13":"NA","14":"7.010000e+05","15":"5.84571802","16":"Miller GJ, Smith LL, Johnson SA, Franz R. 2012. Home Range Size and Habitat Selection in the Florida Pine Snake (Pituophis melanoleucus mugitus). Copeia 4, 706-713.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"53.75","23":"1.7303785","24":"18.680000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"butlers garter snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"thamnophis","8":"butleri","9":"mark-recapture","10":"1","11":"21.51","12":"1.33264041","13":"NA","14":"6.000000e+02","15":"2.77815125","16":"Freedman B, Catling PM. 1979. Movements of sympatric species of snakes at Amherstburg, Ontatio. Canadian Field-Naturalist 93(4): 399-404.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"Aesculapian snake","3":"reptilia","4":"reptilia","5":"squamata","6":"colubridae","7":"zamenis","8":"longissimus","9":"telemetry","10":"32","11":"249.30","12":"2.39672228","13":"NA","14":"7.740000e+04","15":"4.88874096","16":"Herbe L, Moreau C, Blouin-Demers G, Bonnet X, Lourdais O. 2012. Two Syntopic Colubrid Snakes Differ In Their Energetic Requirements and In Their Use of Space. Herpetologica 68(3), 358-364.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"broadheaded snake","3":"reptilia","4":"reptilia","5":"squamata","6":"elapidae","7":"hoplocephalus","8":"bungaroides","9":"telemetry","10":"24","11":"48.79","12":"1.68833082","13":"NA","14":"2.737900e+04","15":"4.43741758","16":"Webb JK, Shine R. 1997. A Field Study of Spatial Ecology and Movements of a Threatened Snake Species, Hoplocephalus bungaroides. Biological Conservation 82, 203-217.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"tiger snake","3":"reptilia","4":"reptilia","5":"squamata","6":"elapidae","7":"notechis","8":"scutatus","9":"telemetry","10":"5","11":"330.00","12":"2.51851394","13":"NA","14":"3.880000e+04","15":"4.58883173","16":"Butler H, Malone B, Clemann N. 2005. The effects of translocation on the spatial ecology of tiger snakes (Notechis scutatus) in a suburban landscape. Wildlife Research 32, 165-171.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"45.90","23":"1.6618127","24":"7.190000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"blacksnake","3":"reptilia","4":"reptilia","5":"squamata","6":"elapidae","7":"pseudechis","8":"porphyriacus","9":"telemetry","10":"44","11":"479.00","12":"2.68033551","13":"NA","14":"9.600000e+04","15":"4.98227123","16":"Shine R. 1987. Intraspecific Variation in Thermoregulation, Movements and Habitat Use by Australian Blacksnakes, Pseudechis porphyriacus (Elapidae). Journal of Herpetology 21(3), 165-177.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"Galapagos land iguana","3":"reptilia","4":"reptilia","5":"squamata","6":"iguanidae","7":"conolophus","8":"pallidus","9":"mark-recapture","10":"NA","11":"7000.00","12":"3.84509804","13":"NA","14":"8.594300e+03","15":"3.93421051","16":"Christian KA, Tracy CR. 1985. Physical and biotic determinants of space utilization by the Galapagos land iguana (Conolophus pallidus). Oecologia (Berlin) 66, 132-140.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"Bahamian Andros iguana","3":"reptilia","4":"reptilia","5":"squamata","6":"iguanidae","7":"cyclura","8":"cyclura","9":"telemetry","10":"15","11":"3780.00","12":"3.57749180","13":"NA","14":"7.066000e+04","15":"4.84917363","16":"Knapp CR, Owens AK. 2005. Home range and habitat associations of a Bahamian iguana: implications for conservation. Animal Conservation 8(3), 269-278.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"blue iguana","3":"reptilia","4":"reptilia","5":"squamata","6":"iguanidae","7":"cyclura","8":"lewisi","9":"telemetry","10":"5","11":"3200.00","12":"3.50514998","13":"NA","14":"1.280000e+05","15":"5.10720997","16":"Goodman RM, Echternact AC, Burton FJ. 2005. Spatial Ecology of the Endangered Iguana, Cyclura lewisi, in a Disturbed Setting on Grand Cayman. Journal of Herpetology 39(3), 402-408.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"Anegada ground iguana","3":"reptilia","4":"reptilia","5":"squamata","6":"iguanidae","7":"cyclura","8":"pinguis","9":"telemetry","10":"9","11":"4223.33","12":"3.62565502","13":"NA","14":"3.477778e+04","15":"4.54130186","16":"Mitchell NC. 1999. Effect of Introduced Ungulates on Density, Dietary Preferences, Home Range, and PhysicalCondition of the Iguana (Cyclura pinguis) on Anegada. Herpetologica 55(1), 7-17.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"Angel island chuckwalla","3":"reptilia","4":"reptilia","5":"squamata","6":"iguanidae","7":"sauromalus","8":"hispidua","9":"mark-recapture","10":"6","11":"927.00","12":"2.96707973","13":"NA","14":"2.350000e+03","15":"3.37106786","16":"Smits AW. 1985. Behavioral and Dietary Responses to Aridity in the Chuckwalla, Sauromalus hispidus. Journal of Herpetology 19(4), 441-449.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"common chuckwalla","3":"reptilia","4":"reptilia","5":"squamata","6":"iguanidae","7":"sauromalus","8":"obesus","9":"mark-recapture","10":"NA","11":"210.00","12":"2.32221930","13":"NA","14":"5.656000e+03","15":"3.75250940","16":"Johnson SR. 1965. An Ecological Study of the Chuckwalla, Sauromalus obesus Baird, in the Western Mojave Desert. American Midland Naturalist 73(1), 1-29.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"desert iguana","3":"reptilia","4":"reptilia","5":"squamata","6":"lacertilia","7":"dipsosaurus","8":"dorsalis","9":"mark-recapture","10":"51","11":"59.00","12":"1.77085201","13":"NA","14":"5.850000e+02","15":"2.76715587","16":"Alberts AC. 1993. Relationship of Space Use to Population Density in an Herbivorous Lizard. Herpetologica 49(4), 469-479.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"Tenerife lizard","3":"reptilia","4":"reptilia","5":"squamata","6":"lacertilia","7":"gallotia","8":"galloti","9":"mark-recapture","10":"10","11":"40.00","12":"1.60205999","13":"NA","14":"5.750000e+01","15":"1.75966785","16":"Borja MM. 1985. Spatial and Temporal behaviour of Gallotia galloti in a Natural Population of Tenerife. Bonn. Zool. Beitr. 36(3/4), 541-552.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"southwestern carpet python","3":"reptilia","4":"reptilia","5":"squamata","6":"pythonidae","7":"morelia","8":"spilota imbricata","9":"telemetry","10":"33","11":"1226.85","12":"3.08879147","13":"NA","14":"1.716000e+05","15":"5.23451728","16":"Pearson D, Shine R, Williams A. 2005. Spatial ecology of a threatened python (Morelia spilota imbricata) and the effects of anthropogenic habitat change. Austral Ecology 30, 261-274.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"lizards","2":"land mullet","3":"reptilia","4":"reptilia","5":"squamata","6":"scincidae","7":"egernia","8":"major","9":"telemetry","10":"7","11":"638.00","12":"2.80482068","13":"NA","14":"1.464800e+04","15":"4.16577833","16":"Osterwalder K, Klingenbock A, Shine R. 2004. Field studies on a social lizard: Home range and social organization in an Australian skink, Egernia major. Austral Ecology 29, 241-249.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"copperhead","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"agkistrodon","8":"contortrix","9":"telemetry","10":"18","11":"231.12","12":"2.36383753","13":"NA","14":"1.192889e+05","15":"5.07660000","16":"Smith CF, Schuett GW, Early RL, Schwenk K. 2009. The Spatial and Resproductive Ecology of the Copperhead (Agkistrodon contortrix) at the Northeastern Extrme of its Range. Herpetological Monographs 23, 45-73.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"namaqua dwarf adder","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"bitis","8":"schneideri","9":"telemetry","10":"11","11":"16.95","12":"1.22916970","13":"NA","14":"2.000000e+02","15":"2.30103000","16":"Maritz B, Alexander GJ. 2012. Dwarfs on the Move: Spatial Ecology of the World's Smallest Viper, Bitis schneideri. Copeia 1, 115-120.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"fer-de-lance","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"bothrops","8":"asper","9":"telemetry","10":"6","11":"826.23","12":"2.91710096","13":"NA","14":"6.070000e+04","15":"4.78318869","16":"Wasko DK, Sasa M. 2012. Food resources influence spatial ecology, habitat selection, and foraging behavior in an ambush-hunting snake (Viperidae: Bothrops asper): an experimental study. Zoology 115, 179-187.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"165.25","23":"2.2181415","24":"5.000000","25":"Martins M, Marques OAV, Sazima I. 2002. Ecological and phylogenetic correlates of feeding habits in Neotropical pitvipers of the genus Bothrops. In G. W. Schuett, M. E. Douglas, M. Hggren, and H. W. Greene (eds.), Biology of the Vipers. Eagle Mountain Publishing, Eagle Mountain, UT"},{"1":"snakes","2":"western diamondback","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"crotalus","8":"atrox","9":"telemetry","10":"14","11":"319.90","12":"2.50501424","13":"NA","14":"5.420000e+04","15":"4.73399929","16":"Beck DD. 1995. Ecology and Energetics of Three Sympatric Rattlesnake Species in the Sonoran Desert. Journal of Herpetology 29(2), 211-223.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"12.80","23":"1.1072100","24":"25.000000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"sidewinder","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"crotalus","8":"cerastes","9":"telemetry","10":"25","11":"106.70","12":"2.02816442","13":"NA","14":"2.800000e+04","15":"4.44715803","16":"Secor SM. 1994. Ecological Significance of Movements and Activity Range for the Sidewinder, Crotalus cerastes. Copeia 3, 631-645.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"timber rattlesnake","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"crotalus","8":"horridus","9":"telemetry","10":"6","11":"1020.00","12":"3.00860017","13":"NA","14":"2.579600e+06","15":"6.41155237","16":"Bauder JM, Blodgett D, Briggs KV, Jenkins CL. 2011. The Ecology of Timber Rattlesnakes (Crotalus horridus) in Vermont: A First Year Progress Report Submitted to the Vermont Department of Fish and Wildlife. Vermont Department of Fish and Wildlife.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"2684.21","23":"3.4288165","24":"0.380000","25":"Clark RW. 2002. Diet of the timber rattlesnake, Crotalus horridus. Journal of Herpetology 36(3), 494-499."},{"1":"snakes","2":"blacktailed rattlesnake","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"crotalus","8":"molossus","9":"telemetry","10":"3","11":"414.00","12":"2.61700034","13":"NA","14":"3.490000e+04","15":"4.54282543","16":"Beck DD. 1995. Ecology and Energetics of Three Sympatric Rattlesnake Species in the Sonoran Desert. Journal of Herpetology 29(2), 211-223.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"midget faded rattlesnake","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"crotalus","8":"oreganus concolor","9":"telemetry","10":"21","11":"138.70","12":"2.14207646","13":"NA","14":"1.178000e+06","15":"6.07114529","16":"Parker JM, Anderson SH. 2007. Ecology and Behavior of the Midget Faded Rattlesnake (Crotalus Oreganus Concolor) in Wyoming. Journal of Herpetology 1, 41-51.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"51.56","23":"1.7123129","24":"2.690000","25":"Carbone C, Daryl C, Conrad S, Marcus C, Belby J. 2014. Geometric factors influencing the diet of vertebrate predators in marine and terrestrial environments. Ecology Letters 17(12): 15531559."},{"1":"snakes","2":"twin-spotted rattlesnake","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"crotalus","8":"pricei","9":"telemetry","10":"5","11":"67.20","12":"1.82736927","13":"NA","14":"2.290000e+04","15":"4.35983548","16":"Prival DB, Goode MJ, Swann DE, Schwalbe CR, Schroff MJ. 2002. Natural History of a Northern Population of Twin-Spotted Rattlesnakes, Crotalus pricei. Journal of Herpetology 36(4), 598-607.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"Mojave rattlesnake","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"crotalus","8":"scutulatus","9":"telemetry","10":"19","11":"280.30","12":"2.44762310","13":"NA","14":"3.160000e+05","15":"5.49968708","16":"Cardwell MD. 2008. The reproductive ecology of Mohave rattlesnakes. Journal of Zoology 274, 65-76.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"tiger rattlesnake","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"crotalus","8":"tigris","9":"telemetry","10":"3","11":"234.70","12":"2.37051309","13":"NA","14":"3.480000e+04","15":"4.54157924","16":"Beck DD. 1995. Ecology and Energetics of Three Sympatric Rattlesnake Species in the Sonoran Desert. Journal of Herpetology 29(2), 211-223.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"chinese pit viper","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"gloydius","8":"shedaoensis","9":"telemetry","10":"16","11":"196.81","12":"2.29404716","13":"NA","14":"2.613690e+03","15":"3.41725408","16":"Shine R, Sun L-X. 2003. Attack strategy of an ambush predator: which attributes of the prey trigger a pit-vipers strike? Functional Ecology 17, 340-348.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"14.00","23":"1.1461280","24":"14.060000","25":"Shine R, Sun L-X. 2003. Attack strategy of an ambush predator: which attributes of the prey trigger a pit-vipers strike? Functional Ecology 17, 340-348."},{"1":"snakes","2":"Armenian viper","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"montivipera","8":"raddei","9":"telemetry","10":"14","11":"162.14","12":"2.20989017","13":"NA","14":"2.459286e+05","15":"5.39080898","16":"Ettling JA, Aghasyan LA, Aghasyan AL, Parker PG. 2013. Spatial Ecology of Armenian Vipers, Montivipera raddei, in a Human-Modified Landscape. Copeia 1, 64-71.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"snakes","2":"snubnosed viper","3":"reptilia","4":"reptilia","5":"squamata","6":"viperidae","7":"vipera","8":"latastei","9":"telemetry","10":"7","11":"97.40","12":"1.98855896","13":"NA","14":"2.400000e+03","15":"3.38021124","16":"Brito JC. 2003. Seasonal Variation in Movements, Home Range, and Habitat Use by Male Vipera latastei in Northern Portugal. Journal of Herpetology 37(1), 155-160.","17":"terrestrial","18":"ectotherm","19":"crawling","20":"carnivore","21":"2D","22":"8.97","23":"0.9527924","24":"10.860000","25":"Jaksic FM, Delibes M.1987. A Comparative Analysis of Food-Niche Relationships and Trophic Guild Structure in TwoAssemblages of Vertebrate Predators Differing in Species Richness: Causes, Correlations, and Consequences. Oecologia 71(3), 461-472."},{"1":"turtles","2":"Eastern long-necked turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"chelidae","7":"chelodina","8":"longicollis","9":"telemetry","10":"32","11":"691.00","12":"2.83947805","13":"NA","14":"1.420000e+05","15":"5.15228834","16":"Roe JH, Georges A. 2008. Terrestrial activity, movements and spatial ecology of an Australian freshwater turtle, Chelodina longicollis, in a temporally dynamic wetland system. Austral Ecology 33, 1045-1056.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"Dalh's toad-headed tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"chelidae","7":"mesoclemmys","8":"dahli","9":"telemetry","10":"8","11":"595.00","12":"2.77451697","13":"NA","14":"1.155000e+05","15":"5.06258198","16":"Forero-Medina G, Cardenas-Arevalo G, Castano-Mora OV. 2011. Abundance, Home Range, and Movement Patterns of the Endemic Species Dahls Toad-Headed Turtle (Mesoclemmys dahli) in Cesar, Colombia. Chelonian Conservation and Biology 10(2), 228-236.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"common snapping turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"chelydridae","7":"chelydra","8":"serpentina","9":"telemetry","10":"6","11":"4250.00","12":"3.62838893","13":"NA","14":"6.530000e+04","15":"4.81491318","16":"Brown GP, Bishop CA, Brooka RJ. 1994. Growth Rate, Reproductive Output, and Temperature Selection of Snapping Turtles inHabitats of Different Productivities. Journal of Herpetology 28(4), 405-410.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"midland painted turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"emydidae","7":"chrysemys","8":"picta marginata","9":"telemetry","10":"18","11":"354.50","12":"2.54961624","13":"Snow JE. 1984. Feeding Ecology of Juvenile Turtles (Chrysemys) under experimental conditions. PhD Thesis, University of Oklahoma.","14":"3.150000e+04","15":"4.49831055","16":"Rowe JW, Dalgarn SF. 2010. Home Range Size and Daily Movements of Midland Painted turtles (Cyrusemys picta marginata) in Relation to Bosy Size, Sex, and Weather Patterns. Herpetological Conservation and Biology 5(3), 461-473.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"chicken turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"emydidae","7":"deirochelys","8":"reticularia","9":"telemetry","10":"7","11":"588.00","12":"2.76937733","13":"NA","14":"2.380000e+04","15":"4.37657696","16":"Buhlmann KA. 1995. Habitat Use, Terrestrial Movements, and Conservation of the Turtle, Deirochelys reticulariain Virginia. Journal of Herpetology 29(2), 173-181.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"Blanding's turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"emydidae","7":"emydoidea","8":"blandingii","9":"telemetry","10":"10","11":"1294.00","12":"3.11193428","13":"NA","14":"3.300000e+04","15":"4.51851394","16":"Innes RJ, Babbitt KJ, Kanter JJ. 2008. Home Range and Movement of Blanding's Turtles (Emydoidea blandingii) in New Hampshire. Northeastern Naturalist 15(3), 431-444.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"European pond turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"emydidae","7":"emys","8":"orbicularis","9":"telemetry","10":"3","11":"462.00","12":"2.66464198","13":"NA","14":"3.516000e+04","15":"4.54604887","16":"Prez-Santigosa N, Hidalgo-Vila J, Daz-Paniagua C. 2013. Comparing Activity Patterns and Aquatic Home Range Areas Among Exotic and Native Turtles in Southern Spain. Chelonian Conservation and Biology 12(2), 313-319.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"yellow-blotched map turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"emydidae","7":"graptemys","8":"flavimaculata","9":"telemetry","10":"7","11":"1135.00","12":"3.05499586","13":"NA","14":"5.750000e+04","15":"4.75966785","16":"Jones RL. 1996. Home Range and Seasonal Movements of the Turtle Graptemys flavimaculata. Journal of Herpetology 30(3), 376-385.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"ornate box turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"emydidae","7":"terrapene","8":"ornata","9":"telemetry","10":"10","11":"211.00","12":"2.32428246","13":"NA","14":"8.727000e+03","15":"3.94086498","16":"Bernstein NP, Richtsmeier RJ., Black RW, Montgomery BJ. 2007. Home Range and Philopatry in the Ornate Box Turtle, Terrapene ornata ornata, in Iowa. American Midland Naturalist 157, 162-174.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"Spanish pond turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"geoemydidae","7":"mauremys","8":"leprosa","9":"telemetry","10":"6","11":"720.60","12":"2.85769426","13":"NA","14":"3.418000e+04","15":"4.53377206","16":"Prez-Santigosa N, Hidalgo-Vila J, Daz-Paniagua C. 2013. Comparing Activity Patterns and Aquatic Home Range Areas Among Exotic and Native Turtles in Southern Spain. Chelonian Conservation and Biology 12(2), 313-319.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"Eastern mud turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"kinosternidae","7":"kinosternon","8":"rubrubrum","9":"telemetry","10":"10","11":"154.70","12":"2.18949031","13":"NA","14":"1.860000e+05","15":"5.26951294","16":"Cordero GA, Reeves R, Swarth CW. 2012. Home-Range Size of an Eastern Mud Turtle, Kinosternon subrubrum, Population in the Mid-Atlantic Region of the United States. Chelonian Conservation and Biology 11(1), 121-124.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"stripe-necked musk turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"kinosternidae","7":"sternotherus","8":"minor peltifer","9":"telemetry","10":"14","11":"164.00","12":"2.21484385","13":"NA","14":"5.180000e+03","15":"3.71432976","16":"Ennen JR, Scott AF. 2013. Home-Range Size of an Eastern Mud Turtle, Kinosternon subrubrum, Population in the Mid-Atlantic Region of the United States. Chelonian Conservation and Biology 12(1), 199-203.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"stinkpot turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"kinosternidae","7":"sternotherus","8":"odoratus","9":"telemetry","10":"18","11":"190.00","12":"2.27875360","13":"NA","14":"2.800000e+04","15":"4.44715803","16":"Rowe JW, Lehr GC, McCarthy PM, Converse PM. 2009. Activity, Movements and Activity Area Size in Stinkpot Turtles (Sternotherus odoratus) in Southwestern Michigan Lake. American Midland Naturalist 162(2), 266-275.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"red-footed tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"geochelone","8":"carbonaria","9":"telemetry","10":"13","11":"6166.60","12":"3.79004578","13":"NA","14":"1.384160e+06","15":"6.14118629","16":"Montao RR, Cullar E, Fitzgerald LA, Soria F, Mendoza F, Pea R, Dosapey T, Deem SL, Noss AJ. 2013. Ranging patterns by the red-footed tortoise - Geochelone carbonaria (Testudines: Testudinidae) - in the Bolivian Chaco. Ecologa en Bolivia 48(1), 17-30.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"desert tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"gopherus","8":"agassizii","9":"telemetry","10":"29","11":"2000.00","12":"3.30103000","13":"NA","14":"1.685000e+05","15":"5.22659990","16":"Duda JJ, Krzysik AJ, Freilich JE. 1999. Effects of Drought on Desert Tortoise Movement and Activity. The Journal of Wildlife Management 63(4), 1181-1192.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"gopher tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"gopherus","8":"polyphemus","9":"telemetry","10":"22","11":"335.00","12":"2.52504481","13":"NA","14":"5.200000e+03","15":"3.71600334","16":"Diemer JE. 1992. Home Range and Movements of the Tortoise Gopherus polyphemus in Northern Florida. Journal of Herpetology 26(2), 158-165.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"travancore tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"indotestudo","8":"travancorica","9":"telemetry","10":"4","11":"232.00","12":"2.36548799","13":"NA","14":"7.200000e+04","15":"4.85733250","16":"Vasudevan, K., Pandav, B & Deepak, V. 2010.Ecology of two endemic turtles in the Western Ghats. Final Technical Report, Wildlife Institute of India 74p.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"Speke's hinge-backed tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"kinixys","8":"spekii","9":"thread-trailing","10":"7","11":"620.00","12":"2.79239169","13":"NA","14":"1.900000e+04","15":"4.27875360","16":"Hailey A, Coulson IM. 1996. Home Range Use and Seasonal Movements of the Egyptian Tortoise (Testudo kleinmanni) in the Northwestern Negev, Israel. Canadian Journal of Zoology 74, 97-102.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"impressed tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"manouria","8":"impressa","9":"telemetry","10":"10","11":"3000.00","12":"3.47712126","13":"NA","14":"9.640000e+04","15":"4.98407703","16":"Wanchai P, Stanford CB, Thirakhupt K, Thankhikorn S. 2012. Home Range of the Impressed Tortoise, Manouria impressa (Gnther,1882) at Phu Luang Wildlife Sanctuary, Loei Province, Thailand. Tropical Natural History 12(2), 165-174","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"bushmanland tent tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"psammobates","8":"tentorius","9":"telemetry","10":"4","11":"500.00","12":"2.69897000","13":"NA","14":"3.197000e+05","15":"5.50474264","16":"Cunningham PL, Sumang A. 2008. Ecology of the Bushmanland Tent Tortoise (Psammobates tentorius verroxii) in Southern Namibia. Chelonian Conservation and biology 7(1), 119-124.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"leopard tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"stigmochelys","8":"pardalis","9":"telemetry","10":"14","11":"10600.00","12":"4.02530586","13":"NA","14":"2.050000e+06","15":"6.31175386","16":"McMaster MK, Downs CT. 2009. Home Range and Daily Movement of Leopard Tortoises (Stigmochelys pardalis) in the Nama-Karoo, South Africa. Journal of Herpetology 43(4), 561-569.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"spur-thighed tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"testudo","8":"graeca","9":"telemetry","10":"10","11":"400.00","12":"2.60205999","13":"NA","14":"1.710000e+04","15":"4.23299611","16":"Anadon JD, Gimenez A, Perez I, Martinez M, Esteve MA. 2006. Habitat selection by the spur-thighed tortoise Testudo graeca in a multisuccessional landscape: implications for habitat management. Biodiversity and Conservation 15, 2287-2299.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"mediterranean tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"testudo","8":"hermanii","9":"telemetry","10":"24","11":"1522.00","12":"3.18241465","13":"NA","14":"3.790000e+04","15":"4.57863921","16":"Rozylowicz L, Popescue VD. 2013. Habitat selection and movement ecology of eastern Hermanns tortoises in a rural Romanian landscape. European Journal of Wildlife Research 59, 47-55.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"Russian steppe tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"testudo","8":"horsfieldi","9":"telemetry","10":"29","11":"1018.00","12":"3.00774778","13":"NA","14":"5.700000e+05","15":"5.75587486","16":"Lagarde F, Bonnet X, Henen B, Legrand A, Borbin J, Nagy K, Naulleau G. 2003. Sex divergence in space utilisation in the steppe tortoise (Testudo horsfieldi). Canadian Journal of Zoology 81, 380-387.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"tortoises","2":"Egyptian tortoise","3":"reptilia","4":"reptilia","5":"testudines","6":"testudinidae","7":"testudo","8":"kleinmanni","9":"telemetry","10":"9","11":"222.00","12":"2.34635297","13":"NA","14":"1.417000e+05","15":"5.15136985","16":"Geffen E, Mendelssohn H. 1988. Home Range Use and Seasonal Movements of the Egyptian Tortoise (Testudo kleinmanni) in the Northwestern Negev, Israel. Herpetologica 44(3), 354-359.","17":"terrestrial","18":"ectotherm","19":"walking","20":"herbivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"},{"1":"turtles","2":"Eastern spiny softshell turtle","3":"reptilia","4":"reptilia","5":"testudines","6":"trionychidae","7":"apalone","8":"spinifera","9":"telemetry","10":"11","11":"2982.33","12":"3.47455570","13":"NA","14":"1.800000e+06","15":"6.25527250","16":"Galois P, Leveille M, Bouthillier L, Daigle C, Parren S. 2002. Movement Patterns, Activity, and Home Range of the Eastern Spiny Softshell Turtle (Apalone spinifers) in Northern Lake Champlain, Qubec, Vermont. Journal of Herpetology 36(3), 402-411.","17":"terrestrial","18":"ectotherm","19":"walking","20":"carnivore","21":"2D","22":"NA","23":"NA","24":"NA","25":"NA"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 3 {.tabset .tabset-fade .tabset-pills}

Question

Create a scatterplot showing the relationship between log10.mass and log10.hra in hra.

Solution

hra %>%
  ggplot(aes(x = log10.mass, y = log10.hra)) +
  geom_point()

Question 4 {.tabset .tabset-fade .tabset-pills}

Question

Colorize the points in the scatterplot by class_fct.

Solution

hra %>%
  ggplot(aes(x = log10.mass, y = log10.hra, color = class_fct)) +
  geom_point()

Question 5 {.tabset .tabset-fade .tabset-pills}

Question

Display a scatterplot showing only data for birds (class aves) and fit a linear regression to that data using the lm function.

Solution

hra %>%
  filter(class == "aves") %>%
  ggplot(aes(x = log10.mass, y = log10.hra)) +
  geom_point() +
  geom_smooth(method = "lm", se = FALSE) +
  labs(title = "Linear relationship between home range and mass for Aves")

Functional Programming

Question 1 {.tabset .tabset-fade .tabset-pills}

Question

Write a function called summarize_table that takes a title string and a tibble as input and returns a string that says something like, “title has # rows and # columns”. For example, summarize_table('our table', person) should return the string "our table has 5 rows and 3 columns".

Solution

summarize_table <- function(title, tbl) {
  str_c(title, "has", nrow(tbl), "rows and", ncol(tbl), "columns", sep = " ")
}

summarize_table("our table", person)
[1] "our table has 5 rows and 3 columns"

Question 2 {.tabset .tabset-fade .tabset-pills}

Question

Write another function called show_columns that takes a string and a tibble as input and returns a string that says something like, “table has columns name, name, name". For example, show_columns('person', person) should return the string "person has columns person_id, personal_name, family_name".

Solution

show_columns <- function(title, tbl) {
  col_names <- names(tbl) %>%
    str_c(collapse = ", ")

  glue::glue("{title} has columns {col_names}")
}

show_columns("person", person)
person has columns person_id, personal_name, family_name

Question 3 {.tabset .tabset-fade .tabset-pills}

Question

The function rows_from_file returns the first N rows from a table in a CSV file given the file’s name and the number of rows desired. Modify it so that if no value is specified for the number of rows, a default of 3 is used.

rows_from_file <- function(filename, num_rows) {
  readr::read_csv(filename) %>% head(n = num_rows)
}

Solution

rows_from_file <- function(filename, num_rows = NULL) {
  if (is.null(num_rows) == TRUE) {
    readr::read_csv(filename) %>% head(n = 3)
  } else {
    readr::read_csv(filename) %>% head(n = num_rows)
  }
}

# See it in action

rows_from_file("measurements.csv")
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["visit_id"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["visitor"],"name":[2],"type":["chr"],"align":["left"]},{"label":["quantity"],"name":[3],"type":["chr"],"align":["left"]},{"label":["reading"],"name":[4],"type":["dbl"],"align":["right"]}],"data":[{"1":"619","2":"dyer","3":"rad","4":"9.82"},{"1":"619","2":"dyer","3":"sal","4":"0.13"},{"1":"622","2":"dyer","3":"rad","4":"7.80"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>
rows_from_file("measurements.csv", num_rows = 5)
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["visit_id"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["visitor"],"name":[2],"type":["chr"],"align":["left"]},{"label":["quantity"],"name":[3],"type":["chr"],"align":["left"]},{"label":["reading"],"name":[4],"type":["dbl"],"align":["right"]}],"data":[{"1":"619","2":"dyer","3":"rad","4":"9.82"},{"1":"619","2":"dyer","3":"sal","4":"0.13"},{"1":"622","2":"dyer","3":"rad","4":"7.80"},{"1":"622","2":"dyer","3":"sal","4":"0.09"},{"1":"734","2":"pb","3":"rad","4":"8.41"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Question 4 {.tabset .tabset-fade .tabset-pills}

Question

The function long_name checks whether a string is longer than 4 characters. Use this function and a function from purrr to create a logical vector that contains the value TRUE where family names in the tibble person are longer than 4 characters, and FALSE where they are 4 characters or less.

long_name <- function(name) {
  stringr::str_length(name) > 4
}

Solution

long_name <- function(name) {
  stringr::str_length(name) > 4
}

# See it in action

map_lgl(person$family_name, long_name)
[1] FALSE  TRUE FALSE  TRUE  TRUE
person %>% mutate(family_name_len_greater_than_4 = map_lgl(family_name, long_name))
<script data-pagedtable-source type="application/json"> {"columns":[{"label":["person_id"],"name":[1],"type":["chr"],"align":["left"]},{"label":["personal_name"],"name":[2],"type":["chr"],"align":["left"]},{"label":["family_name"],"name":[3],"type":["chr"],"align":["left"]},{"label":["family_name_len_greater_than_4"],"name":[4],"type":["lgl"],"align":["right"]}],"data":[{"1":"dyer","2":"William","3":"Dyer","4":"FALSE"},{"1":"pb","2":"Frank","3":"Pabodie","4":"TRUE"},{"1":"lake","2":"Anderson","3":"Lake","4":"FALSE"},{"1":"roe","2":"Valentina","3":"Roerich","4":"TRUE"},{"1":"danforth","2":"Frank","3":"Danforth","4":"TRUE"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[5],"max":[5]},"pages":{}}} </script>

Wrapping Up

{.tabset .tabset-fade .tabset-pills}

Question

Modify the YAML header of this file so that a table of contents is automatically created each time this document is knit, and fix any errors that are preventing the document from knitting cleanly.

---
title: "Tidyverse Exam Verson 2.0"
output:
html_document:
    theme: flatly
---

Solution

---
title: "Tidyverse Exam Verson 2.0"
output:
  html_document:
    toc: true
    theme: flatly
---


I hope you enjoy R Programming End to End Using Tidyverse Sample Exam. For more updates in R, Python, and Excel for data science, you can consider to follow me on Twitter{target="_blank"} and Linkedin{target="_blank"}. The Github repository for this AIBootcamp 2020{target="_blank"} R programming session can be found here{target="_blank"}.