From 1696f77f7947890c51d773fbe57f9128046efa5b Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Fri, 12 Sep 2014 14:52:38 -0400 Subject: [PATCH] Add grouse MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per #18. This is the first attempt to represent multiple hunting methods per #44. This suffers from an inability to represent non-municipal boundaries—in this case, the idea of “East of I-95”—per #1. --- hunting/grouse.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 hunting/grouse.json diff --git a/hunting/grouse.json b/hunting/grouse.json new file mode 100644 index 0000000..7771800 --- /dev/null +++ b/hunting/grouse.json @@ -0,0 +1,41 @@ +[ +{ + "state": "Virginia", + "agency": "Department of Game and Inland Fisheries", + "date_effective": "2014-07-01", + "date_expires": "2015-06-30", + "schema": "", + "schema_version": "1.0a", + "documentation": "", + "species": { + "name": "Grouse", + "taxonomy": "Bonasa umbellus", + "bova_id": 40099, + "url": "http://www.dgif.virginia.gov/wildlife/grouse/" + }, + "seasons": { + "season": { + "method": ["modern_firearms", "archery", "crossbows", "muzzleloading_firearms"], + "range": { + "1": { + "places": { + "Virginia": { + "gnis_id": "TK", + "fips_code": 51 + }, + "season": { + "date": { + "starts": "2014-10-25", + "ends": "2015-02-14" + } + } + }, + "exceptions": { + "East of I-95": {} + } + } + } + } + } +} +]