├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── StyleTemplate.json ├── build-gl-style.py ├── generated └── .keep ├── process.sh ├── schemas ├── paths.json ├── result.json └── source.json └── sources └── US ├── AK ├── ak-legislatively-designated-areas.json ├── gmus.json └── specialareas.json ├── AL ├── areas-ada.json ├── areas-special.json ├── forever-wild.json └── wildlife-areas.json ├── AR ├── bear.json ├── cwd.json ├── deer.json ├── elk.json ├── turkey.json └── wildlife-areas.json ├── AZ └── gmus.json ├── CA ├── bighornsheep.json ├── deerhuntunits.json ├── elk.json ├── grouse.json ├── nonlead-ammunition-area.json ├── pronghorn.json ├── public-hunting-areas.json └── quail.json ├── CO ├── bear-blackbear-cougar-deer-elk-moose-mountainlion-muledeer-pronghorn-puma-white-taileddeer.json ├── bighornsheep.json ├── mountaingoat.json ├── public-access-2017.json ├── walk-in-2017.json └── walk-in-2018.json ├── FL └── blackbear.json ├── GA └── wildlife-areas.json ├── HI └── all.json ├── IA ├── deer-zones.json ├── goose-nohunt-zones.json ├── grouse-zone.json ├── public-lands.json ├── refuges.json ├── turkey-zone-fall.json ├── turkey-zone-spring.json ├── walk-in-2017.json ├── walk-in-2018.json ├── waterfowl-zones.json └── wildlife-areas.json ├── ID ├── antelope.json ├── bear.json ├── beaver.json ├── bighorn.json ├── deer.json ├── elk.json ├── gmus.json ├── moose.json ├── mountaingoat.json ├── turkey.json ├── walk-in-2018.json └── waterfowl.json ├── IN └── hunting-areas.json ├── KS ├── fall-walk-in-2017.json ├── spring-walk-in-2017.json └── spring-walk-in-2018.json ├── KY ├── all.json ├── bear-zones.json ├── deer-2017.json ├── deer.json ├── elk-limited-entry-2017.json └── elk-zone.json ├── LA └── wma-2016.json ├── MA └── deer.json ├── ME └── all.json ├── MI ├── comm-forest-2017.json ├── hunter-access-2017.json ├── state-areas-2017.json ├── state-parks-2017.json ├── walk-in-2018.json └── wildlife-units.json ├── MN ├── bear.json ├── bobcat-fisher-marten-zones.json ├── deer.json ├── furbearer-farm-forest-zones.json ├── furbearer-zones.json ├── migratorywaterfowl.json ├── natural-areas.json ├── ruffledgrouse.json ├── turkey.json ├── walk-in-2017.json ├── walk-in-2018.json ├── wildlife-areas.json └── wildlife-refuges.json ├── MO ├── conservation-areas.json ├── dove-2017.json ├── walk-in-2017.json └── walk-in-2018.json ├── MT ├── antelope-2016-2017.json ├── antelope-2018-2019.json ├── big-game-restricted-areas-2016-2017.json ├── bighornsheep-2016-2017.json ├── bighornsheep-2018-2019.json ├── bison-2016-2017.json ├── bison-2018-2019.json ├── blackbear-2016-2017.json ├── blackbear-2018-2019.json ├── block-management-areas-2017.json ├── block-management-areas-2018.json ├── deerelklion-2016-2017.json ├── deerelklion-2018-2019.json ├── moose-2016-2017.json ├── moose-2018-2019.json ├── mountaingoat-2016-2017.json ├── mountaingoat-2018-2019.json ├── turkey-2016-2017.json ├── turkey-2018-2019.json ├── upland-game-bird-enhancement-program-access-areas-2017.json ├── upland-game-bird-enhancement-program-access-areas-2018.json ├── wma.json ├── wolf-2016-2017.json └── wolf-2018-2019.json ├── NC └── all.json ├── ND ├── bighorn.json ├── bobcat.json ├── deer.json ├── elk.json ├── fallturkey.json ├── fisher.json ├── goose.json ├── grouse-ruffed.json ├── grouse-sharptail.json ├── moose.json ├── mtn-lion.json ├── non-resident-waterfowl.json ├── pronghorn.json ├── snadhill-crane.json ├── turkey-spring.json ├── walk-in-2017.json ├── walk-in-2018.json ├── waterfowl.json └── wildlife-areas.json ├── NE ├── antelope-firearm.json ├── antelope-muzzleloader.json ├── bighorn.json ├── darkgoose.json ├── deer-antlerless.json ├── deer-firearm.json ├── deer-river-antlerless.json ├── duck.json ├── elk.json ├── goose.json ├── muledeer.json ├── public-hunting-other.json ├── public-hunting-state.json ├── teal.json ├── walk-in-2017.json └── walk-in-2018.json ├── NH └── all.json ├── NJ ├── deer.json └── wildlife-areas.json ├── NM ├── deer-elk-pronghornantelope-bighornsheep-barbarysheep-turkey-bear-cougar-persianibex-oryx-javelina.json └── walk-in-2018.json ├── NV ├── all.json └── wildlife-areas.json ├── NY ├── easements.json ├── forest.json ├── goose.json ├── parks.json ├── waterfowl.json ├── wildlife-areas.json └── wildlife-units.json ├── OH ├── forests.json ├── parks.json └── wildlife-areas.json ├── OK ├── walk-in-2017.json ├── walk-in-2018.json └── wildlife-areas.json ├── OR ├── all.json └── wildlife-areas-refuges.json ├── PA ├── cwd-untis-2017.json ├── elk-2017.json ├── game-lands-2017.json ├── walk-in-2018.json └── wmu-2017.json ├── RI └── deer.json ├── SC ├── game-zones.json └── public-lands.json ├── SD ├── antelope-bow.json ├── antelope-gun.json ├── bighorn.json ├── deer-bow-muzzleloader.json ├── deer.json ├── elk-blackhills-antlerless.json ├── elk-blackhills.json ├── elk-bow.json ├── elk-csp-antlerless.json ├── elk-csp.json ├── elk-prairie.json ├── game-areas.json ├── mtn-goat.json ├── state-parks.json ├── turkey-fall.json ├── turkey-spring.json ├── walk-in-2017.json ├── walk-in-2018.json ├── waterfowl-duck.json ├── waterfowl-goose.json ├── waterfowl-nonresident.json └── waterfowl-swan.json ├── TN ├── deer.json ├── elk.json ├── tva-all.json └── wma.json ├── TX ├── dove-zones.json ├── walk-in-2017.json ├── walk-in-2018.json └── wildlife-areas.json ├── UT ├── anybullelk-generalseason-2017.json ├── anybullelk-generalseason.json ├── bison-2017.json ├── bison.json ├── blackbear-2017.json ├── blackbear.json ├── cougar-2017.json ├── cougar.json ├── deer-generalseason-2017.json ├── deer-generalseason.json ├── deer-limitedentry-2017.json ├── deer-limitedentry.json ├── desertbighorn-2017.json ├── desertbighorn.json ├── elk-limitedentry-2017.json ├── elk-limitedentry.json ├── moose-2017.json ├── moose.json ├── pronghorn-2017.json ├── pronghorn.json ├── rockymountainbighornsheep-2017.json ├── rockymountainbighornsheep.json ├── rockymountaingoat-2017.json ├── rockymountaingoat.json ├── spikeelk-generalseason-2017.json ├── spikeelk-generalseason.json ├── walk-in-2017.json ├── walk-in-2018.json └── wildlife-areas.json ├── VA ├── forest.json ├── grouse-small-game.json ├── state-parks.json └── wildlife-areas.json ├── VT ├── wildlife-areas.json └── wildlife-units.json ├── WA ├── all-2016-2017.json ├── all-2016.json ├── bighornsheep-2016.json ├── moose-2016.json ├── mountaingoat-2016.json └── wildlife-areas-2017.json ├── WI ├── bear.json ├── deersubunits.json ├── deerunits.json ├── deerzones.json └── turkey.json ├── WV └── wildlifemanagementareas.json └── WY ├── antelope-2016.json ├── antelope-2017.json ├── bighornsheep-2016.json ├── bighornsheep-2017.json ├── bison-2016.json ├── bison-2017.json ├── blackbear-2016.json ├── bobcat-2015.json ├── elk-2016.json ├── elk-2017.json ├── hma-walk-in-2018.json ├── moose-2016.json ├── mountainlion-2015.json ├── mountainlion-2016.json ├── muledeer-2016.json ├── muledeer-2017.json ├── pheasant-2015.json ├── rockymountaingoat-2016.json ├── sagegrouse-2016.json ├── turkey-2016.json ├── walk-in-2018.json ├── whitetaileddeer-2016.json └── whitetaileddeer-2017.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Generated Files 2 | generated/* 3 | 4 | # Byte-compiled / optimized / DLL files 5 | __pycache__/ 6 | *.py[cod] 7 | 8 | # C extensions 9 | *.so 10 | 11 | # Distribution / packaging 12 | .Python 13 | env/ 14 | build/ 15 | develop-eggs/ 16 | dist/ 17 | downloads/ 18 | eggs/ 19 | .eggs/ 20 | lib/ 21 | lib64/ 22 | parts/ 23 | sdist/ 24 | var/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .coverage 43 | .coverage.* 44 | .cache 45 | nosetests.xml 46 | coverage.xml 47 | *,cover 48 | 49 | # Translations 50 | *.mo 51 | *.pot 52 | 53 | # Django stuff: 54 | *.log 55 | 56 | # Sphinx documentation 57 | docs/_build/ 58 | 59 | # PyBuilder 60 | target/ 61 | 62 | # NodeJS 63 | # Logs 64 | logs 65 | *.log 66 | npm-debug.log* 67 | 68 | # Runtime data 69 | pids 70 | *.pid 71 | *.seed 72 | 73 | # Directory for instrumented libs generated by jscoverage/JSCover 74 | lib-cov 75 | 76 | # Coverage directory used by tools like istanbul 77 | coverage 78 | 79 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 80 | .grunt 81 | 82 | # node-waf configuration 83 | .lock-wscript 84 | 85 | # Compiled binary addons (http://nodejs.org/api/addons.html) 86 | build/Release 87 | 88 | # Dependency directory 89 | # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git 90 | node_modules 91 | 92 | # Optional npm cache directory 93 | .npm 94 | 95 | # Optional REPL history 96 | .node_repl_history 97 | 98 | 99 | # OSX 100 | .DS_Store 101 | .AppleDouble 102 | .LSOverride 103 | 104 | # Icon must end with two \r 105 | Icon 106 | 107 | 108 | # Thumbnails 109 | ._* 110 | 111 | # Files that might appear in the root of a volume 112 | .DocumentRevisions-V100 113 | .fseventsd 114 | .Spotlight-V100 115 | .TemporaryItems 116 | .Trashes 117 | .VolumeIcon.icns 118 | 119 | # Directories potentially created on remote AFP share 120 | .AppleDB 121 | .AppleDesktop 122 | Network Trash Folder 123 | Temporary Items 124 | .apdisk 125 | cache 126 | localconfig.js 127 | *.mbtiles 128 | styles 129 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Processing"] 2 | path = Processing 3 | url = https://github.com/OpenBounds/Processing.git 4 | branch = master 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3 | - "2.7" 4 | install: "pip install -r Processing/requirements-validate.txt" 5 | script: python Processing/validate_paths.py schemas/paths.json sources && python Processing/validate.py schemas/source.json sources 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribute to the Code or Data 2 | You can contribute to the code if you are a developer, and you can help with the data if you have background with GIS tools and systems. 3 | 4 | ## Improve the Code 5 | Send pull requests to improve the data processing tools. Please fork the repo and do a PR, and you'll get prompt feedback or a merge. 6 | 7 | ## Improve the Data 8 | 9 | ### Use a Form to Submit New Data 10 | 11 | The easiest way to improve the data is to use the form at [openbounds.github.io/OpenHuntingData/](https://openbounds.github.io/OpenHuntingData/). 12 | 13 | When you fill out the form, it will validate the data, generate a JSON metadata file, and create a pull request to add that metadata file to the repo. 14 | 15 | ### Improve the Data Manually 16 | 17 | You can also manually create JSON metadata files, and manually submit a pull request with the file. The file should be similar to what you see under the [sources/US directory](https://github.com/OpenBounds/OpenHuntingData/tree/master/sources/US). 18 | 19 | ## Information needed for adding a data source 20 | To add a new data file, you need to prescribe these pieces of info: 21 | 22 | * URL for data 23 | * Species the data applies to. Common names only. 24 | * Attribution - What is the source of this data. 25 | * What field in the source data contains the name of each area. 26 | * What field in the source data contains the ID of each area. 27 | 28 | Determining the last 2 items will require downloading the data, and opening in a desktop GIS program ([such as QGIS](http://www.qgis.org/en/site/)). 29 | 30 | ## Guidelines for Data Submission 31 | * Data must be authoritative. 32 | * Commercial use must be allowed. 33 | * Redistribution must be allowed, though redistribution in original form does not need to be allowed. 34 | 35 | If data cannot be directly downloaded because its behind some a click-through form, then include directions for how to download the data in the pull request, and project maintainers will download the data and upload to a location where it can be automatically downloaded during the build process. 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 TrailBehind, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | ================ 24 | This license applies to the source code contained in this repository. The data 25 | assets that the scripts collect are copyright their respective owners. 26 | 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Project Archived 2 | 3 | This project is no longer being publicly being maintained. 4 | 5 | # OpenHuntingData 6 | 7 | [![Build Status](https://travis-ci.org/OpenBounds/OpenHuntingData.svg?branch=master)](https://travis-ci.org/OpenBounds/OpenHuntingData) 8 | 9 | ## Summary 10 | Python scripts to gather and normalize Hunting district data from many websites. The websites are often US State government agencies. 11 | 12 | Scripts should read data in whatever format it is available, and output a GeoJson file, with properties normalized to a schema that will be shared by all data sets. 13 | 14 | ## Scope 15 | The goal is to collect boundaries for geographic areas that are used to define hunting regulations. In some states these are called "Hunting Districts", in others they are called "Game Management Units"(GMUs), and there are probably additional names in other states. 16 | 17 | At this time only data for the USA is within the scope of this project. 18 | 19 | ### Types of data that are outside the scope of this project: 20 | * Species Occurrence 21 | * Land ownership 22 | * Trails 23 | * Roads 24 | * Motor Vehicle use restrictions 25 | * Wildlife management districts that only apply to non-game species. This includes cricital habitat designations. 26 | * In most states areas known as "Wildlife Management Areas" are not applicable, because this is actually a designation of land ownership and management priorities, and not of hunting regulations. 27 | 28 | ### Attributes within scope of this project: 29 | * Geometry, including holes 30 | * State 31 | * Area name 32 | * Area number/identifier 33 | * Huntable species 34 | 35 | ### Attributes outside the scope of this project: 36 | * Regulations 37 | * Access Restrictions 38 | 39 | ### Possibly: 40 | * URL for more info? 41 | * Legal Descriptions 42 | 43 | ## Project Structure 44 | The project root contains a directory, sources, that contains JSON files describing each dataset. Data is organized as /sources/:country:/:state_or_province:/:source_name:.json for example /sources/US/MT/deer-elk-lions.json 45 | 46 | ## Inspiration 47 | This project is inspired by http://openaddresses.io/ 48 | 49 | ## Future Work 50 | * more state coverage 51 | * add scripts to 52 | * scripts to merge/process GeoJson into master files 53 | 54 | * style sheets to make nice looking raster maps of the data, nationwide 55 | -------------------------------------------------------------------------------- /StyleTemplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 8, 3 | "name": "OpenHuntingData", 4 | "center": [ 5 | -118.291995, 6 | 36.578581 7 | ], 8 | "zoom": 12, 9 | "bearing": 0, 10 | "pitch": 0, 11 | "sources": { 12 | "data": { 13 | "type": "vector", 14 | "tiles": [ 15 | "https://s3.amazonaws.com/data.openbounds.org/USAHunting/vector/US/MT/deerelklion/{z}/{x}/{y}.pbf" 16 | ], 17 | "minzoom": 5, 18 | "maxzoom": 13 19 | } 20 | }, 21 | "glyphs": "https://static.gaiagps.com/GaiaTopoGL/glyphs/{fontstack}/{range}.pbf", 22 | "layers": [ 23 | { 24 | "id": "regions-case", 25 | "type": "line", 26 | "source": "data", 27 | "source-layer": "regions", 28 | "paint": { 29 | "line-color": "#ffffff", 30 | "line-width": 6 31 | } 32 | }, 33 | { 34 | "id": "regions", 35 | "type": "line", 36 | "source": "data", 37 | "source-layer": "regions", 38 | "paint": { 39 | "line-color": "#000000", 40 | "line-width": 2 41 | } 42 | }, 43 | { 44 | "id": "line_labels", 45 | "type": "symbol", 46 | "source": "data", 47 | "source-layer": "regions", 48 | "minzoom": 10, 49 | "layout": { 50 | "symbol-avoid-edges": false, 51 | "symbol-placement": "line", 52 | "text-allow-overlap": false, 53 | "text-anchor": "center", 54 | "text-field": "{name}", 55 | "text-font": [ 56 | "Bold" 57 | ], 58 | "text-max-angle": 20, 59 | "text-ignore-placement": false, 60 | "text-justify": "center", 61 | "text-keep-upright": false, 62 | "text-line-height": 1, 63 | "text-offset": [ 64 | 0, 65 | 1 66 | ], 67 | "text-rotation-alignment": "auto", 68 | "text-size": 14, 69 | "visibility": "visible" 70 | }, 71 | "paint": { 72 | "text-color": "#000000", 73 | "text-halo-color": "#ffffff", 74 | "text-halo-width": 2 75 | } 76 | }, 77 | { 78 | "id": "point_labels", 79 | "type": "symbol", 80 | "source": "data", 81 | "source-layer": "regions_labels", 82 | "maxzoom": 12, 83 | "layout": { 84 | "text-field": "{name}", 85 | "text-size": 14, 86 | "symbol-placement": "point", 87 | "symbol-avoid-edges": true, 88 | "visibility": "visible", 89 | "text-font": [ 90 | "Bold" 91 | ] 92 | }, 93 | "paint": { 94 | "text-color": "#000000", 95 | "text-halo-color": "#ffffff", 96 | "text-halo-width": 2 97 | } 98 | } 99 | ], 100 | "id": "template" 101 | } 102 | -------------------------------------------------------------------------------- /generated/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenBounds/OpenHuntingData/2a4c500099d960ed5c801b3197ac2e770f415b24/generated/.keep -------------------------------------------------------------------------------- /process.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | RESULT_DIR=generated 3 | 4 | set -ex 5 | 6 | echo "Generating geojson" 7 | DOWNLOAD_CACHE=cache python ./Processing/process.py sources/ $RESULT_DIR 2>&1 8 | 9 | VECTOR_MAXZOOM=13 10 | VECTOR_MINZOOM=5 11 | 12 | echo "Generating vector tiles" 13 | for i in $RESULT_DIR/*/*/*.geojson; do 14 | if [[ $i == *.labels.geojson* ]]; then 15 | echo "skipping " $i 16 | continue 17 | fi 18 | 19 | # Final vector output 20 | VECTOR_MBTILES=`pwd`/`dirname $i`/`basename $i .geojson`.pbf.mbtiles 21 | 22 | #Dont process if output exists 23 | if [[ -f $VECTOR_MBTILES ]];then 24 | echo "skipping $i, result MBTiles exist" 25 | continue 26 | fi 27 | 28 | echo Processing $i 29 | 30 | WORK_DIR=`mktemp -d` 31 | echo Using work dir $WORK_DIR 32 | DATA_MBTILES=$WORK_DIR/data.mbtiles 33 | python ./Processing/vectorTiling.py --layer regions \ 34 | --max_zoom=$VECTOR_MAXZOOM \ 35 | --min_zoom=$VECTOR_MINZOOM \ 36 | $DATA_MBTILES $i 37 | 38 | LABELS_GEOJSON=`dirname $i`/`basename $i .geojson`.labels.geojson 39 | LABELS_MBTILES=$WORK_DIR/labels.mbtiles 40 | if [ -e $LABELS_GEOJSON ]; then 41 | echo "Generating labels mbtiles" 42 | tippecanoe -o $LABELS_MBTILES $LABELS_GEOJSON \ 43 | -B 8 \ 44 | -b 128 \ 45 | -l regions_labels \ 46 | -Z $VECTOR_MINZOOM \ 47 | -z 10 48 | 49 | echo Merging data and label mbtiles 50 | 51 | COMBINED_MBTILES=$WORK_DIR/combined.mbtiles 52 | mortar --output $COMBINED_MBTILES $DATA_MBTILES $LABELS_MBTILES 53 | 54 | mv $COMBINED_MBTILES $VECTOR_MBTILES 55 | else 56 | echo "Label geojson not found" 57 | mv $DATA_MBTILES $VECTOR_MBTILES 58 | fi 59 | 60 | S3_LOCATION=s3://data.openbounds.org/USAHunting/vector/`dirname ${i#*/}`/`basename $i .geojson`/ 61 | echo "Uploading vector tiles to $S3_LOCATION" 62 | python ./Processing/upload_mbtiles.py --extension ".pbf" \ 63 | --threads 100 \ 64 | $VECTOR_MBTILES $S3_LOCATION 65 | 66 | rm -r $WORK_DIR 67 | done 68 | 69 | echo "Uploading to s3" 70 | s3cmd sync $RESULT_DIR s3://data.openbounds.org/USAHunting/ 71 | 72 | STYLE_DIR=styles 73 | if [ -e $STYLE_DIR ]; then 74 | rm -rf $STYLE_DIR 75 | fi 76 | 77 | mkdir $STYLE_DIR 78 | ./build-gl-style.py $STYLE_DIR generated/catalog.geojson > $STYLE_DIR/styles.json 79 | s3cmd sync $STYLE_DIR s3://data.openbounds.org/USAHunting/ 80 | -------------------------------------------------------------------------------- /schemas/paths.json: -------------------------------------------------------------------------------- 1 | { 2 | "sources":"sources/[A-Z]{2}/[A-Z]{2}/[a-z-]+[0-9,-]*.json$", 3 | "generated":"generated/[A-Z]{2}/[A-Z]{2}/[a-z-]+[0-9,-]*.geojson$" 4 | } 5 | -------------------------------------------------------------------------------- /schemas/result.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Open Hunting Data GeoJSON", 3 | "properties": { 4 | "type": { "enum": [ "FeatureCollection" ] }, 5 | "features": { 6 | "type": "array", 7 | "items": { "$ref": "#/definitions/feature" } 8 | }, 9 | "bbox": { 10 | "type": "array", 11 | "items": { "type": "number" } 12 | } 13 | }, 14 | "required": [ "type", "features", "bbox" ], 15 | "definitions": { 16 | "feature": { 17 | "title": "Feature", 18 | "properties": { 19 | "type": { "enum": [ "Feature" ] }, 20 | "geometry": { 21 | "oneOf": [ 22 | { "type": "null" }, 23 | { "$ref": "#/definitions/geometry" } 24 | ] 25 | }, 26 | "properties": { 27 | "type": "object", 28 | "properties": { 29 | "id": { 30 | "type": "string" 31 | }, 32 | "name": { 33 | "type": "string" 34 | } 35 | }, 36 | "required": [ "id", "name" ] 37 | } 38 | }, 39 | "required": [ "geometry", "properties" ] 40 | }, 41 | "geometry": { 42 | "title": "geometry", 43 | "required": [ "type", "coordinates" ], 44 | "oneOf": [ 45 | { 46 | "title": "Polygon", 47 | "properties": { 48 | "type": { "enum": [ "Polygon" ] }, 49 | "coordinates": { "$ref": "#/definitions/polygon" } 50 | } 51 | }, 52 | { 53 | "title": "MultiPolygon", 54 | "properties": { 55 | "type": { "enum": [ "MultiPolygon" ] }, 56 | "coordinates": { 57 | "type": "array", 58 | "items": { "$ref": "#/definitions/polygon" } 59 | } 60 | } 61 | } 62 | ] 63 | }, 64 | "position": { 65 | "description": "A single position", 66 | "type": "array", 67 | "minItems": 2, 68 | "items": [ { "type": "number" }, { "type": "number" } ], 69 | "additionalItems": false 70 | }, 71 | "positionArray": { 72 | "description": "An array of positions", 73 | "type": "array", 74 | "items": { "$ref": "#/definitions/position" } 75 | }, 76 | "linearRing": { 77 | "description": "An array of four or more positions where the first equals the last", 78 | "allOf": [ 79 | { "$ref": "#/definitions/positionArray" }, 80 | { "minItems": 4 } 81 | ] 82 | }, 83 | "polygon": { 84 | "description": "An array of linear rings", 85 | "type": "array", 86 | "items": { "$ref": "#/definitions/linearRing" } 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /schemas/source.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Open Hunting Data Source", 3 | "properties": { 4 | "name": { 5 | "type": "string", 6 | "description": "Descriptive name of this dataset", 7 | "pattern": "[\\w ]+$" 8 | }, 9 | "country": { 10 | "type": "string", 11 | "description": "ISO 3166-1 alpha-2 country code", 12 | "pattern": "^[A-Z]{2}$" 13 | 14 | }, 15 | "state": { 16 | "type": "string", 17 | "description": "State abbreviation", 18 | "pattern": "^[A-Z]{2}$" 19 | }, 20 | "attribution": { 21 | "type": "string", 22 | "description": "Source file attribution" 23 | }, 24 | "year": { 25 | "type": "string", 26 | "description": "Years this data is valid for. Multiple years should be , or - separated.", 27 | "pattern":"^([0-9,]+)|([0-9]{4}-[0-9]{4})$" 28 | }, 29 | "properties": { 30 | "type": "object", 31 | "properties": { 32 | "id": {"type": "string"}, 33 | "name": {"type": "string"} 34 | }, 35 | "required": ["id", "name"] 36 | }, 37 | "species": { 38 | "type": "array", 39 | "description": "Array of species", 40 | "uniqueItems": true 41 | }, 42 | "filetype": { 43 | "type": "string", 44 | "description": "Source file type", 45 | "enum": [ "shp", "gdb", "kml", "geojson"] 46 | }, 47 | "url": { 48 | "type": "string", 49 | "description": "Source file URL", 50 | "#pattern": "^((https|http|ftp|s3):\/\/)?([\\da-zA-Z\\.-]+)\\.([a-zA-Z]{2,16})([\/\\w \\.-\\?\\&]*)*$" 51 | }, 52 | "filenameInZip": { 53 | "type": "string", 54 | "description": "Name of source file in zip file" 55 | } 56 | }, 57 | "required": ["country", "state", "name", "attribution", "properties", "species", "filetype", "url"] 58 | } 59 | -------------------------------------------------------------------------------- /sources/US/AK/ak-legislatively-designated-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AK Legislatively Designated Areas", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ak-legislatively-designated-areas.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Alaska Department of Fish and Game", 8 | "properties": { 9 | "id": "Name", 10 | "name": "Name" 11 | }, 12 | "country": "US", 13 | "state": "AK", 14 | "filetype": "shp" 15 | } -------------------------------------------------------------------------------- /sources/US/AK/gmus.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AK GMUs and Subunits", 3 | "url": "https://s3.amazonaws.com/data.openbounds.org/USAHunting/manual-downloads/ak-gmus.zip", 4 | "description": "Game Management Units and Subunits", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Alaska Department of Fish and Game", 9 | "properties": { 10 | "id": "UnitSub", 11 | "name": "SubLabel" 12 | }, 13 | "country": "US", 14 | "state": "AK", 15 | "filetype": "shp" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/AK/specialareas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Alaska Special Hunting Regulation Areas", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ak-special-regulation-areas.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Alaska Department of Fish and Game", 8 | "properties": { 9 | "id": "AREANAME", 10 | "name": "SHORTNAME" 11 | }, 12 | "country": "US", 13 | "state": "AK", 14 | "filetype": "shp" 15 | } -------------------------------------------------------------------------------- /sources/US/AL/areas-ada.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AL ADA Accessible Hunting Areas", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/AL-ADA-HuntAreas.zip", 4 | "filenameInZip": "AL-ADA-HuntAreas.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Alabama Dept. of Conservation and Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "Name" 12 | }, 13 | "country": "US", 14 | "state": "AL", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://conservationgis.alabama.gov/dcnr/ & Physically Disabled Hunting Areas layer" 18 | } -------------------------------------------------------------------------------- /sources/US/AL/areas-special.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AL Special Hunting Opportunity Areas", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/AL-SpecialAreas.zip", 4 | "filenameInZip": "AL-SpecialAreas.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Alabama Dept. of Conservation and Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "Name" 12 | }, 13 | "country": "US", 14 | "state": "AL", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://conservationgis.alabama.gov/dcnr/ & Special Opportunity Areas layer" 18 | } -------------------------------------------------------------------------------- /sources/US/AL/forever-wild.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AL Forever Wild Tracts", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/AL-ForeverWild.zip", 4 | "filenameInZip": "AL-ForeverWild.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Alabama Dept. of Conservation and Natural Resources", 9 | "properties": { 10 | "id": "Id", 11 | "name": "DCNR_Name" 12 | }, 13 | "country": "US", 14 | "state": "AL", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://conservationgis.alabama.gov/dcnr/ & Forever Wild Tracts layer" 18 | } -------------------------------------------------------------------------------- /sources/US/AL/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AL WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/AL-WMAs.zip", 4 | "filenameInZip": "AL-WMAs.shp", 5 | "description": "Wildlife Management Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Alabama Dept. of Conservation and Natural Resources", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "Name" 13 | }, 14 | "country": "US", 15 | "state": "AL", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "http://conservationgis.alabama.gov/dcnr/ & Wildlife Management Areas layer" 19 | } -------------------------------------------------------------------------------- /sources/US/AR/bear.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AR Bear Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ar-hunting-zones.zip", 4 | "filenameInZip": "AR-Bear.shp", 5 | "species": [ 6 | "bear" 7 | ], 8 | "attribution": "Arkansas Game and Fish Commission", 9 | "properties": { 10 | "id": "objectid_1", 11 | "name": "flabel" 12 | }, 13 | "country": "US", 14 | "state": "AR", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.agfc.com/ & Bear Zones layer within the Reference Layers" 18 | } -------------------------------------------------------------------------------- /sources/US/AR/cwd.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AR CWD Management Zone", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ar-hunting-zones.zip", 4 | "filenameInZip": "AR-CWD.shp", 5 | "species": [ 6 | "deer" 7 | ], 8 | "attribution": "Arkansas Game and Fish Commission", 9 | "properties": { 10 | "id": "objectid_1", 11 | "name": "fname" 12 | }, 13 | "country": "US", 14 | "state": "AR", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.agfc.com/ & CWD Management Zone layer within the Reference Layers" 18 | } -------------------------------------------------------------------------------- /sources/US/AR/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AR Deer Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ar-hunting-zones.zip", 4 | "filenameInZip": "AR-Deer.shp", 5 | "species": [ 6 | "deer" 7 | ], 8 | "attribution": "Arkansas Game and Fish Commission", 9 | "properties": { 10 | "id": "objectid", 11 | "name": "flabel" 12 | }, 13 | "country": "US", 14 | "state": "AR", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.agfc.com/ & Deer Zones layer within the Reference Layers" 18 | } -------------------------------------------------------------------------------- /sources/US/AR/elk.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AR Elk Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ar-hunting-zones.zip", 4 | "filenameInZip": "AR-Elk.shp", 5 | "species": [ 6 | "elk" 7 | ], 8 | "attribution": "Arkansas Game and Fish Commission", 9 | "properties": { 10 | "id": "objectid", 11 | "name": "fname" 12 | }, 13 | "country": "US", 14 | "state": "AR", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.agfc.com/ & Elk Zones layer within the Reference Layers" 18 | } -------------------------------------------------------------------------------- /sources/US/AR/turkey.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AR Turkey Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ar-hunting-zones.zip", 4 | "filenameInZip": "AR-Turkey.shp", 5 | "species": [ 6 | "turkey" 7 | ], 8 | "attribution": "Arkansas Game and Fish Commission", 9 | "properties": { 10 | "id": "objectid_1", 11 | "name": "flabel" 12 | }, 13 | "country": "US", 14 | "state": "AR", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.agfc.com/ & Turkey Zones layer within the Reference Layers" 18 | } -------------------------------------------------------------------------------- /sources/US/AR/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AR WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/AR-WMA_no_privateland.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Arkansas Game and Fish Commission", 9 | "properties": { 10 | "id": "objectid", 11 | "name": "fname" 12 | }, 13 | "country": "US", 14 | "state": "AR", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.agfc.com/arcgis/rest/services/agfc/MapServer using the SAGA vector polygon difference tool on the Inholdings & WMA Boundaries" 18 | } -------------------------------------------------------------------------------- /sources/US/AZ/gmus.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "AZ GMUs", 3 | "url": "https://s3.amazonaws.com/data.openbounds.org/USAHunting/manual-downloads/az-gmus.geojson", 4 | "description": "Game Management Units", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Arizona Game and Fish Department", 9 | "properties": { 10 | "id": "GMUNAME", 11 | "name": "GMUNAME" 12 | }, 13 | "country": "US", 14 | "state": "AZ", 15 | "filetype": "geojson" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/CA/bighornsheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CA Bighorn Sheep Hunt Zones", 3 | "url": "ftp://ftp.dfg.ca.gov/BDB/GIS/BIOS/Public_Datasets/700_799/ds784.zip", 4 | "species": [ 5 | "bighorn sheep" 6 | ], 7 | "attribution": "California Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "Zone", 10 | "name": "Zone" 11 | }, 12 | "country": "US", 13 | "state": "CA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://portal.gis.ca.gov/geoportal/catalog/search/search.page & search for bighorn hunt" 17 | } -------------------------------------------------------------------------------- /sources/US/CA/deerhuntunits.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CA Deer Hunt Zones", 3 | "url": "ftp://ftp.dfg.ca.gov/BDB/GIS/BIOS/Public_Datasets/300_399/ds342.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "California Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "ZONE_LTR", 10 | "name": "Zone_Name" 11 | }, 12 | "country": "US", 13 | "state": "CA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://portal.gis.ca.gov/geoportal/catalog/search/search.page & search for deer hunt" 17 | } -------------------------------------------------------------------------------- /sources/US/CA/elk.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CA Elk Hunt Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ca-elk-zones.zip", 4 | "species": [ 5 | "elk" 6 | ], 7 | "attribution": "California Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "Zone", 10 | "name": "Zone" 11 | }, 12 | "country": "US", 13 | "state": "CA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://portal.gis.ca.gov/geoportal/catalog/search/search.page & search for elk hunt & add zone numbers from http://www.eregulations.com/wp-content/uploads/2017/05/elk-map.pdf" 17 | } -------------------------------------------------------------------------------- /sources/US/CA/grouse.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CA Sooty (Blue) & Ruffed Grouse Hunt Zone", 3 | "url": "ftp://ftp.dfg.ca.gov/BDB/GIS/BIOS/Public_Datasets/1300_1399/ds1341.zip", 4 | "species": [ 5 | "grouse" 6 | ], 7 | "attribution": "California Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "Species", 10 | "name": "Species" 11 | }, 12 | "country": "US", 13 | "state": "CA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://portal.gis.ca.gov/geoportal/catalog/search/search.page & search for grouse hunt" 17 | } -------------------------------------------------------------------------------- /sources/US/CA/nonlead-ammunition-area.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CA Nonlead Ammunition Area", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ca-nonlead-area.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "California Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "Name", 10 | "name": "Name" 11 | }, 12 | "country": "US", 13 | "state": "CA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "KML download https://www.wildlife.ca.gov/Hunting/Deer#54774-zones--hunts & Condor layer" 17 | } -------------------------------------------------------------------------------- /sources/US/CA/pronghorn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CA Pronghorn Antelope Hunt Zones", 3 | "url": "ftp://ftp.dfg.ca.gov/BDB/GIS/BIOS/Public_Datasets/700_799/ds787.zip", 4 | "species": [ 5 | "pronghorn" 6 | ], 7 | "attribution": "California Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "Zone", 10 | "name": "Zone" 11 | }, 12 | "country": "US", 13 | "state": "CA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://portal.gis.ca.gov/geoportal/catalog/search/search.page & search for pronghorn hunt" 17 | } -------------------------------------------------------------------------------- /sources/US/CA/public-hunting-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CA Wildlife Areas & Reserves", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ca-public-access-lands.zip", 4 | "filenameInZip": "CA-PublicAccessLands.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "California Department of Fish and Wildlife", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "PROP_NAME" 12 | }, 13 | "country": "US", 14 | "state": "CA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://map.dfg.ca.gov/lands/ & CDFW Public Access Lands layer with fishing access polygons removed" 18 | } -------------------------------------------------------------------------------- /sources/US/CA/quail.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CA Quail Hunt Zones", 3 | "url": "ftp://ftp.dfg.ca.gov/BDB/GIS/BIOS/Public_Datasets/1300_1399/ds1342.zip", 4 | "species": [ 5 | "quail" 6 | ], 7 | "attribution": "California Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "ZoneDes", 10 | "name": "ZoneDes" 11 | }, 12 | "country": "US", 13 | "state": "CA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://portal.gis.ca.gov/geoportal/catalog/search/search.page & search for quail hunt" 17 | } -------------------------------------------------------------------------------- /sources/US/CO/bear-blackbear-cougar-deer-elk-moose-mountainlion-muledeer-pronghorn-puma-white-taileddeer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CO GMUs - Big Game", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/co-BigGameGMUBoundaries08152017.zip", 4 | "filenameInZip": "BigGameGMUBoundaries08152017.shp", 5 | "description": "Game Management Units", 6 | "species": [ 7 | "bear", 8 | "black bear", 9 | "cougar", 10 | "deer", 11 | "elk", 12 | "moose", 13 | "mountain lion", 14 | "mule deer", 15 | "pronghorn", 16 | "puma", 17 | "white-tailed deer" 18 | ], 19 | "attribution": "Colorado Parks and Wildlife", 20 | "properties": { 21 | "id": "GMUID", 22 | "name" : "GMUID" 23 | }, 24 | "country": "US", 25 | "state": "CO", 26 | "filetype": "shp", 27 | "year": "2017", 28 | "source": "http://www.arcgis.com/home/item.html?id=93c485b0f27e4ff68c066a4b23cbaad3" 29 | } 30 | -------------------------------------------------------------------------------- /sources/US/CO/bighornsheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CO GMUs - Bighorn Sheep", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/co-BighornGMUBoundaries08152017.zip", 4 | "filenameInZip": "BighornGMUBoundaries08152017.shp", 5 | "description": "Game Management Units", 6 | "species": [ 7 | "bighorn sheep" 8 | ], 9 | "attribution": "Colorado Parks and Wildlife", 10 | "properties": { 11 | "id": "BSGMU", 12 | "name" : "BSGMU" 13 | }, 14 | "country": "US", 15 | "state": "CO", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "http://www.arcgis.com/home/item.html?id=94ad34c9b51f415cb9eb2cd8fcde3b08" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/CO/mountaingoat.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CO GMUs - Mountain Goats", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/co-MtnGoatGMUBoundaries08152017.zip", 4 | "filenameInZip": "MtnGoatGMUBoundaries08152017.shp", 5 | "description": "Game Management Units", 6 | "species": [ 7 | "mountain goat" 8 | ], 9 | "attribution": "Colorado Parks and Wildlife", 10 | "properties": { 11 | "id": "MGGMU", 12 | "name": "MGGMU" 13 | }, 14 | "country": "US", 15 | "state": "CO", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "http://www.arcgis.com/home/item.html?id=9892c18797214285ad116b9265dc84ed" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/CO/public-access-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CO Public Access Properties - 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/co-CPWPublicAccessProperties08152017.zip", 4 | "filenameInZip": "CPWPublicAccessProperties08152017.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Colorado Parks and Wildlife", 9 | "properties": { 10 | "id": "PropName", 11 | "name": "PropName" 12 | }, 13 | "country": "US", 14 | "state": "CO", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.arcgis.com/home/item.html?id=b1b27dc4bde744e490e0d1a9f9512032" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/CO/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CO Walk In Access - 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/co-CPWWalkInAccess08152017.zip", 4 | "filenameInZip": "CPWWalkInAccess08152017.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Colorado Parks and Wildlife", 9 | "properties": { 10 | "id": "COVER", 11 | "name": "COVER" 12 | }, 13 | "country": "US", 14 | "state": "CO", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.arcgis.com/home/item.html?id=d50af5fb22764db198ba826e35f117a8" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/CO/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "CO WIA Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "CPWWalkInAccess04092018.shp", 5 | "description": "Walk-In Access Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Colorado Parks and Wildlife", 10 | "properties": { 11 | "id": "COVER", 12 | "name": "COVER" 13 | }, 14 | "country": "US", 15 | "state": "CO", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "http://www.arcgis.com/home/item.html?id=d50af5fb22764db198ba826e35f117a8" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/FL/blackbear.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "FL Black Bear Mgmt Units", 3 | "url": "http://geodata.myfwc.com/datasets/1af166d8eb6b485b8b0061183cf7a8aa_14.zip", 4 | "species": [ 5 | "Black Bear" 6 | ], 7 | "attribution": "Florida Fish and Wildlife Conservation Commission", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "BMU_Name" 11 | }, 12 | "country": "US", 13 | "state": "FL", 14 | "filetype": "shp" 15 | } 16 | -------------------------------------------------------------------------------- /sources/US/GA/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "GA WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ga-wildlife-management-areas.zip", 4 | "filenameInZip": "dnr17c.shp", 5 | "description": "Wildlife Management Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Georgia Dept. of Nat. Resources Wildlife Resources Division", 10 | "properties": { 11 | "id": "NAME", 12 | "name": "NAME" 13 | }, 14 | "country": "US", 15 | "state": "GA", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "https://data.georgiaspatial.org/index.asp?body=preview&dataId=69" 19 | } -------------------------------------------------------------------------------- /sources/US/HI/all.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "HI Hunt Areas", 3 | "url": "http://files.hawaii.gov/dbedt/op/gis/data/huntareas.shp.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "State of Hawaii, Hawaii Department of Land and Natural Resources, and the Hawaii Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "HUNTAREAS_", 10 | "name": "HUNTAREAS_" 11 | }, 12 | "country": "US", 13 | "state": "HI", 14 | "filetype": "shp" 15 | } 16 | -------------------------------------------------------------------------------- /sources/US/IA/deer-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Deer Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ia-deer-zones.zip", 4 | "filenameInZip": "deer-zones.shp", 5 | "species": [ 6 | "deer" 7 | ], 8 | "attribution": "Iowa Dept. of Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "NR_Deer" 12 | }, 13 | "country": "US", 14 | "state": "IA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://programs.iowadnr.gov/geospatial/rest/services/Recreation/Hunting/MapServer/7 & filtered for deer" 18 | } -------------------------------------------------------------------------------- /sources/US/IA/goose-nohunt-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Areas Closed for Canada Goose Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/IA-ClosedGooseArea.zip", 4 | "filenameInZip": "IA-ClosedGooseArea.shp", 5 | "species": [ 6 | "canada goose" 7 | ], 8 | "attribution": "Iowa Dept. of Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "CAGO" 12 | }, 13 | "country": "US", 14 | "state": "IA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://programs.iowadnr.gov/maps/huntingatlas/default.html & the Closed Canada Goose Area layer" 18 | } -------------------------------------------------------------------------------- /sources/US/IA/grouse-zone.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Grouse Hunting Zone", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ia-grouse-zone.zip", 4 | "filenameInZip": "grouse-zones.shp", 5 | "species": [ 6 | "grouse" 7 | ], 8 | "attribution": "Iowa Dept. of Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "Grouse" 12 | }, 13 | "country": "US", 14 | "state": "IA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://programs.iowadnr.gov/geospatial/rest/services/Recreation/Hunting/MapServer/7 & filtered for grouse" 18 | } -------------------------------------------------------------------------------- /sources/US/IA/public-lands.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Public Lands Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/IA-OtherPublicLand.zip", 4 | "filenameInZip": "IA-OtherPublicLand.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Iowa Dept. of Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID_1", 11 | "name": "AREA_NAME" 12 | }, 13 | "country": "US", 14 | "state": "IA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://programs.iowadnr.gov/maps/huntingatlas/default.html & the Other Public Hunting Areas layer" 18 | } -------------------------------------------------------------------------------- /sources/US/IA/refuges.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Refuges", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/IA-DNRrefuges.zip", 4 | "filenameInZip": "IA-DNRrefuges.shp", 5 | "species": [ 6 | "waterfowl" 7 | ], 8 | "attribution": "Iowa Dept. of Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "WMA" 12 | }, 13 | "country": "US", 14 | "state": "IA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://programs.iowadnr.gov/maps/huntingatlas/default.html & DNR Refuges layer" 18 | } -------------------------------------------------------------------------------- /sources/US/IA/turkey-zone-fall.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Fall Turkey Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ia-turkey-zones-fall.zip", 4 | "filenameInZip": "turkey-zones-fall.shp", 5 | "species": [ 6 | "turkey" 7 | ], 8 | "attribution": "Iowa Dept. of Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "R_F_Trky" 12 | }, 13 | "country": "US", 14 | "state": "IA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://programs.iowadnr.gov/geospatial/rest/services/Recreation/Hunting/MapServer/7 & filtered for turkey" 18 | } -------------------------------------------------------------------------------- /sources/US/IA/turkey-zone-spring.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Spring Turkey Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ia-turkey-zones-spring.zip", 4 | "filenameInZip": "turkey-zones-spring.shp", 5 | "species": [ 6 | "turkey" 7 | ], 8 | "attribution": "Iowa Dept. of Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "NR_S_Trky" 12 | }, 13 | "country": "US", 14 | "state": "IA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://programs.iowadnr.gov/geospatial/rest/services/Recreation/Hunting/MapServer/7 & filtered for turkey" 18 | } -------------------------------------------------------------------------------- /sources/US/IA/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Habitat & Access Program (IHAP) 2017-2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/IA-Access2017.zip", 4 | "filenameInZip": "IA-Access2017.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Iowa Dept. of Natural Resources", 9 | "properties": { 10 | "id": "OBJECTID_1", 11 | "name": "AREA_NAME" 12 | }, 13 | "country": "US", 14 | "state": "IA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://programs.iowadnr.gov/maps/huntingatlas/default.html & the Iowa Habitat Access Program Tracts: Sept 1-May 31 layer" 18 | } -------------------------------------------------------------------------------- /sources/US/IA/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA IHAP Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "IA-Iowa Habitat Access Program Tracts.shp", 5 | "description": "Idaho Habitat & Access Program Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Iowa Dept. of Natural Resources", 10 | "properties": { 11 | "id": "OBJECTID_1", 12 | "name": "AREA_NAME" 13 | }, 14 | "country": "US", 15 | "state": "IA", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://programs.iowadnr.gov/geospatial/rest/services/Recreation/Hunting/MapServer/" 19 | } -------------------------------------------------------------------------------- /sources/US/IA/waterfowl-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA Waterfowl Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ia-waterfowl-zones.zip", 4 | "filenameInZip": "waterfowl-zones.shp", 5 | "species": [ 6 | "ducks", 7 | "geese", 8 | "waterfowl" 9 | ], 10 | "attribution": "Iowa Dept. of Natural Resources", 11 | "properties": { 12 | "id": "OBJECTID", 13 | "name": "Waterfowl" 14 | }, 15 | "country": "US", 16 | "state": "IA", 17 | "filetype": "shp", 18 | "year": "2017", 19 | "source": "https://programs.iowadnr.gov/geospatial/rest/services/Recreation/Hunting/MapServer/7 & filtered for waterfowl" 20 | } -------------------------------------------------------------------------------- /sources/US/IA/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IA WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/IA-WMAs.zip", 4 | "filenameInZip": "IA-WMAs.shp", 5 | "description": "Wildlife Management Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Iowa Dept. of Natural Resources", 10 | "properties": { 11 | "id": "OBJECTID_1", 12 | "name": "AREA_NAME" 13 | }, 14 | "country": "US", 15 | "state": "IA", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "https://programs.iowadnr.gov/maps/huntingatlas/default.html & the DNR Managed Public Hunting Areas layer" 19 | } -------------------------------------------------------------------------------- /sources/US/ID/antelope.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Antelope Controlled Hunt Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/0333cc788cd943cabded0aae1ca6914f_0.zip", 4 | "species": [ 5 | "antelope" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "AreaID", 10 | "name": "HuntArea", 11 | "area rank" : "AreaRank", 12 | "note" : "AreaNote" 13 | }, 14 | "country": "US", 15 | "state": "ID", 16 | "filetype": "shp" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/ID/bear.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Bear Controlled Hunt Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/a015e7804a594fa3aa3006b116ed8894_0.zip", 4 | "species": [ 5 | "bear" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "AreaID", 10 | "name": "HuntArea", 11 | "note" : "AreaNote", 12 | "area rank" : "AreaRank" 13 | }, 14 | "country": "US", 15 | "state": "ID", 16 | "filetype": "shp" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/ID/beaver.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Beaver Controlled Trapping Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/1fb2bd98c8c846e687a6057abcf5065b_0.zip", 4 | "species": [ 5 | "beaver" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Unit", 11 | "season" : "Season_Dat", 12 | "note" : "Area_Desc", 13 | "limit" : "NumBeaver" 14 | }, 15 | "country": "US", 16 | "state": "ID", 17 | "filetype": "shp" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/ID/bighorn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Bighorn Controlled Hunt Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/18aa24978f0e4862b8e8aa686eac17d3_0.zip", 4 | "species": [ 5 | "Bighorn Sheep" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "AreaID", 10 | "name": "HuntArea", 11 | "game type" : "BigGame", 12 | "game rank" : "BigGameRan", 13 | "area rank" : "AreaRank", 14 | "note" : "AreaNote" 15 | }, 16 | "country": "US", 17 | "state": "ID", 18 | "filetype": "shp" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/ID/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Deer Controlled Hunt Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/b774c9d5ffeb475bbd80f2300092bb20_0.zip", 4 | "species": [ 5 | "deer" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "AreaID", 10 | "name": "HuntArea", 11 | "note" : "AreaNote", 12 | "area rank" : "AreaRank" 13 | }, 14 | "country": "US", 15 | "state": "ID", 16 | "filetype": "shp" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/ID/elk.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ID Elk Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/88d9359aee7f4c40a19471dfc6219e08_0.zip", 4 | "species": [ 5 | "elk" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "NAME" 11 | }, 12 | "country": "US", 13 | "state": "ID", 14 | "filetype": "shp" 15 | } 16 | -------------------------------------------------------------------------------- /sources/US/ID/gmus.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID GMUs", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/b467b48c2cbc46f5b1414e493e7babd9_0.zip", 4 | "species": [ 5 | "All" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "NAME" 11 | }, 12 | "country": "US", 13 | "state": "ID", 14 | "filetype": "shp" 15 | } 16 | -------------------------------------------------------------------------------- /sources/US/ID/moose.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Moose Controlled Hunt Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/d380e869c3a1469eac4de2ecd3a1f0f7_0.zip", 4 | "species": [ 5 | "Moose" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "AreaID", 10 | "name": "HuntArea", 11 | "note" : "AreaNote" 12 | }, 13 | "country": "US", 14 | "state": "ID", 15 | "filetype": "shp" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/ID/mountaingoat.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Mountain Goat Controlled Hunt Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/d082a40554b14a54b951dfee00a701bd_0.zip", 4 | "species": [ 5 | "Mountain Goat" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "AreaID", 10 | "name": "HuntArea", 11 | "note" : "AreaNote", 12 | "area rank" : "AreaRank" 13 | }, 14 | "country": "US", 15 | "state": "ID", 16 | "filetype": "shp" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/ID/turkey.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Turkey Controlled Hunt Units", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/42b77ccd075c40c2a73a2416b8bd25f3_0.zip", 4 | "species": [ 5 | "Turkey" 6 | ], 7 | "attribution": "Idaho Department of Fish and Game", 8 | "properties": { 9 | "id": "AreaID", 10 | "name": "HuntArea", 11 | "note" : "AreaNote" 12 | }, 13 | "country": "US", 14 | "state": "ID", 15 | "filetype": "shp" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/ID/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Access Yes! - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "ID-Access Yes!.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Idaho Department of Fish and Game", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "NAME" 12 | }, 13 | "country": "US", 14 | "state": "ID", 15 | "filetype": "shp", 16 | "year": "2018", 17 | "source": "https://idfg.idaho.gov/gis/rest/services/Data/Hunting/MapServer/" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/ID/waterfowl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ID Waterfowl Hunt Areas", 3 | "url": "http://data.idfggis.opendata.arcgis.com/datasets/4e66cb98004a44b195b68bc28c235880_0.zip", 4 | "species": [ 5 | "duck", 6 | "merganser", 7 | "Wilson's snipe", 8 | "American coots", 9 | "Canada goose", 10 | "white-fronted goose", 11 | "light goose", 12 | "sandhill crane" 13 | ], 14 | "attribution": "Idaho Department of Fish and Game", 15 | "properties": { 16 | "id": "FID", 17 | "name": "Area_Name", 18 | "note" : "AreaNote" 19 | }, 20 | "country": "US", 21 | "state": "ID", 22 | "filetype": "shp" 23 | } 24 | -------------------------------------------------------------------------------- /sources/US/IN/hunting-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "IN Public Lands Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/IN-HuntAreas.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Indiana Department of Natural Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "PROPERTY" 11 | }, 12 | "country": "US", 13 | "state": "IN", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://indnr.maps.arcgis.com/apps/webappviewer/index.html?id=05e37ac12a1345ceb1673228fb2793ce" 17 | } -------------------------------------------------------------------------------- /sources/US/KS/fall-walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "KS Walk-In Hunting Access Areas - Fall 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ks-walkin-2017.zip", 4 | "filenameInZip": "KS-WalkIn2017-fall.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Kansas Sept. of Wildlife, Parks, & Tourism", 9 | "properties": { 10 | "id": "FID", 11 | "name": "LEGENDID" 12 | }, 13 | "country": "US", 14 | "state": "KS", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://ksdot.maps.arcgis.com/apps/webappviewer/index.html?id=43e5b96582704fc6a8abe3b29c159a6f & LEGENDID = months the areas is open for hunting" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/KS/spring-walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "KS Walk-In Hunting Access Areas - Spring 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ks-walkin-2017.zip", 4 | "filenameInZip": "KS-WalkIn2017-spring.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Kansas Dept. of Wildlife, Parks, & Tourism", 9 | "properties": { 10 | "id": "FID", 11 | "name": "LegendID" 12 | }, 13 | "country": "US", 14 | "state": "KS", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://ksdot.maps.arcgis.com/apps/webappviewer/index.html?id=a6467b7c4f714053ab63003607674413 & Legendid = months the areas is open for hunting" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/KS/spring-walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "KS WIHA Areas - Spring 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "KS-2018_KS_Spring_WIHA.shp", 5 | "description": "Walk-In Hunting Access Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Kansas Sept. of Wildlife, Parks, & Tourism", 10 | "properties": { 11 | "id": "FID", 12 | "name": "LegendID" 13 | }, 14 | "country": "US", 15 | "state": "KS", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://services1.arcgis.com/q2CglofYX6ACNEeu/ArcGIS/rest/services/2018_KS_Spring_WIHA/FeatureServer/" 19 | } -------------------------------------------------------------------------------- /sources/US/KY/all.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KY WMAs & Public Hunting Areas", 3 | "url": "http://app.fw.ky.gov/kfwis/kygeonet//Public_Hunting_areas.zip", 4 | "filenameInZip": "Public_hunting_areas.shp", 5 | "description": "Wildlife Management Areas and Public Hunting Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Kentucky Department of Fish & Wildlife Resources", 10 | "properties": { 11 | "id": "KDFWR_ID", 12 | "name": "AREANAME" 13 | }, 14 | "country": "US", 15 | "state": "KY", 16 | "filetype": "shp", 17 | "year": "2016", 18 | "source": "http://kygisserver.ky.gov/geoportal/catalog/main/home.page & search for public hunting" 19 | } -------------------------------------------------------------------------------- /sources/US/KY/bear-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KY Bear Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ky-bear-zones-final.zip", 4 | "species": [ 5 | "bear" 6 | ], 7 | "attribution": "Kentucky Department of Fish & Wildlife Resources", 8 | "properties": { 9 | "id": "NAME", 10 | "name": "NAME" 11 | }, 12 | "country": "US", 13 | "state": "KY", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://www.arcgis.com/home/webmap/viewer.html?webmap=fc0d26ac525442f485bec81359c01a56&extent=-86.2019,35.8987,-81.2306,39.1009 & combining all the bear layers into one shp" 17 | } -------------------------------------------------------------------------------- /sources/US/KY/deer-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KY Deer Management Zones 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ky-annual-deer-zone-2017.zip", 4 | "filenameInZip": "Annual_Deer_Mgt_Zones.shp", 5 | "species": [ 6 | "Deer" 7 | ], 8 | "attribution": "Kentucky Department of Fish & Wildlife Resources", 9 | "properties": { 10 | "id": "NAME", 11 | "name": "NAME" 12 | }, 13 | "country": "US", 14 | "state": "KY", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://kygisserver.ky.gov/geoportal/catalog/main/home.page & search for annual deer zones" 18 | } -------------------------------------------------------------------------------- /sources/US/KY/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KY Deer Management Zones", 3 | "url": "http://app.fw.ky.gov/kfwis/kygeonet/Annual_Deer_Mgt_Zones.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "Kentucky Department of Fish & Wildlife Resources", 8 | "properties": { 9 | "id": "FIPS", 10 | "name": "NAME" 11 | }, 12 | "country": "US", 13 | "state": "KY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/KY/elk-limited-entry-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KY Elk Limited Entry Areas 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ky-elk-limited-entry-2017.zip", 4 | "filenameInZip": "KY-ElkLimitedEntry.shp", 5 | "species": [ 6 | "elk" 7 | ], 8 | "attribution": "Kentucky Department of Fish & Wildlife Resources", 9 | "properties": { 10 | "id": "AreaName", 11 | "name": "AreaName" 12 | }, 13 | "country": "US", 14 | "state": "KY", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://www.arcgis.com/home/webmap/viewer.html?webmap=07e6ddb4b0f5496c9d01883e40237af4&extent=-84.7664,36.303,-82.5883,37.8435 & elk limited entry areas layer" 18 | } -------------------------------------------------------------------------------- /sources/US/KY/elk-zone.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KY Elk Management Zone", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ky-elk-zone.zip", 4 | "species": [ 5 | "elk" 6 | ], 7 | "attribution": "Kentucky Department of Fish & Wildlife Resources", 8 | "properties": { 9 | "id": "AreaName", 10 | "name": "AreaName" 11 | }, 12 | "country": "US", 13 | "state": "KY", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://www.arcgis.com/home/webmap/viewer.html?webmap=07e6ddb4b0f5496c9d01883e40237af4&extent=-84.7664,36.303,-82.5883,37.8435 & elk management zone layer" 17 | } -------------------------------------------------------------------------------- /sources/US/LA/wma-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "LA WMAs & Wildlife Refuges 2016", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/LDWF_WMA_Refuge.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Louisiana Department of Wildlife and Fisheries", 8 | "properties": { 9 | "id": "Name", 10 | "name": "Name" 11 | }, 12 | "country": "US", 13 | "state": "LA", 14 | "filetype": "shp", 15 | "year": "2016", 16 | "source": "http://www.wlf.louisiana.gov/wma-map-download" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/MA/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MA Deer Units", 3 | "url": "https://s3.amazonaws.com/data.openbounds.org/USAHunting/manual-downloads/MA_WMZ_Poly2.zip", 4 | "species": ["Deer"], 5 | "attribution": "Massachusetts Division of Fisheries and Wildlife", 6 | "properties": { 7 | "id": "DMZ", 8 | "name": "DMZ" 9 | }, 10 | "country": "US", 11 | "state": "MA", 12 | "filetype": "shp" 13 | } 14 | -------------------------------------------------------------------------------- /sources/US/ME/all.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ME Wildlife Management Districts", 3 | "url": "http://www.maine.gov/megis/catalog/shps/state/wildlife_mgmt_districts.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Maine Department of Inland Fisheries and Wildlife", 8 | "properties": { 9 | "id": "IDENTIFIER", 10 | "name": "IDENTIFIER" 11 | }, 12 | "country": "US", 13 | "state": "ME", 14 | "filetype": "shp" 15 | } 16 | -------------------------------------------------------------------------------- /sources/US/MI/comm-forest-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MI Commercial Forest Hunting Lands 2017", 3 | "url": "https://opendata.arcgis.com/datasets/b1e8b023f10a44fc82f34fc23b7332b9_3.geojson", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Michigan Department of Natural Resources", 8 | "properties": { 9 | "id": "Townname", 10 | "name": "Townname" 11 | }, 12 | "country": "US", 13 | "state": "MI", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://gis-midnr.opendata.arcgis.com/datasets/b1e8b023f10a44fc82f34fc23b7332b9_3" 17 | } -------------------------------------------------------------------------------- /sources/US/MI/hunter-access-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MI Hunter Access Program Land Areas 2017", 3 | "url": "https://opendata.arcgis.com/datasets/45eb3aa7cb014130b0d509b7f51b6918_2.geojson", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Michigan Department of Natural Resources", 8 | "properties": { 9 | "id": "HAP_Olabel", 10 | "name": "HAP_Olabel" 11 | }, 12 | "country": "US", 13 | "state": "MI", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://gis-midnr.opendata.arcgis.com/datasets/45eb3aa7cb014130b0d509b7f51b6918_2" 17 | } -------------------------------------------------------------------------------- /sources/US/MI/state-areas-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MI State Forest, Wildlife, and Game Areas Open to Hunting 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/MI-State_Forest_Wildlife_and_Game_Areas_Open_to_Hunting.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Michigan Department of Natural Resources", 8 | "properties": { 9 | "id": "UNITNAME", 10 | "name": "UNITNAME" 11 | }, 12 | "country": "US", 13 | "state": "MI", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://gis-midnr.opendata.arcgis.com/datasets/403b88ca6cc443a59e54eb28e4f4de98_5" 17 | } -------------------------------------------------------------------------------- /sources/US/MI/state-parks-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MI State Parks Huntable Lands 2017", 3 | "url": "https://opendata.arcgis.com/datasets/3e28c59c21de444dabf083283e38f5f2_6.geojson", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Michigan Department of Natural Resources", 8 | "properties": { 9 | "id": "FACILITY", 10 | "name": "FACILITY" 11 | }, 12 | "country": "US", 13 | "state": "MI", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://gis-midnr.opendata.arcgis.com/datasets/3e28c59c21de444dabf083283e38f5f2_6" 17 | } -------------------------------------------------------------------------------- /sources/US/MI/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MI HAP Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "MI-Hunter Access Program.shp", 5 | "description": "Hunter Access Program Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Michigan Department of Natural Resources", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "HAPLASTNAM" 13 | }, 14 | "country": "US", 15 | "state": "MI", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://gis5.mcgi.state.mi.us/maps/rest/services/DNR/MIHUNT/MapServer/" 19 | } -------------------------------------------------------------------------------- /sources/US/MI/wildlife-units.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MI WMUs", 3 | "url": "https://opendata.arcgis.com/datasets/b0c0353c7b8949cba7ff3f6a073ed2d0_0.geojson", 4 | "description": "Wildlife Management Units", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Michigan Department of Natural Resources", 9 | "properties": { 10 | "id": "MGMT_UNIT", 11 | "name": "MGMT_UNIT" 12 | }, 13 | "country": "US", 14 | "state": "MI", 15 | "filetype": "geojson", 16 | "year": "2017", 17 | "source": "http://gis-midnr.opendata.arcgis.com/datasets/b0c0353c7b8949cba7ff3f6a073ed2d0_0" 18 | } -------------------------------------------------------------------------------- /sources/US/MN/bear.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN Bear Permit Areas", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_bear_permit_areas/shp_bdry_bear_permit_areas.zip", 4 | "filenameInZip": "bear_permit_areas.shp", 5 | "species": [ 6 | "Bear" 7 | ], 8 | "attribution": "Minnesota Department of Natural Resources", 9 | "properties": { 10 | "id": "BMU_Label", 11 | "name": "BMU_Label" 12 | }, 13 | "country": "US", 14 | "state": "MN", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gisdata.mn.gov/dataset/bdry-bear-permit-areas" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/MN/bobcat-fisher-marten-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MN Bobcat, Fisher, and Marten Zones", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_fisher_marten_bobcat_zones/shp_bdry_fisher_marten_bobcat_zones.zip", 4 | "filenameInZip" : "Fisher_Marten_Bobcat_Zones.shp", 5 | "species": [ 6 | "bobcat", 7 | "fisher", 8 | "marten" 9 | ], 10 | "attribution": "Minnesota Department of Natural Resources", 11 | "properties": { 12 | "id": "Name", 13 | "name": "Name" 14 | }, 15 | "country": "US", 16 | "state": "MN", 17 | "filetype": "shp", 18 | "year": "2016", 19 | "source": "https://gisdata.mn.gov/dataset/bdry-fisher-marten-bobcat-zones" 20 | } -------------------------------------------------------------------------------- /sources/US/MN/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN Deer Permit Areas", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_deer_permit_areas/shp_bdry_deer_permit_areas.zip", 4 | "filenameInZip": "mn_deer_permit_areas.shp", 5 | "species": [ 6 | "Deer" 7 | ], 8 | "attribution": "Minnesota Department of Natural Resources", 9 | "properties": { 10 | "id": "DPA", 11 | "name": "DPA" 12 | }, 13 | "country": "US", 14 | "state": "MN", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gisdata.mn.gov/dataset/bdry-deer-permit-areas" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/MN/furbearer-farm-forest-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MN Furbearer Farmland and Forest Zones", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_farmland_forest_zones/shp_bdry_farmland_forest_zones.zip", 4 | "filenameInZip" : "Farmland_Forest_Zones.shp", 5 | "species": [ 6 | "badger", 7 | "beaver", 8 | "fox", 9 | "mink", 10 | "opossum", 11 | "otter", 12 | "raccoon" 13 | ], 14 | "attribution": "Minnesota Department of Natural Resources", 15 | "properties": { 16 | "id": "Name", 17 | "name": "Name" 18 | }, 19 | "country": "US", 20 | "state": "MN", 21 | "filetype": "shp", 22 | "year": "2016", 23 | "source": "https://gisdata.mn.gov/dataset/bdry-farmland-forest-zones" 24 | } -------------------------------------------------------------------------------- /sources/US/MN/furbearer-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MN Furbearer Zones", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_north_south_furbearer_zones/shp_bdry_north_south_furbearer_zones.zip", 4 | "filenameInZip" : "North_South_Furbearer_Zones.shp", 5 | "species": [ 6 | "badger", 7 | "beaver", 8 | "fox", 9 | "mink", 10 | "opossum", 11 | "otter", 12 | "raccoon" 13 | ], 14 | "attribution": "Minnesota Department of Natural Resources", 15 | "properties": { 16 | "id": "Name", 17 | "name": "Name" 18 | }, 19 | "country": "US", 20 | "state": "MN", 21 | "filetype": "shp", 22 | "year": "2016", 23 | "source": "https://gisdata.mn.gov/dataset/bdry-north-south-furbearer-zones" 24 | } -------------------------------------------------------------------------------- /sources/US/MN/migratorywaterfowl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN Waterfowl Zones", 3 | "url": "https://s3.amazonaws.com/data.openbounds.org/USAHunting/manual-downloads/mn-waterfowlhuntzonesgisdata.zip", 4 | "species": [ 5 | "duck", 6 | "coot", 7 | "goose" 8 | ], 9 | "attribution": "Minnesota Department of Natural Resources", 10 | "properties": { 11 | "id": "ZoneName", 12 | "name": "ZoneName" 13 | }, 14 | "country": "US", 15 | "state": "MN", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "http://www.dnr.state.mn.us/regulations/hunting/index.html" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/MN/natural-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN Scientific and Natural Areas", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_scientific_and_nat_areas/shp_bdry_scientific_and_nat_areas.zip", 4 | "filenameInZip": "scientific_and_natural_area_boundaries.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Minnesota Department of Natural Resources", 9 | "properties": { 10 | "id": "NAME", 11 | "name": "NAME" 12 | }, 13 | "country": "US", 14 | "state": "MN", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gisdata.mn.gov/dataset/bdry-scientific-and-nat-areas" 18 | } -------------------------------------------------------------------------------- /sources/US/MN/ruffledgrouse.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MN Ruffed Grouse Management Areas", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_ruffed_grouse_mgmt_areas/shp_bdry_ruffed_grouse_mgmt_areas.zip", 4 | "filenameInZip" : "ruffed_grouse_mgmt_areas.shp", 5 | "species": [ 6 | "Ruffed Grouse" 7 | ], 8 | "attribution": "Minnesota Department of Natural Resources", 9 | "properties": { 10 | "id": "UNIT_NAME", 11 | "name": "UNIT_NAME" 12 | }, 13 | "country": "US", 14 | "state": "MN", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gisdata.mn.gov/dataset/bdry-ruffed-grouse-mgmt-areas" 18 | } -------------------------------------------------------------------------------- /sources/US/MN/turkey.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN Turkey Permit Areas", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_turkey_permit_areas/shp_bdry_turkey_permit_areas.zip", 4 | "filenameInZip": "turkey_permit_areas.shp", 5 | "species": [ 6 | "Turkey" 7 | ], 8 | "attribution": "Minnesota Department of Natural Resources", 9 | "properties": { 10 | "id": "TPA", 11 | "name" : "TPA" 12 | }, 13 | "country": "US", 14 | "state": "MN", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gisdata.mn.gov/dataset/bdry-turkey-permit-areas" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/MN/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN Walk-In Access Sites 2017", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_dnr_walk_in_access_sites/shp_bdry_dnr_walk_in_access_sites.zip", 4 | "filenameInZip": "walk_in_access_sites.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Minnesota Department of Natural Resources", 9 | "properties": { 10 | "id": "MAP_TITLE", 11 | "name": "MAP_TITLE" 12 | }, 13 | "country": "US", 14 | "state": "MN", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gisdata.mn.gov/dataset/bdry-dnr-walk-in-access-sites" 18 | } -------------------------------------------------------------------------------- /sources/US/MN/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN WIA Areas - 2018", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_dnr_walk_in_access_sites/shp_bdry_dnr_walk_in_access_sites.zip", 4 | "filenameInZip": "walk_in_access_sites.shp", 5 | "description": "Walk-In Access Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Minnesota Department of Natural Resources", 10 | "properties": { 11 | "id": "GPSMapID", 12 | "name": "MAP_TITLE" 13 | }, 14 | "country": "US", 15 | "state": "MN", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://gisdata.mn.gov/dataset/bdry-dnr-walk-in-access-sites" 19 | } -------------------------------------------------------------------------------- /sources/US/MN/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN WMAs", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_dnr_wildlife_mgmt_areas_pub/shp_bdry_dnr_wildlife_mgmt_areas_pub.zip", 4 | "filenameInZip": "dnr_wildlife_management_area_boundaries_publicly_accessible.shp", 5 | "description": "Wildlife Management Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Minnesota Department of Natural Resources", 10 | "properties": { 11 | "id": "name", 12 | "name": "name" 13 | }, 14 | "country": "US", 15 | "state": "MN", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "https://gisdata.mn.gov/dataset/bdry-dnr-wildlife-mgmt-areas-pub" 19 | } -------------------------------------------------------------------------------- /sources/US/MN/wildlife-refuges.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MN Wildlife Refuges", 3 | "url": "ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/bdry_wildlife_refuge_inventory/shp_bdry_wildlife_refuge_inventory.zip", 4 | "filenameInZip": "wildlife_refuge_inventory.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Minnesota Department of Natural Resources", 9 | "properties": { 10 | "id": "Refuge_Nam", 11 | "name": "Refuge_Nam" 12 | }, 13 | "country": "US", 14 | "state": "MN", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gisdata.mn.gov/dataset/bdry-wildlife-refuge-inventory" 18 | } -------------------------------------------------------------------------------- /sources/US/MO/conservation-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MO Conservation Areas Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/mo-conservations-areas.zip", 4 | "filenameInZip": "MO-MDC_Lands.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Missouri Department of Conservation", 9 | "properties": { 10 | "id": "Area_Name", 11 | "name": "Area_Name" 12 | }, 13 | "country": "US", 14 | "state": "MO", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://mdcgis.maps.arcgis.com/apps/Viewer/index.html?appid=90fa4db152ec4190bcc1dee12a524538 & MDC Lands layer filtered against all hunting activities search results from: http://mdc7.mdc.mo.gov/applications/moatlas/AdvancedSearch.aspx" 18 | } -------------------------------------------------------------------------------- /sources/US/MO/dove-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MO Dove Hunting Fields 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/mo-dove-hunting-2017.zip", 4 | "filenameInZip": "MO-dove2017.shp", 5 | "species": [ 6 | "dove" 7 | ], 8 | "attribution": "Missouri Department of Conservation", 9 | "properties": { 10 | "id": "Area_Name", 11 | "name": "Type" 12 | }, 13 | "country": "US", 14 | "state": "MO", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://mdcgis.maps.arcgis.com/home/index.html & select 2017 MDC Dove Hunting" 18 | } -------------------------------------------------------------------------------- /sources/US/MO/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MO MRAP Hunting Areas 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/mo-outdoor-rec-access-2017.zip", 4 | "filenameInZip": "MO-MRAP.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Missouri Department of Conservation", 9 | "properties": { 10 | "id": "Area_Name", 11 | "name": "Area_Name" 12 | }, 13 | "country": "US", 14 | "state": "MO", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://mdcgis.maps.arcgis.com/home/index.html & select Missouri Outdoor Recreational Access Program" 18 | } -------------------------------------------------------------------------------- /sources/US/MO/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "MO MRAP Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "MO-MRAP Lands.shp", 5 | "description": "Missouri Outdoor Recreational Access Program Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Missouri Department of Conservation", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "Area_Name" 13 | }, 14 | "country": "US", 15 | "state": "MO", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://gisblue.mdc.mo.gov/arcgis/rest/services/Boundaries/MDC_Administrative_Boundaries/MapServer/" 19 | } -------------------------------------------------------------------------------- /sources/US/MT/antelope-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Antelope Districts 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "antelope" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data.mtfwp.opendata.arcgis.com/datasets/1a35c4bbdfdc411ca8758f45d861b583_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/antelope-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Antelope Districts 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "antelope" 13 | ], 14 | "filetype": "shp", 15 | "url": "https://opendata.arcgis.com/datasets/1a35c4bbdfdc411ca8758f45d861b583_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/big-game-restricted-areas-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Big Game Hunting District Restricted Areas 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "PORTIONNAM", 9 | "name": "PORTIONNAM" 10 | }, 11 | "species": [ 12 | "all" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data-mtfwp.opendata.arcgis.com/datasets/f94d4378d75d40a38844d0a7dfc07529_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/bighornsheep-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Bighorn Sheep Districts 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "bighorn sheep" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data.mtfwp.opendata.arcgis.com/datasets/1903388828974d68a38247db93759e52_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/bighornsheep-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Bighorn Sheep Districts 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "bighorn sheep" 13 | ], 14 | "filetype": "shp", 15 | "url": "https://opendata.arcgis.com/datasets/1903388828974d68a38247db93759e52_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/bison-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Bison Districts 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "bison" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data.mtfwp.opendata.arcgis.com/datasets/787f82f4fb434338acc39a7a8d4483c7_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/bison-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Bison Districts 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "bison" 13 | ], 14 | "filetype": "shp", 15 | "url": "https://opendata.arcgis.com/datasets/787f82f4fb434338acc39a7a8d4483c7_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/blackbear-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Black Bear Districts 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "black bear" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data.mtfwp.opendata.arcgis.com/datasets/36c34df6f02249169bad33f2e4e54b56_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/blackbear-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Black Bear Districts 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "black bear" 13 | ], 14 | "filetype": "shp", 15 | "url": "https://opendata.arcgis.com/datasets/36c34df6f02249169bad33f2e4e54b56_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/block-management-areas-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Block Mgmt Areas 2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2017", 7 | "properties": { 8 | "id": "BMANUM", 9 | "name": "BMANAME", 10 | "url": "ACCESSINFO" 11 | }, 12 | "species": [ 13 | "all" 14 | ], 15 | "filetype": "shp", 16 | "url": "http://data-mtfwp.opendata.arcgis.com/datasets/e3fe3af948ff43bca8ce1928fff37ede_0.zip" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/MT/block-management-areas-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Block Mgmt Areas 2018", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018", 7 | "properties": { 8 | "id": "OBJECTID", 9 | "name": "BMANAME", 10 | "url": "ACCESSINFO" 11 | }, 12 | "species": [ 13 | "all" 14 | ], 15 | "filetype": "shp", 16 | "url": "https://opendata.arcgis.com/datasets/c27de035320b4921b0fd981f9f5d8561_0.zip", 17 | "source": "https://gis-mtfwp.opendata.arcgis.com/datasets/block-management-bma-boundaries-2018-hunting-season" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/MT/deerelklion-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Deer Elk and Lion Districts 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "mule deer", 13 | "white tail deer", 14 | "elk", 15 | "mountain lion" 16 | ], 17 | "filetype": "shp", 18 | "url": "http://data.mtfwp.opendata.arcgis.com/datasets/24ce083cfd6b47988523576fbc0219f6_0.zip" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/MT/deerelklion-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Deer Elk and Lion Districts 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "mule deer", 13 | "white tail deer", 14 | "elk", 15 | "mountain lion" 16 | ], 17 | "filetype": "shp", 18 | "url": "https://opendata.arcgis.com/datasets/d148ae5ae2374132b53b438b6c03264f_0.zip" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/MT/moose-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Moose Districts 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "moose" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data.mtfwp.opendata.arcgis.com/datasets/8a0803c2bd694d0b9188ac8649291819_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/moose-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Moose Districts 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "moose" 13 | ], 14 | "filetype": "shp", 15 | "url": "https://opendata.arcgis.com/datasets/8a0803c2bd694d0b9188ac8649291819_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/mountaingoat-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Mountain Goat Districts 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "mountain goat" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data.mtfwp.opendata.arcgis.com/datasets/4ca7724705e34edfa0bd23396909d369_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/mountaingoat-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Mountain Goat Districts 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "mountain goat" 13 | ], 14 | "filetype": "shp", 15 | "url": "https://opendata.arcgis.com/datasets/4ca7724705e34edfa0bd23396909d369_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/turkey-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Turkey Districts 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "turkey" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data.mtfwp.opendata.arcgis.com/datasets/a063d01c1b8d4a79a594348dd04e3245_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/turkey-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Turkey Districts 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME" 10 | }, 11 | "species": [ 12 | "turkey" 13 | ], 14 | "filetype": "shp", 15 | "url": "https://opendata.arcgis.com/datasets/a063d01c1b8d4a79a594348dd04e3245_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/upland-game-bird-enhancement-program-access-areas-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Upland Game Bird Enhancement Program Access Area Boundaries 2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2017", 7 | "properties": { 8 | "id": "PROJ_ID", 9 | "name": "MAP_LABEL" 10 | }, 11 | "species": [ 12 | "Upland Game Birds" 13 | ], 14 | "filetype": "shp", 15 | "url": "http://data-mtfwp.opendata.arcgis.com/datasets/e7196b220e034420b8a405d620e21abd_0.zip" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/MT/upland-game-bird-enhancement-program-access-areas-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT UGBEP Access Areas 2018", 3 | "country": "US", 4 | "state": "MT", 5 | "description": "Upland Game Bird Enhancement Program Access Areas", 6 | "attribution": "Montana Fish, Wildlife, & Parks", 7 | "year": "2018", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Project_ID", 11 | "url": "PDF_MAP" 12 | }, 13 | "species": [ 14 | "Upland Game Birds" 15 | ], 16 | "filetype": "shp", 17 | "url": "https://opendata.arcgis.com/datasets/83c247c0c67a40d6a5fa2d26f4d76251_0.zip" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/MT/wma.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT WMAs", 3 | "country": "US", 4 | "state": "MT", 5 | "description": "Wildlife Management Areas", 6 | "attribution": "Montana Fish, Wildlife, & Parks", 7 | "year": "2018", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "NAME", 11 | "url": "WEB_PAGE" 12 | }, 13 | "species": [ 14 | "all" 15 | ], 16 | "filetype": "shp", 17 | "url": "https://opendata.arcgis.com/datasets/a832efc4e3de4f07a60442ad7327fd74_0.zip" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/MT/wolf-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Gray Wolf Management Units 2016-2017", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2016,2017", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME", 10 | "url": "WEBPAGE" 11 | }, 12 | "species": [ 13 | "wolf" 14 | ], 15 | "filetype": "shp", 16 | "url": "http://data-mtfwp.opendata.arcgis.com/datasets/f2b9be818b73400d81ef616e54d48c20_0.zip" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/MT/wolf-2018-2019.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MT Gray Wolf Mgmt Units 2018-2019", 3 | "country": "US", 4 | "state": "MT", 5 | "attribution": "Montana Fish, Wildlife, & Parks", 6 | "year": "2018,2019", 7 | "properties": { 8 | "id": "DISTRICT", 9 | "name": "NAME", 10 | "url": "WEBPAGE" 11 | }, 12 | "species": [ 13 | "wolf" 14 | ], 15 | "filetype": "shp", 16 | "url": "https://opendata.arcgis.com/datasets/f2b9be818b73400d81ef616e54d48c20_0.zip" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/NC/all.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NC Game Lands", 3 | "url": "http://data.nconemap.gov/downloads/vector/gml.zip", 4 | "filenameInZip": "gml.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "North Carolina Wildlife Resources Commission", 9 | "properties": { 10 | "id": "GML_HAB", 11 | "name": "GML_HAB" 12 | }, 13 | "country": "US", 14 | "state": "NC", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://data.nconemap.com/geoportal/catalog/main/home.page" 18 | } 19 | 20 | -------------------------------------------------------------------------------- /sources/US/ND/bighorn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Bighorn Sheep Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-big-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_BIGHORNSHEEP_polygon.shp", 5 | "species": [ 6 | "bighorn sheep" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/bighorn-sheep-hunting-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/bobcat.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Bobcat Harvest Zone", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_BOBCAT_polygon.shp", 5 | "species": [ 6 | "bobcat" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_TYPE" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/bobcat-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Deer Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-big-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_DEER_polygon.shp", 5 | "species": [ 6 | "deer" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/deer-hunting-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/elk.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Elk Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-big-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_ELK_polygon.shp", 5 | "species": [ 6 | "elk" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/elk-hunting-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/fallturkey.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Turkey - Fall Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_TURKEYFALL_polygon.shp", 5 | "species": [ 6 | "turkey" 7 | ], 8 | "attribution": "North Dakota Game and Fish Department", 9 | "properties": { 10 | "id": "OBJECTID_1", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/fall-turkey-hunting-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/fisher.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Fisher Harvest Zone", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_FISHER_polygon.shp", 5 | "species": [ 6 | "fisher" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_TYPE" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/fisher-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/goose.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Missouri River Canada Goose Zone", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_GOOSE_polygon.shp", 5 | "species": [ 6 | "Canada goose" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_TYPE" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/goose-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/grouse-ruffed.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Ruffed Grouse Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_RUFFEDGROUSE_polygon.shp", 5 | "species": [ 6 | "ruffed grouse" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_TYPE" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/ruffed-grouse-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/grouse-sharptail.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Sharp-Tailed Grouse Unit", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_SHARPTAILEDGROUSE_polygon.shp", 5 | "species": [ 6 | "sharp-tail grouse" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "Unit_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/sharptailed-grouse-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/moose.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Moose Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-big-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_MOOSE_polygon.shp", 5 | "species": [ 6 | "moose" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/moose-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/mtn-lion.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Mountain Lion Management Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-big-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_MOUNTAINLION_polygon.shp", 5 | "species": [ 6 | "mountain lion" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/mountain-lion-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/non-resident-waterfowl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Non-Resident Waterfowl Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_NONRESIDENTWATERFOWL_polygon.shp", 5 | "species": [ 6 | "ducks", 7 | "coots", 8 | "mergansers" 9 | ], 10 | "attribution": "North Dakota Game & Fish Dept.", 11 | "properties": { 12 | "id": "OBJECTID", 13 | "name": "UNIT_ID" 14 | }, 15 | "country": "US", 16 | "state": "ND", 17 | "filetype": "shp", 18 | "year": "2017", 19 | "source": "https://gishubdata.nd.gov/dataset/nonresident-waterfowl-units" 20 | } -------------------------------------------------------------------------------- /sources/US/ND/pronghorn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Pronghorn Antelope Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-big-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_PRONGHORN_polygon.shp", 5 | "species": [ 6 | "pronghorn antelope" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/pronghorn-hunting-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/snadhill-crane.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Sandhill Crane Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_SANDHILLCRANE_polygon.shp", 5 | "species": [ 6 | "sandhill crane" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/sandhill-crane-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/turkey-spring.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Turkey - Spring Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_TURKEYSPRING_polygon.shp", 5 | "species": [ 6 | "turkey" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNIT_ID" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/spring-turkey-hunting-units" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND PLOTS Areas 2017-2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-walk-in-2017-2018.zip", 4 | "filenameInZip": "NDGAMEFISH_PLOTSLANDSVW_polygon.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "North Dakota Game & Fish Dept.", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GAIA_NAME" 12 | }, 13 | "country": "US", 14 | "state": "ND", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gishubdata.nd.gov/dataset/plots-land" 18 | } -------------------------------------------------------------------------------- /sources/US/ND/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND PLOTS Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "NDGAMEFISH.PLOTSLANDSVW_polygon.shp", 5 | "description": "Private Land Open To Sportsmen Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "North Dakota Game & Fish Dept.", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "UNIT_TYPE" 13 | }, 14 | "country": "US", 15 | "state": "ND", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://gishubdata.nd.gov/dataset/plots-land" 19 | } -------------------------------------------------------------------------------- /sources/US/ND/waterfowl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND Waterfowl Hunting Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-small-game-units.zip", 4 | "filenameInZip": "NDGAMEFISH_UNIT_HUNTING_polygon.shp", 5 | "species": [ 6 | "ducks", 7 | "coots", 8 | "mergansers" 9 | ], 10 | "attribution": "North Dakota Game & Fish Dept.", 11 | "properties": { 12 | "id": "OBJECTID", 13 | "name": "UNIT_TYPE" 14 | }, 15 | "country": "US", 16 | "state": "ND", 17 | "filetype": "shp", 18 | "year": "2017", 19 | "source": "https://gishubdata.nd.gov/dataset/hunting-units" 20 | } -------------------------------------------------------------------------------- /sources/US/ND/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ND WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/nd-wildlife-areas.zip", 4 | "filenameInZip": "NDGAMEFISH_WMA_LANDSVW_polygon.shp", 5 | "description": "Wildlife Management Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "North Dakota Game & Fish Dept.", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "UNIT_NAME" 13 | }, 14 | "country": "US", 15 | "state": "ND", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "https://gishubdata.nd.gov/dataset/wildlife-management-areas" 19 | } -------------------------------------------------------------------------------- /sources/US/NE/antelope-firearm.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Antelope Firearm Units", 3 | "url": "https://opendata.arcgis.com/datasets/649e2c0d2d924a77863cb97523dff97f_25.zip", 4 | "species": [ 5 | "Antelope" 6 | ], 7 | "attribution": "Nebraska Game and Parks Commission", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "UnitName" 11 | }, 12 | "country": "US", 13 | "state": "NE", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://data.outdoornebraska.gov/datasets/antelope-firearm-units" 17 | } -------------------------------------------------------------------------------- /sources/US/NE/antelope-muzzleloader.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Antelope Muzzleloader Units", 3 | "url": "https://opendata.arcgis.com/datasets/1574e7c06ef94696ac7e0e32fb881cc1_23.zip", 4 | "species": [ 5 | "Antelope" 6 | ], 7 | "attribution": "Nebraska Game and Parks Commission", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "UnitName" 11 | }, 12 | "country": "US", 13 | "state": "NE", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://data.outdoornebraska.gov/datasets/antelope-muzzleloader-units" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/NE/bighorn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Bighorn Sheep Unit", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ne-bighorn-and-deer-river-antlerless-data.zip", 4 | "filenameInZip": "Bighorn_Sheep_Unit.shp", 5 | "species": [ 6 | "Bighorn Sheep" 7 | ], 8 | "attribution": "Nebraska Game and Parks Commission", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UnitName" 12 | }, 13 | "country": "US", 14 | "state": "NE", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://data.outdoornebraska.gov/datasets/bighorn-sheep-unit & edit polygon name" 18 | } -------------------------------------------------------------------------------- /sources/US/NE/darkgoose.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Waterfowl - Dark Goose Units", 3 | "url": "https://opendata.arcgis.com/datasets/4299279b50334a1e9d4ae257650055c0_1.zip", 4 | "species": [ 5 | "Canada Goose", 6 | "Brant Goose" 7 | ], 8 | "attribution": "Nebraska Game and Parks Commission", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "Zone" 12 | }, 13 | "country": "US", 14 | "state": "NE", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://data.outdoornebraska.gov/datasets/waterfowl-dark-goose-units" 18 | } -------------------------------------------------------------------------------- /sources/US/NE/deer-antlerless.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Deer - Antlerless Only Season Choice Units", 3 | "url": "https://opendata.arcgis.com/datasets/3be033202e20411fa20251c7a08a1964_19.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "Nebraska Game and Parks Commission", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "UnitName" 11 | }, 12 | "country": "US", 13 | "state": "NE", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://data.outdoornebraska.gov/datasets/deer-antlerless-only-season-choice-units" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/NE/deer-firearm.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Deer Firearm Units", 3 | "url": "https://opendata.arcgis.com/datasets/630a395b4c724867a3cf4536b57c7988_17.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "Nebraska Game and Parks Commission", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "UnitName" 11 | }, 12 | "country": "US", 13 | "state": "NE", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://data.outdoornebraska.gov/datasets/deer-firearm-units" 17 | } -------------------------------------------------------------------------------- /sources/US/NE/deer-river-antlerless.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Deer - River Antlerless Private Land Only Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ne-bighorn-and-deer-river-antlerless-data.zip", 4 | "filenameInZip": "Deer_River_Antlerless_Units.shp", 5 | "species": [ 6 | "Deer" 7 | ], 8 | "attribution": "Nebraska Game and Parks Commission", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UnitName" 12 | }, 13 | "country": "US", 14 | "state": "NE", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://data.outdoornebraska.gov/datasets/deer-river-antlerless-units & edit polygon name" 18 | } -------------------------------------------------------------------------------- /sources/US/NE/duck.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Waterfowl - Duck Zones", 3 | "url": "https://opendata.arcgis.com/datasets/90c0fcd6695342a78593a0ae8d77bcaf_3.zip", 4 | "species": [ 5 | "mallard", 6 | "wood duck", 7 | "scaup", 8 | "redhead", 9 | "pintail", 10 | "canvasback", 11 | "merganser", 12 | "coot" 13 | ], 14 | "attribution": "Nebraska Game and Parks Commission", 15 | "properties": { 16 | "id": "OBJECTID", 17 | "name": "Zone" 18 | }, 19 | "country": "US", 20 | "state": "NE", 21 | "filetype": "shp", 22 | "year": "2017", 23 | "source": "http://data.outdoornebraska.gov/datasets/waterfowl-duck-zones" 24 | } -------------------------------------------------------------------------------- /sources/US/NE/elk.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Elk Units", 3 | "url": "https://opendata.arcgis.com/datasets/2a8faeff80c241c4ab47ec70520d2c2f_11.zip", 4 | "species": [ 5 | "Elk" 6 | ], 7 | "attribution": "Nebraska Game and Parks Commission", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "UnitName" 11 | }, 12 | "country": "US", 13 | "state": "NE", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://data.outdoornebraska.gov/datasets/elk-units" 17 | } -------------------------------------------------------------------------------- /sources/US/NE/goose.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Waterfowl - Light Goose Conservation Order Zones", 3 | "url": "https://opendata.arcgis.com/datasets/fab556a9a51c4ac385544cbb8830839d_5.zip", 4 | "species": [ 5 | "specklebelly goose", 6 | "snow goose", 7 | "Blue goose", 8 | "Ross's goose" 9 | ], 10 | "attribution": "Nebraska Game and Parks Commission", 11 | "properties": { 12 | "id": "OBJECTID", 13 | "name": "Zone" 14 | }, 15 | "country": "US", 16 | "state": "NE", 17 | "filetype": "shp", 18 | "year": "2017", 19 | "source": "http://data.outdoornebraska.gov/datasets/waterfowl-light-goose-conservation-order-zones" 20 | } -------------------------------------------------------------------------------- /sources/US/NE/muledeer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Mule Deer Conservation Areas & Protection Zone", 3 | "url": "https://opendata.arcgis.com/datasets/8f376a2fe9b248e491b1011a70cdc5e7_13.zip", 4 | "species": [ 5 | "Mule Deer" 6 | ], 7 | "attribution": "Nebraska Game and Parks Commission", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "UnitName" 11 | }, 12 | "country": "US", 13 | "state": "NE", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://data.outdoornebraska.gov/datasets/mule-deer-conservation-and-protection-zones" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/NE/public-hunting-other.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Federal & Conservation Group Lands Open for Hunting", 3 | "url": "https://opendata.arcgis.com/datasets/ee0b86b85bda40e1b2311661896b15df_63.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Nebraska Game and Parks", 8 | "properties": { 9 | "id": "GIS_WEBSDE", 10 | "name": "GIS_WEBS_9" 11 | }, 12 | "country": "US", 13 | "state": "NE", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://data.outdoornebraska.gov/datasets/ee0b86b85bda40e1b2311661896b15df_63" 17 | } -------------------------------------------------------------------------------- /sources/US/NE/public-hunting-state.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE WMAs, WPAs & State Recreations Areas", 3 | "url": "https://opendata.arcgis.com/datasets/bbb12fbab3154b19803715b6ee561939_35.zip", 4 | "description": "Wildlife Management Areas, Waterfowl Production Areas, & State Recreation Areas open for hunting", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Nebraska Game and Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "HuntingA_2" 12 | }, 13 | "country": "US", 14 | "state": "NE", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://data.outdoornebraska.gov/datasets/bbb12fbab3154b19803715b6ee561939_35" 18 | } -------------------------------------------------------------------------------- /sources/US/NE/teal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Waterfowl - Teal Zones", 3 | "url": "https://opendata.arcgis.com/datasets/fd84a033938e41f3811a4ea89c5c6f68_7.zip", 4 | "species": [ 5 | "Teal" 6 | ], 7 | "attribution": "Nebraska Game and Parks Commission", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Zone" 11 | }, 12 | "country": "US", 13 | "state": "NE", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://data.outdoornebraska.gov/datasets/waterfowl-teal-zones" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/NE/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE Open Fields and Waters Areas 2017-2018", 3 | "url": "https://opendata.arcgis.com/datasets/196881f44f5d4abeae36f51e3898195d_40.zip", 4 | "filenameInZip": "Open_Fields_and_Waters_Areas.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Nebraska Game and Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "OFWProgram" 12 | }, 13 | "country": "US", 14 | "state": "NE", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://data.outdoornebraska.gov/datasets/open-fields-and-waters-areas/data" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/NE/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NE OFW Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "NE-Open Fields and Waters Contracts.shp", 5 | "description": "Open Fields and Waters Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Nebraska Game and Parks", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "OFWProgram" 13 | }, 14 | "country": "US", 15 | "state": "NE", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://maps.outdoornebraska.gov/arcgis/rest/services/Programs/PublicAccessAtlas/MapServer/" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/NH/all.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NH WMUs", 3 | "url": "http://www.wildlife.state.nh.us/maps/documents/NHFG_WMU.zip", 4 | "description": "Wildlife Management Units", 5 | "species": [ 6 | "All" 7 | ], 8 | "attribution": "New Hampshire Fish and Game", 9 | "properties": { 10 | "id": "WMU", 11 | "name": "WMU" 12 | }, 13 | "country": "US", 14 | "state": "NH", 15 | "filetype": "shp" 16 | } -------------------------------------------------------------------------------- /sources/US/NJ/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"NJ Deer Management Zones", 3 | "url": "http://www.nj.gov/dep/gis/digidownload/zips/statewide/Envr_admin_deer_zone.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "New Jersey Division of Fish & Wildlife", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "DMZ" 11 | }, 12 | "country": "US", 13 | "state": "NJ", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://njogis-newjersey.opendata.arcgis.com/datasets/new-jersey-deer-management-zones" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/NJ/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"NJ WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/NJ-WMAs.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "New Jersey Division of Fish & Wildlife", 9 | "properties": { 10 | "id": "MAP_LABEL", 11 | "name": "MAP_LABEL" 12 | }, 13 | "country": "US", 14 | "state": "NJ", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://njogis-newjersey.opendata.arcgis.com/datasets/state-open-space & filtered to only include WMAs then use the SAGA vector polygon dissolve (by attribute) tool in QGIS" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/NM/deer-elk-pronghornantelope-bighornsheep-barbarysheep-turkey-bear-cougar-persianibex-oryx-javelina.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NM GMUs", 3 | "url": "http://www.wildlife.state.nm.us/download/hunting/maps/NM_GMU_Shapefile-201606.zip", 4 | "description": "Game Management Units", 5 | "species": [ 6 | "deer", 7 | "elk", 8 | "pronghorn antelope", 9 | "bighorn sheep", 10 | "Barbary sheep", 11 | "turkey", 12 | "bear", 13 | "cougar", 14 | "Persian ibex", 15 | "oryx", 16 | "javelina" 17 | ], 18 | "attribution": "New Mexico Department of Game and Fish", 19 | "properties": { 20 | "id": "GMU", 21 | "name": "GMU" 22 | }, 23 | "country": "US", 24 | "state": "NM", 25 | "filetype": "shp", 26 | "year": "2016", 27 | "source": "http://www.wildlife.state.nm.us/hunting/maps/big-game-unit-maps-pdfs/" 28 | } 29 | -------------------------------------------------------------------------------- /sources/US/NM/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NM Open Gate Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "NM-Open_Gate_Properties.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "New Mexico Department of Game and Fish", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "NAME" 12 | }, 13 | "country": "US", 14 | "state": "NM", 15 | "filetype": "shp", 16 | "year": "2018", 17 | "source": "https://services2.arcgis.com/CjbW1bVhK4dB3WOa/ArcGIS/rest/services/NM_Open_Gate/FeatureServer/" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/NV/all.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NV GMUs", 3 | "url": "http://gis.ndow.nv.gov/ndowdata/data/NDOW_GameManagementUnits_2016.zip", 4 | "description": "Game Management Units", 5 | "species": [ 6 | "All" 7 | ], 8 | "attribution": "Nevada Department of Wildlife", 9 | "properties": { 10 | "id": "HUNTUNIT", 11 | "name": "HUNTUNIT" 12 | }, 13 | "country": "US", 14 | "state": "NV", 15 | "filetype": "shp", 16 | "year": "2016", 17 | "source": "http://gis.ndow.nv.gov/ndowdata/" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/NV/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NV WMAs", 3 | "url": "http://gis.ndow.nv.gov/ndowdata/data/NDOW_WildlifeManagementAreas_2016.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "All" 7 | ], 8 | "attribution": "Nevada Department of Wildlife", 9 | "properties": { 10 | "id": "WMA_NAME", 11 | "name": "WMA_NAME" 12 | }, 13 | "country": "US", 14 | "state": "NV", 15 | "filetype": "shp", 16 | "year": "2016", 17 | "source": "http://gis.ndow.nv.gov/ndowdata/" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/NY/easements.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NY Conservation Easements Open for Hunting 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ny-easements-2017.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "New York Department of Environmental Conservation", 8 | "properties": { 9 | "id": "FACILITY", 10 | "name": "FACILITY" 11 | }, 12 | "country": "US", 13 | "state": "NY", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://www.dec.ny.gov/outdoor/45415.html & Conservation Easement layer filtered against http://www.dec.ny.gov/lands/41156.html" 17 | } -------------------------------------------------------------------------------- /sources/US/NY/forest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NY State Forests Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ny-stateforest.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "New York Department of Environmental Conservation", 8 | "properties": { 9 | "id": "FACILITY", 10 | "name": "FACILITY" 11 | }, 12 | "country": "US", 13 | "state": "NY", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://www.dec.ny.gov/outdoor/45415.html & DEC Lands layer filtered against http://www.dec.ny.gov/lands/34531.html" 17 | } -------------------------------------------------------------------------------- /sources/US/NY/goose.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NY Canada Goose Hunting Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/NY-goose.zip", 4 | "filenameInZip": "NY-goose.shp", 5 | "species": [ 6 | "Canada Geese" 7 | ], 8 | "attribution": "New York Department of Environmental Conservation", 9 | "properties": { 10 | "id": "GOOSEHUNT", 11 | "name": "GOOSEHUNT" 12 | }, 13 | "country": "US", 14 | "state": "NY", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.dec.ny.gov/outdoor/45415.html & Goose Hunting Area layer" 18 | } -------------------------------------------------------------------------------- /sources/US/NY/parks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NY State Parks Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ny-stateparks.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "New York Department of Environmental Conservation", 8 | "properties": { 9 | "id": "NAME", 10 | "name": "NAME" 11 | }, 12 | "country": "US", 13 | "state": "NY", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://www.dec.ny.gov/outdoor/45415.html & State Parks layer filtered against http://www.dec.ny.gov/outdoor/88898.html" 17 | } -------------------------------------------------------------------------------- /sources/US/NY/waterfowl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NY Waterfowl Hunting Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ny-waterfowlzones.zip", 4 | "species": [ 5 | "Ducks", 6 | "Coots", 7 | "Mergansers", 8 | "Snow Geese", 9 | "Brant" 10 | ], 11 | "attribution": "New York Department of Environmental Conservation", 12 | "properties": { 13 | "id": "Name", 14 | "name": "Name" 15 | }, 16 | "country": "US", 17 | "state": "NY", 18 | "filetype": "shp", 19 | "year": "2017", 20 | "source": "http://www.dec.ny.gov/pubs/103457.html" 21 | } -------------------------------------------------------------------------------- /sources/US/NY/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NY WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ny-wma.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "New York Department of Environmental Conservation", 9 | "properties": { 10 | "id": "FACILITY", 11 | "name": "FACILITY" 12 | }, 13 | "country": "US", 14 | "state": "NY", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.dec.ny.gov/outdoor/45415.html & DEC Lands layer with Category = WILDLIFE MANAGEMENT" 18 | } -------------------------------------------------------------------------------- /sources/US/NY/wildlife-units.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NY WMUs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/NY-WMUs.zip", 4 | "description": "Wildlife Management Units", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "New York Department of Environmental Conservation", 9 | "properties": { 10 | "id": "UNIT", 11 | "name": "UNIT" 12 | }, 13 | "country": "US", 14 | "state": "NY", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.dec.ny.gov/outdoor/45415.html & Wildlife Management Unit layer" 18 | } -------------------------------------------------------------------------------- /sources/US/OH/forests.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OH State Forests Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/oh-stateforests.zip", 4 | "filenameInZip": "OH-Forest7.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Ohio Dept. of Natural Resources Division of Wildlife", 9 | "properties": { 10 | "id": "Name_Label", 11 | "name": "Name_Label" 12 | }, 13 | "country": "US", 14 | "state": "OH", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.ohiodnr.gov/MapViewer/?config=ODNRLands & Lands&Facilities layers filtered against http://wildlife.ohiodnr.gov/portals/wildlife/pdfs/public%20areas/Public%20hunting%20areas.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/OH/parks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OH State Parks Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/oh-stateparks.zip", 4 | "filenameInZip": "OH-StateParks.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Ohio Dept. of Natural Resources Division of Wildlife", 9 | "properties": { 10 | "id": "Name_Label", 11 | "name": "Name_Label" 12 | }, 13 | "country": "US", 14 | "state": "OH", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.ohiodnr.gov/MapViewer/?config=ODNRLands & Lands&Facilities layers filtered against http://wildlife.ohiodnr.gov/portals/wildlife/pdfs/public%20areas/Public%20hunting%20areas.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/OH/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OH Wildlife Areas Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/oh-wildlifeareas.zip", 4 | "filenameInZip": "OH-Wildlife8.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Ohio Dept. of Natural Resources Division of Wildlife", 9 | "properties": { 10 | "id": "Name_Label", 11 | "name": "Name_Label" 12 | }, 13 | "country": "US", 14 | "state": "OH", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.ohiodnr.gov/MapViewer/?config=ODNRLands & Lands&Facilities layers filtered against http://wildlife.ohiodnr.gov/portals/wildlife/pdfs/public%20areas/Public%20hunting%20areas.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/OK/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OK Land Access Program 2017", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/OK-olap2017.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Oklahoma Department of Wildlife Conservation", 8 | "properties": { 9 | "id": "OLAPID", 10 | "name": "OLAPID" 11 | }, 12 | "country": "US", 13 | "state": "OK", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://www.wildlifedepartment.com/olap & http://odwc.maps.arcgis.com/apps/webappviewer/index.html?id=27811f67fe294f08aae8f73d405f3c24" 17 | } -------------------------------------------------------------------------------- /sources/US/OK/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OK OLAP Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "ok-walk-in-july2018.shp", 5 | "description": "Oklahoma Land Access Program Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Oklahoma Department of Wildlife Conservation", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "WIACAT" 13 | }, 14 | "country": "US", 15 | "state": "OK", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "http://gisprod.usda.okstate.edu:6080/arcgis/rest/services/Private_Lands/PublicOLAP/MapServer/" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/OK/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OK WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/OK-WMAs.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Oklahoma Department of Wildlife Conservation", 9 | "properties": { 10 | "id": "WMANAME", 11 | "name": "WMANAME" 12 | }, 13 | "country": "US", 14 | "state": "OK", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.wildlifedepartment.com/hunting/where-to-hunt & http://maps.wildlifedepartment.okstate.edu/publicapps/odwc_WMA_map/" 18 | } -------------------------------------------------------------------------------- /sources/US/OR/all.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "OR WMUs", 3 | "url": "https://nrimp.dfw.state.or.us/web%20stores/data%20libraries/files/ODFW/ODFW_805_5_wildlife_mgmt_units.zip", 4 | "description": "Wildlife Management Units", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Oregon Department of Fish and Wildlife", 9 | "properties": { 10 | "id": "UNIT_NUM", 11 | "name": "UNIT_NAME" 12 | }, 13 | "country": "US", 14 | "state": "OR", 15 | "filetype": "shp", 16 | "year": "2010", 17 | "source": "https://nrimp.dfw.state.or.us/DataClearinghouse/default.aspx?p=202&XMLname=805.xml" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/OR/wildlife-areas-refuges.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "OR Wildlife Areas and Refuges", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/OR_WIldlifeAreas_Refuges.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Oregon Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "Name", 10 | "name": "Name" 11 | }, 12 | "country": "US", 13 | "state": "OR", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://nrimp.dfw.state.or.us/DataClearinghouse/default.aspx?p=202&XMLname=861.xml & https://nrimp.dfw.state.or.us/DataClearinghouse/default.aspx?p=202&XMLname=1115.xml" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/PA/cwd-untis-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "PA CWD Management Units 2017", 3 | "url": "ftp://ftp.pasda.psu.edu/pub/pasda/pgc/PGC_CWDManagementUnits2017.zip", 4 | "species": [ 5 | "deer", 6 | "elk" 7 | ], 8 | "attribution": "Pennsylvania Game Commission", 9 | "properties": { 10 | "id": "NAME", 11 | "name": "NAME" 12 | }, 13 | "country": "US", 14 | "state": "PA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.pasda.psu.edu/uci/DataSummary.aspx?dataset=1680" 18 | } -------------------------------------------------------------------------------- /sources/US/PA/elk-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "PA Elk Hunt Zones 2017", 3 | "url": "ftp://ftp.pasda.psu.edu/pub/pasda/pgc/PGC_ElkManagementZones2017.zip", 4 | "species": [ 5 | "elk" 6 | ], 7 | "attribution": "Pennsylvania Game Commission", 8 | "properties": { 9 | "id": "HUNT_ZONE", 10 | "name": "HUNT_ZONE" 11 | }, 12 | "country": "US", 13 | "state": "PA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://www.pasda.psu.edu/uci/DataSummary.aspx?dataset=297" 17 | } -------------------------------------------------------------------------------- /sources/US/PA/game-lands-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "PA State Game Lands", 3 | "url": "ftp://ftp.pasda.psu.edu/pub/pasda/pgc/PGC_StateGameland2017.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Pennsylvania Game Commission", 8 | "properties": { 9 | "id": "NAME", 10 | "name": "NAME" 11 | }, 12 | "country": "US", 13 | "state": "PA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://www.pasda.psu.edu/uci/DataSummary.aspx?dataset=86" 17 | } -------------------------------------------------------------------------------- /sources/US/PA/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "PA HAP Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "PA-HAP-2018.shp", 5 | "description": "Hunter Access Program Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Pennsylvania Game Commission", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "ACCOUNT_CO" 13 | }, 14 | "country": "US", 15 | "state": "PA", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://pgcmaps.pa.gov/arcgis/rest/services/PGC/PGC_PUBLIC/MapServer/18" 19 | } -------------------------------------------------------------------------------- /sources/US/PA/wmu-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "PA WMUs", 3 | "url": "ftp://ftp.pasda.psu.edu/pub/pasda/pgc/PGC_BNDWildlifeManagementUnits2017.zip", 4 | "description": "Wildlife Management Units", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Pennsylvania Game Commission", 9 | "properties": { 10 | "id": "WMU_ID", 11 | "name": "WMU_ID" 12 | }, 13 | "country": "US", 14 | "state": "PA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.pasda.psu.edu/uci/DataSummary.aspx?dataset=1122" 18 | } -------------------------------------------------------------------------------- /sources/US/RI/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "RI Deer Hunt Areas", 3 | "url": "https://s3.amazonaws.com/data.openbounds.org/USAHunting/manual-downloads/RI_Deer_Management_Unit.zip", 4 | "species": [ 5 | "deer" 6 | ], 7 | "attribution": "Rhode Island Department of Environmental Management", 8 | "properties": { 9 | "id": "DeerMU", 10 | "name": "DeerMU" 11 | }, 12 | "country": "US", 13 | "state": "RI", 14 | "filetype": "shp" 15 | } 16 | -------------------------------------------------------------------------------- /sources/US/SC/game-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SC Game Zones", 3 | "url": "ftp://ftpdata.dnr.sc.gov/gisdata/dnrdata/SCGameZones2012.zip", 4 | "filenameInZip": "SCGameZones2012.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "South Carolina Dept. of Natural Resources", 9 | "properties": { 10 | "id": "GAMEZONE", 11 | "name": "GAMEZONE" 12 | }, 13 | "country": "US", 14 | "state": "SC", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.dnr.sc.gov/GIS/gisdnrdata.html" 18 | } -------------------------------------------------------------------------------- /sources/US/SC/public-lands.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SC WMAs & Public Lands Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sc-wildlife-management-areas.zip", 4 | "description": "Wildlife Management Areas & Public Lands open for hunting", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "South Carolina Dept. of Natural Resources", 9 | "properties": { 10 | "id": "Loc_Nm", 11 | "name": "Loc_Nm" 12 | }, 13 | "country": "US", 14 | "state": "SC", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gapanalysis.usgs.gov/padus/data/download/ filtered against https://www2.dnr.sc.gov/ManagedLands/ManagedLand/ActivityResult & https://scdnr.maps.arcgis.com/apps/Viewer/index.html?appid=72fd99d8d05e4dceaf0ddc5344980ba1" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/antelope-bow.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Antelope - Archery Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-antelope-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-ArcheryAntelope.shp", 5 | "species": [ 6 | "antelope" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNITNO" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/27" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/antelope-gun.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Antelope - Firearm Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-antelope-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-AntelopeFirearms.shp", 5 | "species": [ 6 | "antelope" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNITNO" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/7" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/bighorn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Bighorn Sheep - Black Hills Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-bighornsheep-mtngoat-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-BlackHillsBighornSheep.shp", 5 | "species": [ 6 | "bighorn sheep" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNITNO" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/9" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/deer-bow-muzzleloader.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Deer - Archery Antlerless & Muzzleloader Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-deer-all-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-MuzzleloaderDeer.shp", 5 | "species": [ 6 | "deer" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/15 & add custom label" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Deer - West River, East River, Black Hills, Custer State Park, & Refuge Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-deer-all-units.zip", 4 | "filenameInZip": "SD-deer-units.shp", 5 | "species": [ 6 | "deer" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "SAGA merge http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/10 http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/12 http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/13 http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/29 http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/31 & edit BlackHills labels to match pg8 http://gfp.sd.gov/hunting/licenses/limited/forms/DeerApp.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/elk-blackhills-antlerless.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Elk - Black Hills Antlerless Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-elk-units.zip", 4 | "filenameInZip": "SD-BlackHills-Antlerless-Elk.shp", 5 | "species": [ 6 | "elk" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/15 & edit to match pg6 http://gfp.sd.gov/hunting/docs/Elk-BHsheep-MtGoat.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/elk-blackhills.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Elk - Black Hills Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-elk-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-BlackHillsFirearmsElk.shp", 5 | "species": [ 6 | "elk" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/11 & edit labels to match pg6 http://gfp.sd.gov/hunting/docs/Elk-BHsheep-MtGoat.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/elk-bow.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Elk - Archery Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-elk-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-ArcheryElk.shp", 5 | "species": [ 6 | "elk" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/8 & edit labels to match pg7 http://gfp.sd.gov/hunting/docs/Elk-BHsheep-MtGoat.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/elk-csp-antlerless.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Elk - CSP Antlerless Unit", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-elk-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-CSPSpecialAntlerlessElk.shp", 5 | "description": "Custer State Park Antlerless Unit", 6 | "species": [ 7 | "elk" 8 | ], 9 | "attribution": "South Dakota Game, Fish & Parks", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "GaiaLabel" 13 | }, 14 | "country": "US", 15 | "state": "SD", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/35 & edit labels to match pg9 http://gfp.sd.gov/hunting/docs/Elk-BHsheep-MtGoat.pdf" 19 | } -------------------------------------------------------------------------------- /sources/US/SD/elk-csp.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Elk - CSP Early Archery Unit", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-elk-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-CSPElk.shp", 5 | "description": "Custer State Park Early Archery Unit", 6 | "species": [ 7 | "elk" 8 | ], 9 | "attribution": "South Dakota Game, Fish & Parks", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "GaiaLabel" 13 | }, 14 | "country": "US", 15 | "state": "SD", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/28 & edit labels to match pg9 http://gfp.sd.gov/hunting/docs/Elk-BHsheep-MtGoat.pdf" 19 | } -------------------------------------------------------------------------------- /sources/US/SD/elk-prairie.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Elk - Prairie Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-elk-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-PrairieElk.shp", 5 | "species": [ 6 | "elk" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/21 & edit labels to match pg8 http://gfp.sd.gov/hunting/docs/Elk-BHsheep-MtGoat.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/game-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Game Production Areas", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-public-private-lands.zip", 4 | "filenameInZip": "SD-GameProductionAreas.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "AreaName" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/6" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/mtn-goat.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Mountain Goat - Black Hills Unit", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-bighornsheep-mtngoat-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-MountainGoat.shp", 5 | "species": [ 6 | "mountain goat" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/30 & add custom label" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/state-parks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD State Parks Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-public-private-lands.zip", 4 | "filenameInZip": "SD-SDGFPParkandRecreationAreas.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "ParkName" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/5 & filter against pg44-46 on http://gfp.sd.gov/hunting/docs/huntinghandbook.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/turkey-fall.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Turkey - Fall Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-turkey-units.zip", 4 | "filenameInZip": "SD-HuntingUnits-FallTurkey.shp", 5 | "species": [ 6 | "turkey" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "UNITNO" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/17" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/turkey-spring.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Turkey - Spring Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-turkey-units.zip", 4 | "filenameInZip": "SD-SpringTurkey.shp", 5 | "species": [ 6 | "turkey" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "SAGA merge http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/20 http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/36 http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/28 & edit labels to match pg6 http://gfp.sd.gov/hunting/licenses/limited/forms/SpringTurkey.pdf" 18 | } -------------------------------------------------------------------------------- /sources/US/SD/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Private Land Access - CHAP, CREP, DU, & WIA Areas", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-public-private-lands.zip", 4 | "filenameInZip": "SD-PrivateLandsHuntingAccess.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "Type" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/2" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/SD/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Private Land Access - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "SD-Private Lands Hunting Access.shp", 5 | "description": "Walk-In Areas (WIA), Conservation Reserve Enhancement Program (CREP), Controlled Hunting Access Program (CHAP), & COOP Management Areas open for hunting", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "South Dakota Game, Fish & Parks", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "Type" 13 | }, 14 | "country": "US", 15 | "state": "SD", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/" 19 | } -------------------------------------------------------------------------------- /sources/US/SD/waterfowl-duck.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Duck Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-waterfowl-zones.zip", 4 | "filenameInZip": "SD-HuntingUnits-DuckZones.shp", 5 | "species": [ 6 | "ducks", 7 | "coots", 8 | "mergansers" 9 | ], 10 | "attribution": "South Dakota Game, Fish & Parks", 11 | "properties": { 12 | "id": "OBJECTID", 13 | "name": "ZONE" 14 | }, 15 | "country": "US", 16 | "state": "SD", 17 | "filetype": "shp", 18 | "year": "2017", 19 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/16" 20 | } -------------------------------------------------------------------------------- /sources/US/SD/waterfowl-goose.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Canada Goose Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-waterfowl-zones.zip", 4 | "filenameInZip": "SD-HuntingUnits-CanadaGoose.shp", 5 | "species": [ 6 | "canada goose", 7 | "brant geese" 8 | ], 9 | "attribution": "South Dakota Game, Fish & Parks", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "UNITNO" 13 | }, 14 | "country": "US", 15 | "state": "SD", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/14" 19 | } -------------------------------------------------------------------------------- /sources/US/SD/waterfowl-nonresident.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Nonresident Waterfowl Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-waterfowl-zones.zip", 4 | "filenameInZip": "SD-waterfowl-nonresident.shp", 5 | "species": [ 6 | "waterfowl", 7 | "ducks", 8 | "geese" 9 | ], 10 | "attribution": "South Dakota Game, Fish & Parks", 11 | "properties": { 12 | "id": "OBJECTID", 13 | "name": "GaiaLabel" 14 | }, 15 | "country": "US", 16 | "state": "SD", 17 | "filetype": "shp", 18 | "year": "2017", 19 | "source": "merged http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/19 & http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/18 and add custom labels based on pg13 http://gfp.sd.gov/hunting/docs/huntinghandbook.pdf" 20 | } -------------------------------------------------------------------------------- /sources/US/SD/waterfowl-swan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "SD Tundra Swan Unit", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/sd-waterfowl-zones.zip", 4 | "filenameInZip": "SD-HuntingUnits-TundraSwan.shp", 5 | "species": [ 6 | "tundra swan" 7 | ], 8 | "attribution": "South Dakota Game, Fish & Parks", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "GaiaLabel" 12 | }, 13 | "country": "US", 14 | "state": "SD", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://arcgis.sd.gov/arcgis/rest/services/GFP/Hunting_Atlas_26/MapServer/32 & edit label" 18 | } -------------------------------------------------------------------------------- /sources/US/TN/deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TN Deer Hunting Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/TN-deer-hunting-units.zip", 4 | "species": [ 5 | "deer" 6 | ], 7 | "attribution": "Tennessee Wildlife Resource Agency", 8 | "properties": { 9 | "id": "NAME", 10 | "name": "NAME" 11 | }, 12 | "country": "US", 13 | "state": "TN", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://www.tn.gov/assets/entities/twra/attachments/huntguide.pdf https://www.arcgis.com/home/item.html?id=47aa2778faa74389aa06c34bc767f41c" 17 | } -------------------------------------------------------------------------------- /sources/US/TN/elk.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TN Elk Hunt Zones", 3 | "url": "https://opendata.arcgis.com/datasets/b97f1ce0d0214a55962934fd46f3ea22_0.geojson", 4 | "species": [ 5 | "elk" 6 | ], 7 | "attribution": "Tennessee Wildlife Resource Agency", 8 | "properties": { 9 | "id": "NAME", 10 | "name": "NAME" 11 | }, 12 | "country": "US", 13 | "state": "TN", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://tn-tnmap.opendata.arcgis.com/datasets/TWRA::elkhuntzones-2017" 17 | } -------------------------------------------------------------------------------- /sources/US/TN/tva-all.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TVA Recreational Lands with Hunting Access", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/tva-new.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Tennessee Valley Authority", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "RESERVOIR", 11 | "restrictions" : "RESTRICTED" 12 | }, 13 | "country": "US", 14 | "state": "TN", 15 | "filetype": "shp", 16 | "year": "2016" 17 | } -------------------------------------------------------------------------------- /sources/US/TN/wma.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TN WMAs", 3 | "url": "https://opendata.arcgis.com/datasets/8e9f8135c6594c959ae777d1c6830127_0.geojson", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Tennessee Wildlife Resource Agency", 9 | "properties": { 10 | "id": "Label", 11 | "name": "Label" 12 | }, 13 | "country": "US", 14 | "state": "TN", 15 | "filetype": "geojson", 16 | "year": "2017", 17 | "source": "http://tn-tnmap.opendata.arcgis.com/datasets/TWRA::huntingallowedlands" 18 | } -------------------------------------------------------------------------------- /sources/US/TX/dove-zones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TX Dove Hunting Zones", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/TX-dovezones.zip", 4 | "species": [ 5 | "morning dove", 6 | "white-winged dove", 7 | "White-tipped dove" 8 | ], 9 | "attribution": "Texas Parks & Wildlife", 10 | "properties": { 11 | "id": "DoveZone", 12 | "name": "DoveZone" 13 | }, 14 | "country": "US", 15 | "state": "TX", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "http://tpwd.maps.arcgis.com/apps/webappviewer/index.html?id=c9788957300943559f7b49206e8ef153" 19 | } -------------------------------------------------------------------------------- /sources/US/TX/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TX Public Dove and Small Game Hunting Areas 2017-2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/TX-Dove_SmallGameGPS_2017_18.zip", 4 | "species": [ 5 | "dove", 6 | "feral hog", 7 | "teal", 8 | "waterfowl", 9 | "cranes", 10 | "quail", 11 | "pheasant", 12 | "rabbit", 13 | "coyote" 14 | ], 15 | "attribution": "Texas Parks & Wildlife", 16 | "properties": { 17 | "id": "Name", 18 | "name": "Name" 19 | }, 20 | "country": "US", 21 | "state": "TX", 22 | "filetype": "shp", 23 | "year": "2017", 24 | "source": "https://tpwd.texas.gov/huntwild/hunt/public/annual_public_hunting/" 25 | } -------------------------------------------------------------------------------- /sources/US/TX/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TX Dove & Small Game Areas - 2018", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/walk-in-updates-2018.zip", 4 | "filenameInZip": "TX-Dove and Small Game Lease Polygons.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Texas Parks & Wildlife", 9 | "properties": { 10 | "id": "OBJECTID", 11 | "name": "LEASE_NAME" 12 | }, 13 | "country": "US", 14 | "state": "TX", 15 | "filetype": "shp", 16 | "year": "2018", 17 | "source": "https://tpwd.texas.gov/arcgis/rest/services/Wildlife/TPWD_PublicHuntLocatorMap/MapServer/" 18 | } -------------------------------------------------------------------------------- /sources/US/TX/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "TX WMAs", 3 | "url": "http://tpwd.texas.gov/gis/resources/wildlife-management-areas.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Texas Parks & Wildlife", 9 | "properties": { 10 | "id": "Name", 11 | "name": "Name" 12 | }, 13 | "country": "US", 14 | "state": "TX", 15 | "filetype": "shp", 16 | "year": "2014", 17 | "source": "http://tpwd.texas.gov/gis/" 18 | } -------------------------------------------------------------------------------- /sources/US/UT/anybullelk-generalseason-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Elk General Season Any Bull Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_AnyBullElk_Gen.zip", 4 | "species": [ 5 | "Elk" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/anybullelk-generalseason.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Elk General Season Any Bull Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_AnyBullElk_Gen.zip", 4 | "species": [ 5 | "Elk" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/bison-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Bison Hunt Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_Bison.zip", 4 | "species": [ 5 | "bison" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/bison.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Bison Hunt Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_Bison.zip", 4 | "species": [ 5 | "bison" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/blackbear-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Black Bear Hunt Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_Black_Bear.zip", 4 | "species": [ 5 | "black bear" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/blackbear.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Black Bear Hunt Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_Black_Bear.zip", 4 | "species": [ 5 | "black bear" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/cougar-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Cougar Hunt Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_Cougar.zip", 4 | "species": [ 5 | "cougar" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/cougar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Cougar Hunt Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_Cougar.zip", 4 | "species": [ 5 | "cougar" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/deer-generalseason-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Deer General Season Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_DeerGen.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/deer-generalseason.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Deer General Season Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_DeerGen.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/deer-limitedentry-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Deer Limited Entry Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_DeerLE.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/deer-limitedentry.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Deer Limited Entry Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_DeerLE.zip", 4 | "species": [ 5 | "Deer" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/desertbighorn-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Desert Bighorn Hunt Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_DesBighorn.zip", 4 | "species": [ 5 | "desert bighorn" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/desertbighorn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Desert Bighorn Hunt Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_DesBighorn.zip", 4 | "species": [ 5 | "desert bighorn" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/elk-limitedentry-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Elk Limited Entry Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_ElkLE.zip", 4 | "species": [ 5 | "Elk" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/elk-limitedentry.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Elk Limited Entry Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_ElkLE.zip", 4 | "species": [ 5 | "Elk" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/moose-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Moose Hunt Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_Moose.zip", 4 | "species": [ 5 | "Moose" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/moose.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Moose Hunt Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_Moose.zip", 4 | "species": [ 5 | "Moose" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/pronghorn-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Pronghorn Hunt Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_Pronghorn.zip", 4 | "species": [ 5 | "Pronghorn" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/pronghorn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Pronghorn Hunt Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_Pronghorn.zip", 4 | "species": [ 5 | "Pronghorn" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/rockymountainbighornsheep-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Rocky Mountain Bighorn Sheep Hunt Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_RMBighorn.zip", 4 | "species": [ 5 | "Rocky Mountain Bighorn Sheep" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/rockymountainbighornsheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Rocky Mountain Bighorn Sheep Hunt Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_RMBighorn.zip", 4 | "species": [ 5 | "Rocky Mountain Bighorn Sheep" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/rockymountaingoat-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Mountain Goat Hunt Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_MtGoat.zip", 4 | "species": [ 5 | "Rocky Mountain Goat" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/rockymountaingoat.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Mountain Goat Hunt Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_RMGoat.zip", 4 | "species": [ 5 | "Rocky Mountain Goat" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/spikeelk-generalseason-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Elk General Season Spike Bull Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_SpikeElk_Gen.zip", 4 | "species": [ 5 | "Elk" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } -------------------------------------------------------------------------------- /sources/US/UT/spikeelk-generalseason.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Elk General Season Spike Bull Units 2016", 3 | "url": "http://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2016_SpikeElk_Gen.zip", 4 | "species": [ 5 | "Elk" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "OBJECTID", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } -------------------------------------------------------------------------------- /sources/US/UT/walk-in-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT Cooperative Wildlife Management Units 2017", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2017_CWMUs.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Utah Division of Wildlife Resources", 8 | "properties": { 9 | "id": "Boundary_N", 10 | "name": "Boundary_N" 11 | }, 12 | "country": "US", 13 | "state": "UT", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/UT/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UT CWMU Areas - 2018", 3 | "url": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/Data/Abiotic/2018_CWMUs.zip", 4 | "filenameInZip": "2018_CWMUs.shp", 5 | "description": "Cooperative Wildlife Management Units", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Utah Division of Wildlife Resources", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "Boundary_N" 13 | }, 14 | "country": "US", 15 | "state": "UT", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://dwrcdc.nr.utah.gov/ucdc/DownloadGIS/disclaim.htm" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/UT/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "UT WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/ut-wildlife-areas.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Utah Division of Wildlife Resources", 9 | "properties": { 10 | "id": "LABEL_STAT", 11 | "name": "LABEL_STAT" 12 | }, 13 | "country": "US", 14 | "state": "UT", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "https://gis.utah.gov/data/cadastre/land-ownership/" 18 | } -------------------------------------------------------------------------------- /sources/US/VA/forest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "VA State Forests Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/VA-StateForest.zip", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Virginia Department of Forestry", 8 | "properties": { 9 | "id": "OBJECTID_1", 10 | "name": "SF_Name" 11 | }, 12 | "country": "US", 13 | "state": "VA", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "http://inforest.frec.vt.edu/ & State Forests layer" 17 | } -------------------------------------------------------------------------------- /sources/US/VA/grouse-small-game.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "VA Potential Ruffed Grouse and Small Game Habitat", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/VA-Potential-Ruffed-Grouse-habitat.zip", 4 | "species": [ 5 | "grouse", 6 | "rabbit", 7 | "quail", 8 | "squirrel" 9 | ], 10 | "attribution": "Virginia Dept. of Game & Inland Fisheries", 11 | "properties": { 12 | "id": "OBJECTID", 13 | "name": "TimberAge" 14 | }, 15 | "country": "US", 16 | "state": "VA", 17 | "filetype": "shp", 18 | "year": "2017", 19 | "source": "https://services2.arcgis.com/qsZIVOgnyrsajEtb/ArcGIS/rest/services/YoungForest/FeatureServer & Combine this layers: Stands 5-9, Stands 10-14, Stands 15-20" 20 | } -------------------------------------------------------------------------------- /sources/US/VA/state-parks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "VA State Parks Open for Hunting", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/va-state-parks.zip", 4 | "filenameInZip": "conslands.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Virginia Dept. of Conservation & Recreation", 9 | "properties": { 10 | "id": "LABEL", 11 | "name": "LABEL" 12 | }, 13 | "country": "US", 14 | "state": "VA", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://www.dcr.virginia.gov/natural-heritage/cldownload & filtered against http://www.dcr.virginia.gov/state-parks/hunting" 18 | } -------------------------------------------------------------------------------- /sources/US/VA/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "VA WMAs", 3 | "url": "https://www.dgif.virginia.gov/-/gis-data/VDGIF_Wildlife_Management_Area_WMA_Boundaries.zip", 4 | "filenameInZip": "VDGIF_Wildlife_Management_Area_WMA_Boundaries.shp", 5 | "description": "Wildlife Management Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Virginia Dept. of Game & Inland Fisheries", 10 | "properties": { 11 | "id": "Number", 12 | "name": "WMA_NAME" 13 | }, 14 | "country": "US", 15 | "state": "VA", 16 | "filetype": "shp", 17 | "year": "2017", 18 | "source": "https://www.dgif.virginia.gov/gis/data/download/" 19 | } -------------------------------------------------------------------------------- /sources/US/VT/wildlife-areas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "VT WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/vt-wildlife-management-areas.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Vermont Fish and Wildlife Department", 9 | "properties": { 10 | "id": "ANRUnit", 11 | "name": "ANRUnit" 12 | }, 13 | "country": "US", 14 | "state": "VT", 15 | "filetype": "shp", 16 | "year": "2012", 17 | "source": "http://anrgeodata.vermont.gov/datasets/anr-land-dataset-unit" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/VT/wildlife-units.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "VT Wildlife Management Units", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/vt-wildlife-management-units.zip", 4 | "filenameInZip": "vt-wildlife-management-units.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Vermont Fish and Wildlife Department", 9 | "properties": { 10 | "id": "WMU_name", 11 | "name": "WMU_name" 12 | }, 13 | "country": "US", 14 | "state": "VT", 15 | "filetype": "shp", 16 | "year": "2008", 17 | "source": "http://anrgeodata.vermont.gov/datasets/wildlife-management-units" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/WA/all-2016-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WA GMUs", 3 | "url": "http://geo.wa.gov/datasets/e4b4b1e2275842c3a8d6ca6d7d8cd261_0.geojson", 4 | "description": "Game Management Units", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Washington Department of Fish and Wildlife", 9 | "properties": { 10 | "id": "GMU_Num", 11 | "name": "GMU_Name" 12 | }, 13 | "country": "US", 14 | "state": "WA", 15 | "filetype": "geojson", 16 | "year": "2016-2017", 17 | "source": "http://geo.wa.gov/datasets/e4b4b1e2275842c3a8d6ca6d7d8cd261_0" 18 | } -------------------------------------------------------------------------------- /sources/US/WA/all-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WA Game Management Units", 3 | "url": "https://fortress.wa.gov/dfw/public/PublicDownload/wildlife/hunts2016/Game_Management_Units.zip", 4 | "filenameInZip" : "SHPFiles/GMU_Generalized.shp", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "Washington Department of Fish and Wildlife", 9 | "properties": { 10 | "id": "GMU_Num", 11 | "name": "GMU_Name" 12 | }, 13 | "country": "US", 14 | "state": "WA", 15 | "filetype": "shp", 16 | "year": "2016", 17 | "source": "" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/WA/bighornsheep-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WA Bighorn Sheep Hunt Units", 3 | "url": "https://fortress.wa.gov/dfw/public/PublicDownload/wildlife/hunts2016/Bighorn_Sheep_Units.zip", 4 | "filenameInZip" : "SHPFiles/BSU_Legal.shp", 5 | "species": [ 6 | "big horn sheep" 7 | ], 8 | "attribution": "Washington Department of Fish and Wildlife", 9 | "properties": { 10 | "id": "BSU_ID", 11 | "name": "BSU_Name" 12 | }, 13 | "country": "US", 14 | "state": "WA", 15 | "filetype": "shp", 16 | "year": "2016", 17 | "source": "" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/WA/moose-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WA Moose Hunt Units", 3 | "url": "https://fortress.wa.gov/dfw/public/PublicDownload/wildlife/hunts2016/Moose_Units.zip", 4 | "filenameInZip" : "SHPFiles/MU_Legal.shp", 5 | "species": [ 6 | "moose" 7 | ], 8 | "attribution": "Washington Department of Fish and Wildlife", 9 | "properties": { 10 | "id": "MU_ID", 11 | "name": "MU_Name" 12 | }, 13 | "country": "US", 14 | "state": "WA", 15 | "filetype": "shp", 16 | "year": "2016", 17 | "source": "" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/WA/mountaingoat-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WA Mountain Goat Units", 3 | "url": "https://fortress.wa.gov/dfw/public/PublicDownload/wildlife/hunts2016/Mountain_Goat_Units.zip", 4 | "filenameInZip" : "SHPFiles/MGU_Legal.shp", 5 | "species": [ 6 | "mountain goat" 7 | ], 8 | "attribution": "Washington Department of Fish and Wildlife", 9 | "properties": { 10 | "id": "MGU_Id", 11 | "name": "MGU_Name" 12 | }, 13 | "country": "US", 14 | "state": "WA", 15 | "filetype": "shp", 16 | "year": "2016", 17 | "source": "" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/WA/wildlife-areas-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WA Wildlife Areas", 3 | "url": "http://geo.wa.gov/datasets/89e677d17858438b9befb2963f0bd92f_0.geojson", 4 | "species": [ 5 | "all" 6 | ], 7 | "attribution": "Washington Department of Fish and Wildlife", 8 | "properties": { 9 | "id": "WLA_Name", 10 | "name": "WLAU_Name" 11 | }, 12 | "country": "US", 13 | "state": "WA", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://geo.wa.gov/datasets/89e677d17858438b9befb2963f0bd92f_0" 17 | } -------------------------------------------------------------------------------- /sources/US/WI/bear.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WI Bear Management Zones", 3 | "url": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt/bear_mgmt_zones.ZIP", 4 | "species": [ 5 | "bear" 6 | ], 7 | "attribution": "Wisconsin Department of Natural Resources", 8 | "properties": { 9 | "id": "BMU_Unit", 10 | "name": "BMU_Unit" 11 | }, 12 | "country": "US", 13 | "state": "WI", 14 | "filetype": "shp", 15 | "year": "2008", 16 | "source": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt" 17 | } 18 | 19 | -------------------------------------------------------------------------------- /sources/US/WI/deersubunits.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WI Deer Mgmt Metro Subunits", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/WI-deer_metro_subunits.zip", 4 | "species": [ 5 | "deer" 6 | ], 7 | "attribution": "Wisconsin Department of Natural Resources", 8 | "properties": { 9 | "id": "METRO_SUBU", 10 | "name": "METRO_SUBU" 11 | }, 12 | "country": "US", 13 | "state": "WI", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WI/deerunits.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WI Deer Mgmt Units", 3 | "url": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt/deer_mgmt_units.zip", 4 | "species": [ 5 | "deer" 6 | ], 7 | "attribution": "Wisconsin Department of Natural Resources", 8 | "properties": { 9 | "id": "DEER_MGMT_", 10 | "name": "DEER_MGMT_" 11 | }, 12 | "country": "US", 13 | "state": "WI", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WI/deerzones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WI Deer Management Zones", 3 | "url": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt/deer_mgmt_zones.zip", 4 | "species": [ 5 | "deer" 6 | ], 7 | "attribution": "Wisconsin Department of Natural Resources", 8 | "properties": { 9 | "id": "DEER_MANAG", 10 | "name": "DEER_MANAG" 11 | }, 12 | "country": "US", 13 | "state": "WI", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WI/turkey.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WI Turkey Management Zones", 3 | "url": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt/turkey_mgmt_zones.ZIP", 4 | "species": [ 5 | "turkey" 6 | ], 7 | "attribution": "Wisconsin Department of Natural Resources", 8 | "properties": { 9 | "id": "TURKEY_MGM", 10 | "name": "TURKEY_MGM" 11 | }, 12 | "country": "US", 13 | "state": "WI", 14 | "filetype": "shp", 15 | "year": "2017", 16 | "source": "ftp://dnrftp01.wi.gov/geodata/wildlife_mgmt" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WV/wildlifemanagementareas.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WV WMAs", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/wvdnrManagedLands_wvdnr_20170731_utm83_shp.zip", 4 | "description": "Wildlife Management Areas", 5 | "species": [ 6 | "all" 7 | ], 8 | "attribution": "West Virginia Division of Natural Resources", 9 | "properties": { 10 | "id": "Unit_Nm", 11 | "name": "Unit_Nm" 12 | }, 13 | "country": "US", 14 | "state": "WV", 15 | "filetype": "shp", 16 | "year": "2017", 17 | "source": "http://wvgis.wvu.edu/data/dataset.php?ID=59" 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/WY/antelope-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WY Antelope Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Big%20Game/AntelopeHuntAreas.zip", 4 | "species": [ 5 | "antelope" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/antelope-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WY Antelope Hunt Areas 2017", 3 | "url": "https://opendata.arcgis.com/datasets/a8f4aa4b22994398904dffce6f5fc064_0.geojson", 4 | "species": [ 5 | "antelope" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/antelope-hunt-areas" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WY/bighornsheep-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Bighorn Sheep Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Big%20Game/BighornSheepHuntAreas.zip", 4 | "species": [ 5 | "big horn sheep" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WY/bighornsheep-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Bighorn Sheep Hunt Areas 2017", 3 | "url": "https://opendata.arcgis.com/datasets/53234a37cd224b63af511bd81b145dd8_0.geojson", 4 | "species": [ 5 | "big horn sheep" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/bighorn-sheep-hunt-areas" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WY/bison-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Bison Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Big%20Game/BisonHuntAreas.zip", 4 | "species": [ 5 | "bison" 6 | ], 7 | "attribution": "Wyoming Fish and Wildlife", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/bison-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Bison Hunt Areas 2017", 3 | "url": "https://opendata.arcgis.com/datasets/3835571e38d24ac6b5aa77722a6f1e9e_0.geojson", 4 | "species": [ 5 | "bison" 6 | ], 7 | "attribution": "Wyoming Fish and Wildlife", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/bison-hunt-areas" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WY/blackbear-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WY Black Bear Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/BlackBear_HuntAreasManagementUnits.zip", 4 | "species": [ 5 | "Black Bear" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/bobcat-2015.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WY Bobcat Management Areas 2015", 3 | "url": "https://opendata.arcgis.com/datasets/d526b7840cab4be9bf3d6489c8d8fb6b_0.geojson", 4 | "species": [ 5 | "bobcat" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "MGMTAREA", 10 | "name": "MGMTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2015", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/2015-bobcat-management-areas" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WY/elk-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Elk Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Big%20Game/ElkHuntAreas.zip", 4 | "species": [ 5 | "elk" 6 | ], 7 | "attribution": "Wyoming Fish and Wildlife", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/elk-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Elk Hunt Areas 2017", 3 | "url": "https://opendata.arcgis.com/datasets/96a3f0784bcc42db8ece2d4e9fb0a734_0.geojson", 4 | "species": [ 5 | "elk" 6 | ], 7 | "attribution": "Wyoming Fish and Wildlife", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/elk-hunt-areas" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WY/hma-walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY HMA Areas - 2018", 3 | "url": "https://opendata.arcgis.com/datasets/de189980f9f34a32a819a84be9235feb_0.zip", 4 | "filenameInZip": "Hunter_Management_Area_Boundaries.shp", 5 | "description": "Hunter Management Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Wyoming Fish and Wildlife", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "HMA_NAME" 13 | }, 14 | "country": "US", 15 | "state": "WY", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://wyoming-wgfd.opendata.arcgis.com/datasets/hunter-management-area-boundaries" 19 | } -------------------------------------------------------------------------------- /sources/US/WY/moose-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Moose Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Big%20Game/MuleDeerHuntAreas.zip", 4 | "species": [ 5 | "moose" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/mountainlion-2015.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Mountain Lion Hunt Area Management Units 2015", 3 | "url": "https://data.openbounds.org.s3.amazonaws.com/USAHunting/manual-downloads/2015_Mountain_Lion_Hunt_Areas.zip", 4 | "species": [ 5 | "Mountain Lion" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2015" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/mountainlion-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Mountain Lion Hunt Areas 2016", 3 | "url": "https://opendata.arcgis.com/datasets/7b2e8a8947a743c48c7ff6fc15c71762_0.geojson", 4 | "species": [ 5 | "Mountain Lion" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2016", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/mountain-lion-hunt-areas" 17 | 18 | } 19 | -------------------------------------------------------------------------------- /sources/US/WY/muledeer-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Mule Deer Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Big%20Game/MuleDeerHuntAreas.zip", 4 | "species": [ 5 | "mule deer" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/muledeer-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Mule Deer Hunt Areas 2017", 3 | "url": "https://opendata.arcgis.com/datasets/dc3741c643be4daaafca2ae0b15b2407_0.geojson", 4 | "species": [ 5 | "mule deer" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/mule-deer-hunt-areas" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WY/pheasant-2015.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WY Pheasant Hunt Areas 2015", 3 | "url": "https://opendata.arcgis.com/datasets/b58c3bb57b0a4a59b83b6a78400fdd43_0.geojson", 4 | "species": [ 5 | "pheasant" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2015", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/2015-pheasant-hunt-areas" 17 | } 18 | -------------------------------------------------------------------------------- /sources/US/WY/rockymountaingoat-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY Mountain Goat Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Big%20Game/RockyMountainGoatHuntAreas.zip", 4 | "species": [ 5 | "Rocky Mountain Goat" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/sagegrouse-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WY Sage Grouse Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/SageGrouse_HuntAreas.zip", 4 | "species": [ 5 | "sage grouse" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/turkey-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WY Turkey Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Turkey_HuntAreas.zip", 4 | "species": [ 5 | "turkey" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/walk-in-2018.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY WIH Areas - 2018", 3 | "url": "https://opendata.arcgis.com/datasets/5d87c370e473423c9ba7ae30a9598a16_0.zip", 4 | "filenameInZip": "Walk_In_Hunting_Boundaries.shp", 5 | "description": "Walk-In Hunting Areas", 6 | "species": [ 7 | "all" 8 | ], 9 | "attribution": "Wyoming Fish and Wildlife", 10 | "properties": { 11 | "id": "OBJECTID", 12 | "name": "Label" 13 | }, 14 | "country": "US", 15 | "state": "WY", 16 | "filetype": "shp", 17 | "year": "2018", 18 | "source": "https://wyoming-wgfd.opendata.arcgis.com/datasets/walk-in-hunting-boundaries" 19 | } 20 | -------------------------------------------------------------------------------- /sources/US/WY/whitetaileddeer-2016.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY White-Tailed Deer Hunt Areas 2016", 3 | "url": "https://wgfd.wyo.gov/WGFD/media/content/Wildlife/Geospatial/Big%20Game/WhitetailDeerHuntAreas.zip", 4 | "species": [ 5 | "White Tailed Deer" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "shp", 15 | "year": "2016" 16 | } 17 | -------------------------------------------------------------------------------- /sources/US/WY/whitetaileddeer-2017.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "WY White-Tailed Deer Hunt Areas 2017", 3 | "url": "https://opendata.arcgis.com/datasets/953b6697ecfd42e38e1107aa162e709c_0.geojson", 4 | "species": [ 5 | "White Tailed Deer" 6 | ], 7 | "attribution": "Wyoming Game and Fish Department", 8 | "properties": { 9 | "id": "HUNTAREA", 10 | "name": "HUNTAREA" 11 | }, 12 | "country": "US", 13 | "state": "WY", 14 | "filetype": "geojson", 15 | "year": "2017", 16 | "source": "http://wyoming-wgfd.opendata.arcgis.com/datasets/white-tailed-deer-hunt-areas" 17 | } 18 | --------------------------------------------------------------------------------