From 54fbaa7f209a0c7117435b7129c6ec830d80e7df Mon Sep 17 00:00:00 2001 From: Lionel GUEZ <guez@lmd.ens.fr> Date: Fri, 16 Dec 2022 16:14:56 +0100 Subject: [PATCH] Polish --- Common/shpc_open.f90 | 16 +++++++--------- README.md | 12 ++++++++++++ 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/Common/shpc_open.f90 b/Common/shpc_open.f90 index 4a84e867..b410ea34 100644 --- a/Common/shpc_open.f90 +++ b/Common/shpc_open.f90 @@ -52,15 +52,13 @@ contains end if hshp%cyclone = cyclone - else - if (.not. present(iostat)) then - print *, "shpc_open: failed" - print *, "shpc_dir = ", shpc_dir - print *, "cyclone = ", cyclone - print *, "slice = ", slice - print *, "pszaccess = ", pszaccess - stop 1 - end if + else if (.not. present(iostat)) then + print *, "shpc_open: failed" + print *, "shpc_dir = ", shpc_dir + print *, "cyclone = ", cyclone + print *, "slice = ", slice + print *, "pszaccess = ", pszaccess + stop 1 end if end subroutine shpc_open diff --git a/README.md b/README.md index e7800b69..1625be42 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,15 @@ This code implements ideas and methods described in the following articles: Dependencies: graph-tool networkx pyshp f90nml cartopy pygifsicle ipython h5py pynco pygraphviz + +If your operating system is Ubuntu 22.04 or more recent and you do not +have an account on the Gitlab server of IN2P3, the certificate used by +Gitlab will not be accepted by your machine. Therefore you need to +deactivate SSL verification when contacting Gitlab: + +``` +$ GIT_SSL_NO_VERIFY=true git clone --recurse-submodules \ + https://gitlab.in2p3.fr/ipsl/lmd/dpao/Detection_eddies.git +$ cd Detection_eddies +$ git config http.sslVerify false +``` -- GitLab