Philippe Miron

Results 6 issues of Philippe Miron

Hi all, I'm trying to plot bathymetry contour line and running into some issues. Depending on the selected region, I get straight lines that looks like artifacts resulting from the...

I updated the script that generates the logo in the example, and used it to output a new png icon. ## Rationale Fix issue [1465](https://github.com/SciTools/cartopy/issues/1465). The code to centered the...

### What happened? I have nan values in a date vector stored in a netCDF. When I read on my ARM Apple computer with `xr.open_dataset()`, it is not properly recognized....

needs review
upstream issue

## Source Dataset I'm trying to port a code that converts the hourly GDP dataset (~20'000 individual netCDF files) into a ragged array to a pangeo-forge recipe. - AOML website...

proposed recipe

Looking at the code in `data.py`: ``` idx = np.random.choice(train_data.shape[0], 1000, replace=False) test_data = train_data[idx, :] train_data = PinnDataset(train_data) test_data = PinnDataset(test_data) ``` the testing data is used during training,...

Currently, the `RaggedArray` object can be created with: ``` class RaggedArray: def __init__( self, coords: dict, metadata: dict, data: dict, attrs_global: dict | None = {}, attrs_variables: dict | None...

enhancement