clementbricaud

Results 3 comments of clementbricaud

Hello thank you very much for your help ! I am trying that: fieldset.U.grid.lon = np.where(fieldset.U.grid.lon > 180, fieldset.U.grid.lon-360, fieldset.U.grid.lon) but I have an error: fieldset.U.grid.lon = np.where(fieldset.U.grid.lon > 180,...

if (grid_regularity == 'native'): fieldset_current = FieldSet.from_nemo(filenames, variables, dimensions, allow_time_extrapolation=True) fieldset = fieldset_current if ('GLO36V1_' in model): print(fieldset) print(fieldset.U) print("-------------- fieldset.U.grid") print(fieldset.U.grid) print("-------------- fieldset.U.grid.lon") print(fieldset.U.grid.lon) print(fieldset.U.grid.lon[5000,0]) #fieldset.U.grid.lon = np.where(fieldset.U.grid.lon >...

[test_parcel.py.txt](https://github.com/user-attachments/files/20992544/test_parcel.py.txt) Hello, thank you for your help I have tried the example_nemo_curvilinear.py example from https://docs.oceanparcels.org/en/latest/documentation/additional_examples.html with my model fields from ORCA36. my python script is attached to this message I...