{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# PICES Regional Ecosystem Tool\n", "## Data acquisition, analysis, plotting & saving to facilitate IEA report\n", "### Developed by Chelle Gentemann (cgentemann@gmail.com) & Marisol Garcia-Reyes (marisolgr@gmail.com)\n", "***\n", "***" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Instructions\n", "\n", "## To configure:\n", "### In the cell marked by `* Configuration *`, specify: Region, Variable, Date Period\n", "## To execute:\n", "### Click on the top menu click: `Run` -> `Run All` \n", "***\n", "***" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Regions\n", "\n", " \n", " \n", " \n", " \n", "
\n", " Region Number

\n", " 11

12

13

14

15

16

17\n", "

18

19

20

21

22

23

24
\n", " Region Name

\n", " California Current

\n", " Gulf of Alaska

\n", " East Bering Sea

\n", " North Bering Sea

\n", " Aleutian Islands

\n", " West Bering Sea

\n", " Sea of Okhotsk

\n", " Oyashio Current

\n", " R19

\n", " Yellow Sea

\n", " East China Sea

\n", " Kuroshio Current

\n", " West North Pacific

\n", " East North Pacific
\n", "North Pacific LME Regions\n", "
\n", "\n", "\n", "***\n", "\n", "# Variables\n", "## 1) SST: Sea Surface Temperature ('1981-01-01' - present) \n", "## 2) Chl: Chlorphyll-a Concentration ('1997-01-01' - '2018-06-30')\n", "## 3) Wind_U, Wind_V, Wind_Speed: Wind Speed Vectors & Speed ('1997-01-01' - present)\n", "## 4) Current_U, Current_V, Current_Speed: Sea Surface Currents Vectors ('1992-01-01' - present)\n", "## 5) SLA: Sea Level Anomaly ('1992-01-01' - present)\n", "## 6) ADT: Absolute Dynamical Topography Heights ('1992-01-01' - present)\n", "\n", "***\n", "***\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "###########################\n", "# *** Configuration ***\n", "
\n", "###########################" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "#######################\n", "#### Configuration ####\n", "#######################\n", "\n", "## Region to analyze ##\n", "region = 11 # <<<----- Use number (11 to 24) based on table above\n", "\n", "## Variable ##\n", "## Select the variable to analyze from the list above (eg. 'sst','chl','wind_v','current_speed','sla','adt')\n", "var = 'sst' # <<<----- Use short name given above. upper or lower case accepted.\n", "\n", "## Date Period to analize ##\n", "## Specify the period using the format: #### YYYY-MM-DD #####\n", "## Data available specified above\n", "## All data in monthly resolution\n", "initial_date = '1981-01-01'\n", "final_date = '2019-12-31'\n", "\n", "##############################\n", "#### End of configuration ####\n", "##############################" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "scrolled": false }, "outputs": [], "source": [ "#### Do not modify ####\n", " \n", "%matplotlib inline\n", "import sys\n", "sys.path.append('./utils/subroutines/')\n", "import pices\n", "from pices import analyze_PICES_Region\n", "\n", "analyze_PICES_Region(region, var, initial_date, final_date)\n", "\n", "#### End of script ####" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.3" } }, "nbformat": 4, "nbformat_minor": 2 }