diff --git a/README.md b/README.md index aae0180..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/iuryt/OceanLab/examples). +Check `examples` folder in our [github repository](../../tree/master/examples). ## Installation @@ -28,7 +28,7 @@ Check `examples` folder in our [github repository](github.com/iuryt/OceanLab/exa - *reconstruct_ceof()*: Reconstructs the CEOF modes individually; - **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 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",