- Jul 05, 2024
-
-
-
This is equivalent for a return value of `good_contour`. It is a little faster to test a logical value, maybe.
-
-
-
Do not orient nor compute the area of `cont_list(n_cont)`. When the area is too small, then we have one more copy than before, of `cont_list(n_cont)` to `out_cont`, but, on the other hand, we have one less call to `ccw_orient` than before. So this change should not impact performance. Note that the orientation and area of `cont_list(n_cont)` were not used after `get_1_outerm`. Preparing to keep `cont_list` in projection coordinates.
-
-
Procedure `good_contour` now takes input in projection coordinates and returns a contour in projection coordinates. The dummy argument step of `good_contour` is thus removed.
-
- Jun 12, 2024
-
-
Lionel GUEZ authored
-
- Jun 23, 2023
-
-
Lionel GUEZ authored
It is `min_area` that we need in the code, in `get_1_outerm`. Instead of computing it in the main program and trickling it down to `get_1_outerm`, define it in `config_m`.
-
- May 22, 2023
-
-
Lionel GUEZ authored
-
Lionel GUEZ authored
-
Lionel GUEZ authored
-
- May 17, 2023
-
-
Lionel GUEZ authored
-
- May 16, 2023
-
-
Lionel GUEZ authored
-
- May 11, 2023
-
-
Lionel GUEZ authored
Follow commit d540a1f3.
-
- Apr 18, 2023
-
-
Lionel GUEZ authored
-
- Mar 27, 2023
-
-
Lionel GUEZ authored
-
- Feb 20, 2023
-
-
Lionel GUEZ authored
This avoids copying `cont_list(n_cont)` to `out_cont` if it has insufficient area.
-
Lionel GUEZ authored
-
Lionel GUEZ authored
-
Lionel GUEZ authored
Add dummy arguments `cont_list` and `n_cont` to `get_1_outerm`.
-
Lionel GUEZ authored
Because we are going to add another intent out argument.
-
Lionel GUEZ authored
-
Lionel GUEZ authored
-
Lionel GUEZ authored
Keep the good contours found when looking for the outermost contour, subject to a maximum of `n_max_cont` contours. The idea is to use them later when looking for the maximum-speed contour. Inside function `get_1_outerm`, we temporarily store the good contours in a local explicit-shape array, `cont_list`.
-
Lionel GUEZ authored
-
- Jan 25, 2023
-
-
Lionel GUEZ authored
-
- Dec 06, 2022
-
-
Lionel GUEZ authored
Rename dummy argument `innermost_level` to `innermost_level_2`.
-
- Jul 25, 2022
-
- Jan 04, 2022
-
-
Lionel GUEZ authored
Since `NR_util` has been integrated into Jumble.
-
- Feb 26, 2021
-
-
Lionel GUEZ authored
Also split the tests, Fortran source files, Python files and JSon files. Keep at the top level the files used in both `Inst_eddies` and Overlap. Motivations for the split: - The top directory contained many files. - It may be useful to compile only one of the two sub-projects. For example, only `Inst_eddies` on Ciclad, where MPI 3 is not available.
-
- Aug 08, 2019
-
-
Lionel GUEZ authored
Take into account new policy in `filter.py`: the names of the three shapefiles are always the same and form a unit in a snaphot directory. Rename `compil_prod_dir`to `build_dir` in JSON test files. Add a test of `successive_overlap` with global grid, normal resolution.
-
Lionel GUEZ authored
Take into account new policy in `filter.py`: the names of the three shapefiles are always the same and form a unit in a snaphot directory. Rename `compil_prod_dir`to `build_dir` in JSON test files. Add a test of `successive_overlap` with global grid, normal resolution.
-
- Apr 03, 2019
-
-
Lionel GUEZ authored
-
- Feb 04, 2019
-
-
Lionel GUEZ authored
spherical_polygon_area to spher_polygon_area. In procedure max_speed_contour_ssh, instead of aborting when the speed is not defined, continue with missing_ssh. Found such a case in November 29th, 2015 data. Added corresponding test. In procedure set_max_speed, if max_speed_contour_ssh returns missing_ssh then we just take the outermost contour as max-speed contour.
-
- Sep 25, 2018
-
-
Lionel GUEZ authored
values at longitude boundaries, in case of periodicity. Add argument "periodic" to procedures get_snapshot and set_all_outerm. Duplicate values at longitude boundaries in ssh, u, v if periodic. set_all_outerm can now call local_extrema with periodic true. In procedure set_all_outerm, we shift the longitudes of outside points if necessary. In program test_get_snapshot, define periodic from step and nlon.
-
- Sep 21, 2018
-
-
Lionel GUEZ authored
internal procedure. In procedure local_extrema, if periodic, pass arrays "field" and "extr_map" with a duplicate column at each bound. Then there is no need to copy to local 3x3 arrays. Add argument my_lbound.
-
- Sep 03, 2018
-
-
Lionel GUEZ authored
reading and spares some disk space: we can reduce the size of the field from 20 to 14 characters. We do not loose precision with this reduction because the order of magnitude of the area is 1e3 km2 or more so the decimal part of the field was 0. Accordingly, change the are for a null contour from - 1 to - 1e6 m2. Bug fix in program test_set_max_speed. No need for width 20 for field "speed".
-
- Aug 31, 2018
-
-
Lionel GUEZ authored
-