Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Disclaimer and correcting lon/lat problem from OBIS notebook f… #32

Merged
merged 1 commit into from
Mar 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 22 additions & 10 deletions Hackathons/WindEurope/Obis_Hackathons.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,23 @@
},
"source": [
"# Welcome to the OBIS biodiversity notebook \n",
"<div style=\"text-align: justify\"; max-width: 50%>\n",
"\n",
"In this notebook, we provide easier access to our pre-processed biodiversity dataset (reduced in size and complexity for ease of consumption) from OBIS stored from our cloud storage, see https://obis.org/\n",
"\n",
"DISCLAIMER:\n",
"\n",
"Please note that this processed version is solely intended for the purpose of enabling fast exploration in the specific context of this hackathon. Please do not download, or redistribute this data, or use for any other purposes than intended for this hackathon. The complete and up to date original OBIS data are openly available from the source through their website https://mapper.obis.org/ or APIs https://api.obis.org/. More information can be found in their documentation: https://manual.obis.org/access.html.\n",
"\n",
"OBIS data comprises constituent datasets which have varying license restrictions and it is up to the user to ensure that the data is used and attributed correctly where necessary. The correct attributions for the datasets in the 'Norway' area-of-interest defined below are can found either through the OBIS browser front-end:\n",
"[https://mapper.obis.org/?geometry=POLYGON%20((4.26917%2059.44806,4.67361%2059.48222,4.4075%2059.06944,4.81222%2059.105,4.26917%2059.44806))#](https://mapper.obis.org/?geometry=POLYGON%20((4.26917%2059.44806,4.67361%2059.48222,4.4075%2059.06944,4.81222%2059.105,4.26917%2059.44806))#) \n",
"and clicking on the green '=' then 'view data'\n",
"\n",
"or using an API definition:\n",
"[https://api.obis.org/v3/dataset?geometry=POLYGON%20((4.26917%2059.44806,4.67361%2059.48222,4.4075%2059.06944,4.81222%2059.105,4.26917%2059.44806))](https://api.obis.org/v3/dataset?geometry=POLYGON%20((4.26917%2059.44806,4.67361%2059.48222,4.4075%2059.06944,4.81222%2059.105,4.26917%2059.44806)))\n",
"\n",
"In this notebook, we offer access to our pre-processed biodiversity dataset from OBIS stored from our cloud storage, see https://obis.org/\n",
"\n",
"<div style=\"text-align: justify\"; max-width: 50%>\n",
"OBIS (Ocean Biodiversity Information System) is a global open-access data and information for marine biodiversity data. It provides access to various types of marine biodiversity data, including species occurrences, distribution records, and ecological data. OBIS aggregates data from numerous sources, including research institutions, government agencies, and citizen science initiatives, and makes it available through a standardized platform. Scientists, policymakers, and the general public can use OBIS to explore and analyze marine biodiversity data, track changes in marine ecosystems over time, and support conservation and management efforts. OBIS plays a crucial role in advancing our understanding of marine biodiversity and promoting the sustainable management of ocean resources. \n",
"</div>\n",
"\n",
Expand Down Expand Up @@ -467,17 +479,17 @@
"]\n",
"\n",
"South_China_Sea = [\n",
"(21.134832, 111.444392),\n",
"(21.134832, 111.755552),\n",
"(21.405112, 111.444392),\n",
"(21.405112, 111.755552)\n",
"(111.444392, 21.134832),\n",
"(111.755552, 21.134832),\n",
"(111.444392, 21.134832),\n",
"(111.755552, 21.405112)\n",
"]\n",
" \n",
"US_east_coast = [\n",
"(41.014832, -71.245652),\n",
"(41.014832, -70.894292),\n",
"(41.285112, -71.245652),\n",
"(41.285112, -70.894292)\n",
"(-71.245652, 41.014832),\n",
"(-70.894292, 41.014832),\n",
"(-71.245652, 41.285112),\n",
"(-70.894292, 41.285112)\n",
"]"
]
},
Expand Down Expand Up @@ -886,7 +898,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.10"
"version": "3.12.0"
}
},
"nbformat": 4,
Expand Down
Loading