Thomas Saillour
Thomas Saillour
rebased on latest master #78
> Is this output from Telemac? From TELEMAC yes, but through [pyPoseidon](https://github.com/ec-jrc/pyPoseidon/blob/92a797eb396bc5263fd95d94f93c088450056a65/pyposeidon/telemac.py#L1153) where I convert from Selafin file to xarray Dataset. All details from one format to other is in...
I forgot the `.slf` file, the PR is not complete
ok ready for review
I might have forgotten something important to remove the overlapping triangles: this is what ```python mesh = api.open_dataset('meshes/global-v0.2.slf') map = thalassa.plot(mesh.isel(time=0), variable = 'B', show_mesh = True) ``` gives me...
sorry my bad. I though dropping elements crossing IDL was integrated in the `create_trimesh()` function. ```python mesh = api.open_dataset('meshes/global-v0.2.slf') mesh_ = thalassa.utils.drop_elements_crossing_idl(mesh) map = thalassa.plot(mesh_.isel(time=0), variable = 'B', show_mesh =...
> Response from NDBC: > > > [...] We do not have an API though we are hopeful to develop one in the future. > > Our FAQs might be...
Hi @abdu558 I think this happens because your requirements files are in conflict with the poetry files. i.e. * `requirements/requirements-dev.txt` and * `requirements/requirements.txt` Since you haven't committed changes in `pyproject.toml`...
@abdu558 to avoid having to do this every time on github ci, I recommend to set the pre-commit hooks locally on your machine General instruction for `pre-commit` are there: https://pre-commit.com/...
Hi, I have tried to test on my side but I get a `ResponseException: NDBC API: Failed to handle returned data.` from ndbc-api. All test fail but also the first...