From 44ff308c95710689f70f1ecf277c5e0613d61627 Mon Sep 17 00:00:00 2001 From: Lionel GUEZ <guez@lmd.ens.fr> Date: Tue, 16 Feb 2021 09:28:50 +0100 Subject: [PATCH] Polish --- Convert_Matlab/inst_eddies_HDF5.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Convert_Matlab/inst_eddies_HDF5.py b/Convert_Matlab/inst_eddies_HDF5.py index 8dafbc67..a3307d22 100755 --- a/Convert_Matlab/inst_eddies_HDF5.py +++ b/Convert_Matlab/inst_eddies_HDF5.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 -"""Converts an adt_YYYY-MM-DD_v6.mat file to a triplet of shapefiles. The - mat file should be in v6 format. The data is the set of detected +"""Converts an adt_YYYY-MM-DD.mat file to a triplet of shapefiles. The + mat file should be in HDF5 format. The data is the set of detected instantaneous eddies at a given date. """ @@ -36,8 +36,8 @@ def define_fields(writers): writers["max_speed"].field("eddy_index", "N", 5) def write(writers, cell, cyclone): - """writers is a dictionary. cell is a numpy.ndarray with shape (number - of eddies, 21). cyclone is a boolean. + """writers is a dictionary. cell[:].transpose() is a numpy.ndarray + with shape (number of eddies, 21). cyclone is a boolean. """ eddy_index = 0 -- GitLab