-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create records for all species of animals #18
Comments
The addition of rabbit is interesting for a couple of reasons. The first is that it's the initial instance of a species that isn't really a species, but multiple species (eight, in this case). I chose to provide just one name ("Rabbit"), but to provide arrays for "species": {
"name": "Rabbit",
"taxonomy": [
"Lepus americanus",
"Lepus americanus virginianus",
"Sylvilagus floridanus mallurus",
"Sylvilagus floridanus hitchensis",
"Sylvilagus floridanus mearnsii",
"Sylvilagus obscurus",
"Sylvilagus palustris palustris",
"Lepus californicus"
],
"bova_id": [
50102,
50103,
50104,
50105,
50106,
50107,
50132,
50129
],
"url": "http://www.dgif.virginia.gov/wildlife/information/?s=050001"
} There needs to be a canonical name for each species, and the The second reason that this is interesting is because it's our first species with a bag limit. I just added "season": {
"method": "firearm",
"range": {
"1": {
"places": {
"Virginia": {
"gnis_id": "TK",
"fips_code": 51
}
},
"season": {
"date": {
"starts": "2014-11-01",
"ends": "2015-02-28"
}
}
}
},
"bag_limit": "Six per day."
} That seems like a reasonable approach. Taking a cue from the fish data, I'm leaving the bag limit data as English, instead of something like |
Per #18. This _only_ includes trapping information, _not_ any other method of hunting.
Add species data, add all “west of the Blue Ridge” counties, and encode another season. Per #18.
Note that the elk record is really just the deer record, with a few minor tweaks. |
In no particular order:
The text was updated successfully, but these errors were encountered: