From 927f9bbb8c3af8a0b4f107501a6db22a9e9a885a Mon Sep 17 00:00:00 2001 From: Dante Campagnoli Napolitano Date: Mon, 12 Jul 2021 16:41:38 +0200 Subject: [PATCH 1/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 663bc46..4a86840 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Check `examples` folder in our [github repository](github.com/iuryt/OceanLab/exa - *my_eof_interp()*: Fillgaps on matrix based on EOFs (translated from Cesar Rocha Matlab version); - **UTILS** - *argdistnear()*: Searchs the position of the closest points in an array to a reference point; - - *meaneddy()*: Performs an eddy-mean decomposing with a low-pass filter; + - *meaneddy()*: Performs an eddy-mean decomposition with a low-pass filter; ## Contributors From ea4c132c6fa161cf8e9ecccc1a9c499aacb0694d Mon Sep 17 00:00:00 2001 From: Dante Campagnoli Napolitano Date: Tue, 19 Oct 2021 10:31:36 +0200 Subject: [PATCH 2/6] Update README.md fix link to examples (master) directory --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dd1f34..31e5670 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Package of Python scripts for Oceanography (Python +3.6) ## Code Example -Check `examples` folder in our [github repository](github.com/iuryt/OceanLab/examples). +Check `examples` folder in our [github repository](github.com/OceanLabPy/OceanLab/tree/master/examples). ## Installation From ca4f2e1c5781a93f78d7a242bf2e2edbae241265 Mon Sep 17 00:00:00 2001 From: Dante Campagnoli Napolitano Date: Tue, 19 Oct 2021 10:32:58 +0200 Subject: [PATCH 3/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31e5670..9b57986 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Package of Python scripts for Oceanography (Python +3.6) ## Code Example -Check `examples` folder in our [github repository](github.com/OceanLabPy/OceanLab/tree/master/examples). +Check `examples` folder in our [github repository](tree/master/examples). ## Installation From 57cd9456ee7c96c4ab96c87b3b1f2f5a141c562d Mon Sep 17 00:00:00 2001 From: Dante Campagnoli Napolitano Date: Tue, 19 Oct 2021 10:34:04 +0200 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b57986..31e5670 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Package of Python scripts for Oceanography (Python +3.6) ## Code Example -Check `examples` folder in our [github repository](tree/master/examples). +Check `examples` folder in our [github repository](github.com/OceanLabPy/OceanLab/tree/master/examples). ## Installation From 7f3f6c9da3b7b5ad2c6de9d46b36451f590197e9 Mon Sep 17 00:00:00 2001 From: Dante Campagnoli Napolitano Date: Tue, 19 Oct 2021 10:36:10 +0200 Subject: [PATCH 5/6] Update README.md fixed link to examples --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31e5670..8153edd 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Package of Python scripts for Oceanography (Python +3.6) ## Code Example -Check `examples` folder in our [github repository](github.com/OceanLabPy/OceanLab/tree/master/examples). +Check `examples` folder in our [github repository](../../tree/master/examples). ## Installation From 4cc0b8dc346e8c7d57659e7a99456e88c7adecc7 Mon Sep 17 00:00:00 2001 From: Ou Wang Date: Thu, 31 Aug 2023 15:45:08 -0700 Subject: [PATCH 6/6] Fix a typo --- examples/DYN_EOF.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/DYN_EOF.ipynb b/examples/DYN_EOF.ipynb index 7feb8d1..6f04e4f 100644 --- a/examples/DYN_EOF.ipynb +++ b/examples/DYN_EOF.ipynb @@ -284,7 +284,7 @@ } ], "source": [ - "n = 100\n", + "q = 100\n", "xi,yi = np.meshgrid(np.linspace(0,15,q),np.linspace(0,15,q))\n", "\n", "vorti = DYN.zeta(xi,yi,lambdify((x,y),u)(xi,yi),lambdify((x,y),v)(xi,yi))\n",