3 releases

0.1.3 Feb 26, 2024
0.1.2 Feb 25, 2024
0.1.1 Feb 25, 2024
0.1.0 Feb 17, 2024

#813 in Command line utilities

25 downloads per month

MIT/Apache

6.5MB
1K SLoC

Rust 821 SLoC // 0.2% comments Python 224 SLoC // 0.0% comments

Build Status minimum rustc 1.75

Magpie

Magpie is a tool for scraping target bird species from eBird. Any hotspot or geographic region has a "Target Species" feature. This feature all the species found at that location that the user has not already seen in some specified time period and geographic range. The most general form would be:

{NUMBER} of species in {FIRST_LOCATION} that you need for your {SECOND_LOCATION} {TIME} list

The first and second locations can be the same or the second location can be a region that contains the first. TIME is usually life or year (as in life list or year list) but can be month (current month, all years) or day (current date, all years). The list will be all species seen in SECOND_LOCATION.

Two concrete examples are below:

180 species observed in Sogn og Fjordane, NO that you need for your Sogn og Fjordane Life List.

130 species observed in Sogn og Fjordane, NO that you need for your World Life List.

Note that, in this example, when SECOND_LOCATION covers a larger geographic area, the number of target species goes down. In other examples it might stay the same but will never go up.

Magpie works by collecting the data from multiple, indeed many, target bird species pages and saving them in a single CSV file. Once saved these files can be used to perform a variety of analyses. Examples include determining what regions, or even hotspots, have the most species that can be conveniently seen, and at what time of year or when and where a given species is most likely to be found.

Magpie and eBird Geography

Geographic regions in eBird can come in one of three levels. The coarsest, and easiest to explain, is the country level. For the most part, this is identical to the usual meaning of country but it does include some political oddballs like Hong Kong and the Isle of Man.

Most, but not all, countries are divided into smaller geographic regions. In the United States these would be the 50 states, in Canada the provinces and territories, in the UK the four constituent countries (England, Scotland, Wales, and Northern Ireland), and in most other countries their equivalent of states or provinces. Since there is no generally applicable name, in Magpie they are simply called regions.

In some, mostly larger, countries there is a second level of subdivision. In the US (excluding Alaska where they are census regions) and UK these are just counties. In other countries these region have other names. Once again, there is no general name for these boundaries; Magpie uses the generic, if unoriginal, term subregion.

All countries, regions, and subregions are stored in regions.csv. In cases where a region has no subregions, the region is considered its own subregion and the region and sub-region columns have the same data. In the rare cases where countries are not subdivided, region and sub-region are taken to be the whole country.

Since all regions and sub-regions have been provided, it is recommended that users select the subset of locations of interest from this file.

Magpie only scrapes target species for subregions and hotspots. The rationale for this is that target species for coarser regions are not likely to be useful most applications (i.e. chasing birds.)

Inputs

Input Files

Magpie takes as inputs a CSV file consisting of all the locations for which target species should be extracted. This file should either have the structure of regions.csv or hotspots.csv, depending on what type location is being scraped. Ideally, the input should be a subset of onne of those files. Since regions.csv contains all geographic regions and subregions, any collections of subregions will be a subset.

It is not the case that hotspots.csv contains all the hotspots, but it does contain all of the most important ones. It was easy to scrape the top 100 most productive hotspots for each subregion from eBird. In subregions with less than 100 hotspots this list contains every hotspot. In subregions with more than 100, the remaining hotspots will have fewer species and, as a rule, will be clustered around the major hotspots. From this list about 9000 hotspots with malformed web pages were excluded. These hotspots are almost all defunct, private roads that are difficult to access, or stakeouts for rarities that left long ago and thus have little current relevance. Users can add hotspots that are not on this list, but there is no guarantee that magpie will parse the data properly.

Input Parameters.

The combination of List Level and Date Range parameters tells magpie what type of species list to use for getting targets.

List Level Parameter

The command line prompt must contain exactly one of these.

Parameter Definition
--local Target species are those not already seen in the subregion or hotpsot list.
--region Target species are those not already seen in the region containing the subregion or hotspot.
--country Target species are those not already seen in the country containing the subregion or hotspot.
--global Target speciess are those not already seen anywhere.

Date Range Parameter

The command line prompt must contain exactly one of these.

Parameter Definition
--life Target species are those not on the life list
--ytd Target species are those not on the year list.
--current_month Target species are those not seen in the current month for all years.
--date Target species are thosse not seen on the current date for all years.

Time Range Parameter

The command line prompt must contain exactly one of these.

Parameter Definition
--year Target species are taken from those found at the location any time of year.
--month Target species are taken from those found at the location in the given month.
--all A separate list of target species is made for each month.
--range Target species are taken from those found in the given range of months. Start and end months are separated with a dash.

List Type Parmeter

The command line prompt must contain exactly one of these.

Parameter Definition
--hotspot Input is a list of hotspots.
--subregion Input is a list of subregions.

Output Parameter

The command line must include the name of on output file

--output <OUTPUT>

Sample Input command

cargo run --release -- --hotspot hotspot_no.csv --life --year --global --output output_hotspot_no.csv

Output

The output file is a csv consisting of nine or ten columns depending on whether data was collect on the ssubregion or the hotspot level. A sample output is below.

common name scientific name percent checklists sub_region region country hotspot start month end month
Meadow Pipit Anthus pratensis 41.97573 618 Rogaland Rogaland Norway Utsira 1 12
Common Chiffchaff Phylloscopus collybita 37.59061 618 Rogaland Rogaland Norway Utsira 1 12
Eurasian Blackcap Sylvia atricapilla 34.03074 618 Rogaland Rogaland Norway Utsira 1 12
Goldcrest Regulus regulus 31.60841 618 Rogaland Rogaland Norway Utsira 1 12
Redwing Turdus iliacus 29.83495 618 Rogaland Rogaland Norway Utsira 1 12
European Shag Gulosus aristotelis 28.20388 618 Rogaland Rogaland Norway Utsira 1 12
Northern Wheatear Oenanthe oenanthe 26.89806 618 Rogaland Rogaland Norway Utsira 1 12
Rock Pipit Anthus petrosus 23.02751 618 Rogaland Rogaland Norway Utsira 1 12
Yellow-browed Warbler Phylloscopus inornatus 21.07929 618 Rogaland Rogaland Norway Utsira 1 12
Common Snipe Gallinago gallinago 20.27023 618 Rogaland Rogaland Norway Utsira 1 12

Dependencies

~31–48MB
~834K SLoC