matplotlib / basemap

Plot on map projections (with coastlines and political boundaries) using matplotlib
MIT License
772 stars 390 forks source link

Some countries borders not showing up in map #566

Closed guidocioni closed 7 months ago

guidocioni commented 1 year ago

I remember seeing this already a long time ago but I never managed to solve it.

I'm plotting a map using this

m = Basemap(projection='merc',
                llcrnrlat=extents[2],
                urcrnrlat=extents[3],
                llcrnrlon=extents[0],
                urcrnrlon=extents[1],
                lat_ts=20,
                resolution='h')

m.fillcontinents(color='lightgray', lake_color='#2081C3', zorder=1)
m.drawlsmask(land_color=(0, 0, 0, 0), ocean_color='#2081C3',
                 resolution='f', lakes=True, zorder=2, grid=1.25)

ax = plt.gca()

m.drawcountries(linewidth=0.8)
m.drawcoastlines()

m.readshapefile(f'{SHAPEFILES_DIR}/ITA_adm_shp/ITA_adm1',
                        'ITA_adm1', linewidth=0.8, color='black', zorder=5)

but some countries (like Switzerland) don't show up.

realtime_wind_italia

Weirdly enough when centering the projection over France Switzerland shows up

realtime_wind_francia

molinav commented 1 year ago

Hi @guidocioni! Which OS, Python version and basemap version are you using?

guidocioni commented 1 year ago

Hi @guidocioni! Which OS, Python version and basemap version are you using?

CentOs 7 python 3.10.6 basemap 1.3.6 py310he832c09_0 conda-forge basemap-data 1.3.2 pyhd8ed1ab_1 conda-forge basemap-data-hires 1.3.2 pyhd8ed1ab_1 conda-forge

molinav commented 1 year ago

Sorry to bother again, can you share the value of your extents list? Then I can try to reproduce the problem in my laptop.

guidocioni commented 1 year ago

Sorry to bother again, can you share the value of your extents list? Then I can try to reproduce the problem in my laptop.

No worries, and you're right I haven't attached them 😛

[6.0, 19.0, 36.0, 47.7]

guidocioni commented 8 months ago

Hello @molinav , do you have any update on this? Thanks

molinav commented 8 months ago

Hi @guidocioni! Sorry for being so late with this. For the moment, I can confirm you the bug using the following code snippet:

import sys
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.basemap import __version__ as basemap_version
from mpl_toolkits.basemap import Basemap

print("Python version: ", sys.version)
print("Basemap version:", basemap_version)

plt.clf()
ax = plt.gca()

extents = [6.0, 19.0, 36.0, 47.7]
bmap = Basemap(projection="merc",
               llcrnrlat=extents[2],
               urcrnrlat=extents[3],
               llcrnrlon=extents[0],
               urcrnrlon=extents[1],
               lat_ts=20,
               resolution="h")

bmap.drawcountries(linewidth=1, color="blue")
bmap.drawcoastlines(linewidth=1, color="red")

This returns the following in my console:

Python version:  3.11.2 (tags/v3.11.2:878ead1, Feb  7 2023, 16:38:35) [MSC v.1934 64 bit (AMD64)]
Basemap version: 1.3.8

And the following image is obtained, with Switzerland borders missing, as in your original message: missing_switzerland_border

I would need to check the internals of Basemap.drawcountries, to see if the Switzerland borders are read correctly from the basemap_data_hires files (which I would expect), and at which point the borders are filtered out from plotting.

guidocioni commented 8 months ago

Yes from my previous experience there is some "sweet spot" while setting the projection extents that causes the Switzerland borders to be exlcuded. However, I don't know enough about the basemap internals to understand where and how the filtering is done.

molinav commented 7 months ago

I have found the code block that is causing the issue: https://github.com/matplotlib/basemap/blob/c20c146bc827332eeaba70e65ff68c046855af41/packages/basemap/src/mpl_toolkits/basemap/__init__.py#L1371-L1373

When the Switzerland border is picked in your example, poly.intersects(boundarypolyll) checks if the polygon and the boundary box are not disjoint (this is calling GEOSIntersects internally), and it is returning True. This means that this if-block identifies successfully that the Switzerland polygon needs to be added.

In the next lines, geoms = poly.intersection(boundarypolyll) is computing the concrete part of the Switzerland polygon within the boundary box (because basemap does not want to draw anything outside the boundary box), and surprisingly it is returning an empty list.

So there is clearly a bug here to be inspected more, because it cannot be that we identify the polygon and the boundary box as not disjoint, but when asking for the concrete polygon coordinates inside the boundary box we get none.

I am still not sure where the bug comes from, but it is either GEOS itself (I would be surprised) or the Cython interface to GEOS. I will try to test this with a newer GEOS (since the basemap wheels bundle an old GEOS, version 3.5.1 for basemap 1.3.x) to confirm that the Cython interface needs a look.

molinav commented 7 months ago

Bingo, the issue is in the Cython interface: https://github.com/matplotlib/basemap/blob/c20c146bc827332eeaba70e65ff68c046855af41/packages/basemap/src/_geoslib.pyx#L275-L316

After the call to GEOSIntersection, there are if-clauses to postprocess the result of GEOSIntersection before returning, but if the GEOS geometry type is not implemented, it is silently returning [] (note that there is even a commented NotImplementedError call). I have recompiled the Cython extension uncommenting these lines and now I get the following error when reaching the Switzerland polygon:

NotImplementedError: intersections of type 'b'GeometryCollection'' not yet implemented

So your problem is coming from the incapability of the Cython interface to process GeometryCollection objects in BaseGeometry.intersection and silently returning nothing.

One fast workaround below would be to check if geoms is empty, and then simply draw the whole polygon, because we know from poly.intersects(boundarypolyll) that geoms cannot be empty. The side effect is that some segments will be drawn outside the map boundaries, but they should still be clipped by matplotlib when plotting, unless the clipping mechanism is disabled on purpose (which is discouraged when working with basemap, because we do not want things drawn outside the map): https://github.com/matplotlib/basemap/blob/c20c146bc827332eeaba70e65ff68c046855af41/packages/basemap/src/mpl_toolkits/basemap/__init__.py#L1371-L1373

                            if poly.intersects(boundarypolyll):
                                if name != 'gshhs' or as_polygons:
                                    geoms = poly.intersection(boundarypolyll)
                                    if not geoms:
                                        geoms = [poly]

Of course the Cython interface still would need the real fix, but then I might not make it for basemap 1.3.9, which I wanted to release today or tomorrow. This is how your example looks like when I apply the patch in my local copy: switzerland_border_patch

molinav commented 7 months ago

In the end, I fixed the source of the problem in _geoslib.pyx because it was not that complicated (at least to make it work with the simplest cases like the bug that you found). I will need to revisit _geoslib.pyx in the future, but for the 1.3.9 release I would say it is ok.

molinav commented 7 months ago

I have just released basemap 1.3.9 on PyPI and conda-forge, which includes the bugfix for the missing country borders. If there is still any problem on your side, feel free to reopen the issue.

guidocioni commented 7 months ago

@molinav thank you so much for this! I have to admit I haven't followed everything here but I'm glad you were able to find a solution for a long standing bug that I randomly discovered 😄

guidocioni commented 6 months ago

Hey @molinav , I'm trying to deploy this in production but having troubles updating basemap with conda.

I tried to update it but it wouldn't let me, then I tried to install the specific version and I'm getting these incompatibilities. However, it seems that there is always a good candidate so I'm not sure where the incompatibility is coming from.

The following packages are incompatible
├─ arrow-cpp is installable with the potential options
│  ├─ arrow-cpp [0.1.post|0.1.pre|0.2.post|9.0.0], which can be installed;
│  ├─ arrow-cpp [10.0.1|11.0.0|...|9.0.0] would require
│  │  ├─ libabseil 20220623.0 cxx17*, which can be installed;
│  │  └─ libarrow [10.0.1 h0cefc63_3_cuda|10.0.1 h0fa7300_7_cpu|...|11.0.0 hf9c26a6_0_cpu], which requires
│  │     └─ libabseil 20220623.0 cxx17*, which can be installed;
│  ├─ arrow-cpp [0.10.0|0.11.0|...|0.9.0] would require
│  │  └─ python [2.7* |>=2.7,<2.8.0a0 ], which can be installed;
│  ├─ arrow-cpp [0.10.0|0.3.0|...|0.9.0] would require
│  │  └─ python [3.5* |>=3.5,<3.6.0a0 ], which can be installed;
│  ├─ arrow-cpp [0.10.0|0.11.0|...|5.0.0] would require
│  │  └─ python >=3.6,<3.7.0a0 , which can be installed;
│  ├─ arrow-cpp [0.11.1|0.12.0|...|9.0.0] would require
│  │  └─ python >=3.7,<3.8.0a0 , which can be installed;
│  ├─ arrow-cpp [0.15.1|0.16.0|...|9.0.0] would require
│  │  └─ python >=3.8,<3.9.0a0 , which can be installed;
│  ├─ arrow-cpp [0.17.1|1.0.1|...|9.0.0] would require
│  │  └─ python >=3.9,<3.10.0a0 , which can be installed;
│  ├─ arrow-cpp [0.3.0|0.3.0.post|...|0.9.0] would require
│  │  └─ python 3.6* , which can be installed;
│  ├─ arrow-cpp [1.0.1|2.0.0|...|6.0.0] would require
│  │  └─ grpc-cpp >=1.40.0,<1.41.0a0 , which can be installed;
│  ├─ arrow-cpp [1.0.1|2.0.0|...|6.0.1] would require
│  │  └─ grpc-cpp >=1.41.1,<1.42.0a0 , which can be installed;
│  ├─ arrow-cpp [3.0.0|4.0.1|5.0.0|6.0.1|7.0.0] would require
│  │  └─ grpc-cpp >=1.43.2,<1.44.0a0 , which can be installed;
│  ├─ arrow-cpp [3.0.0|4.0.1|5.0.0|6.0.1] would require
│  │  └─ grpc-cpp >=1.42.0,<1.43.0a0 , which can be installed;
│  ├─ arrow-cpp [3.0.0|5.0.0|6.0.1] would require
│  │  └─ grpc-cpp >=1.45.1,<1.46.0a0 , which can be installed;
│  ├─ arrow-cpp [3.0.0|4.0.1|5.0.0|6.0.1|6.0.2] would require
│  │  └─ grpc-cpp >=1.45.2,<1.46.0a0 , which can be installed;
│  ├─ arrow-cpp [3.0.0|4.0.1|5.0.0|6.0.1] would require
│  │  └─ grpc-cpp >=1.46.3,<1.47.0a0 , which can be installed;
│  ├─ arrow-cpp [3.0.0|4.0.1|5.0.0|6.0.1] would require
│  │  └─ grpc-cpp >=1.45.0,<1.46.0a0 , which can be installed;
│  ├─ arrow-cpp [3.0.0|4.0.1|5.0.0|6.0.1] would require
│  │  └─ grpc-cpp >=1.44.0,<1.45.0a0 , which can be installed;
│  ├─ arrow-cpp 6.0.2 would require
│  │  └─ grpc-cpp >=1.46.4,<1.47.0a0 , which can be installed;
│  ├─ arrow-cpp [6.0.2|7.0.1|8.0.1|9.0.0] would require
│  │  └─ python >=3.11,<3.12.0a0 , which can be installed;
│  ├─ arrow-cpp [7.0.0|7.0.1|8.0.0|8.0.1|9.0.0] would require
│  │  └─ abseil-cpp >=20210324.2,<20210324.3.0a0 , which can be installed;
│  ├─ arrow-cpp [7.0.0|7.0.1|8.0.1|9.0.0] would require
│  │  └─ libabseil 20211102.0 cxx17*, which can be installed;
│  ├─ arrow-cpp [7.0.0|8.0.0|8.0.1|9.0.0] would require
│  │  └─ abseil-cpp >=20211102.0,<20211102.1.0a0 , which can be installed;
│  ├─ arrow-cpp 10.0.1 would require
│  │  └─ libprotobuf >=3.21.12,<3.22.0a0 , which can be installed;
│  ├─ arrow-cpp [10.0.1|11.0.0|8.0.1|9.0.0] would require
│  │  ├─ libabseil 20230125 cxx17*, which can be installed;
│  │  └─ libarrow [10.0.1 h1bda3dc_11_cpu|10.0.1 h281be33_11_cuda|11.0.0 h1bda3dc_6_cpu|11.0.0 h281be33_6_cuda], which requires
│  │     └─ libabseil 20230125 cxx17*, which can be installed;
│  ├─ arrow-cpp [10.0.1|11.0.0|12.0.0|8.0.1|9.0.0] would require
│  │  ├─ libarrow [10.0.1 h1bef5b0_12_cuda|10.0.1 h2112b9f_22_cpu|...|12.0.0 h4c9df9b_0_cpu], which requires
│  │  │  └─ re2 >=2023.2.2,<2023.2.3.0a0 , which can be installed;
│  │  └─ re2 >=2023.2.2,<2023.2.3.0a0 , which can be installed;
│  ├─ arrow-cpp [10.0.1|11.0.0|8.0.1|9.0.0] would require
│  │  ├─ libabseil >=20230125.2,<20230126.0a0  with the potential options
│  │  │  ├─ libabseil 20230125.2, which can be installed;
│  │  │  └─ libabseil 20230125.3 conflicts with any installable versions previously reported;
│  │  └─ libarrow [10.0.1 h1496dd7_29_cuda|10.0.1 h17fb9fa_27_cpu|...|11.0.0 hb3168b4_21_cuda], which requires
│  │     └─ libabseil >=20230125.2,<20230126.0a0  with the potential options
│  │        ├─ libabseil 20230125.2, which can be installed;
│  │        └─ libabseil 20230125.3 conflicts with any installable versions previously reported;
│  ├─ arrow-cpp [10.0.1|9.0.0] would require
│  │  ├─ libabseil >=20230125.3,<20230126.0a0 , which conflicts with any installable versions previously reported;
│  │  └─ libarrow [10.0.1 h1ed0495_41_cpu|10.0.1 h37b21ae_40_cpu|...|10.0.1 hf8fed9e_38_cuda], which requires
│  │     └─ libabseil >=20230125.3,<20230126.0a0 , which conflicts with any installable versions previously reported;
│  ├─ arrow-cpp 10.0.1 would require
│  │  └─ libarrow [10.0.1 h0f80be4_45_cpu|10.0.1 h1935d02_42_cpu|...|10.0.1 hd3e26bc_43_cuda], which requires
│  │     └─ libgrpc >=1.57.0,<1.58.0a0 , which can be installed;
│  ├─ arrow-cpp 10.0.1 would require
│  │  └─ libarrow [10.0.1 h392d4ea_48_cuda|10.0.1 h3d00cb7_46_cuda|...|10.0.1 hecbb4c5_50_cpu], which requires
│  │     └─ libgrpc >=1.58.1,<1.59.0a0 , which can be installed;
│  ├─ arrow-cpp [10.0.1|11.0.0|12.0.0|12.0.1|13.0.0] would require
│  │  └─ libarrow [10.0.1 h220006d_55_cuda|10.0.1 h38938c5_56_cuda|...|13.0.0 hf8fed9e_0_cuda], which requires
│  │     └─ parquet-cpp <0.0a0 , which can be installed;
│  ├─ arrow-cpp 10.0.1 would require
│  │  └─ libprotobuf >=4.23.3,<4.23.4.0a0 , which can be installed;
│  ├─ arrow-cpp 11.0.0 would require
│  │  └─ libarrow [11.0.0 h1bef5b0_7_cuda|11.0.0 h4e7aab6_8_cuda|11.0.0 h5013ebd_7_cpu|11.0.0 h7d72afc_8_cpu], which requires
│  │     ├─ libabseil 20230125 cxx17*, which can be installed;
│  │     └─ re2 >=2023.2.2,<2023.2.3.0a0 , which can be installed;
│  ├─ arrow-cpp 12.0.1 would require
│  │  └─ libprotobuf >=4.23.2,<4.23.3.0a0 , which can be installed;
│  ├─ arrow-cpp 9.0.0 would require
│  │  └─ __cuda >=10.2 , which is missing on the system;
│  └─ arrow-cpp 9.0.0 would require
│     └─ __cuda >=11.2 , which is missing on the system;
├─ basemap 1.3.9  is installable with the potential options
│  ├─ basemap 1.3.9 would require
│  │  └─ geos >=3.12.1,<3.12.2.0a0 , which can be installed;
│  ├─ basemap 1.3.9 would require
│  │  └─ python >=3.11,<3.12.0a0 , which can be installed;
│  ├─ basemap 1.3.9 would require
│  │  └─ python >=3.8,<3.9.0a0 , which can be installed;
│  └─ basemap 1.3.9 would require
│     └─ python >=3.9,<3.10.0a0 , which can be installed;
├─ jpeg is requested and can be installed;
├─ libarrow is installable with the potential options
│  ├─ libarrow [10.0.1|11.0.0], which can be installed (as previously explained);
│  ├─ libarrow 10.0.1, which can be installed (as previously explained);
│  ├─ libarrow 10.0.1, which cannot be installed (as previously explained);
│  ├─ libarrow [10.0.1|11.0.0|12.0.1], which can be installed (as previously explained);
│  ├─ libarrow [10.0.1|11.0.0], which can be installed (as previously explained);
│  ├─ libarrow [10.0.1|11.0.0|12.0.0], which can be installed (as previously explained);
│  ├─ libarrow [10.0.1|11.0.0|12.0.0|12.0.1|13.0.0], which can be installed (as previously explained);
│  ├─ libarrow 10.0.1, which can be installed (as previously explained);
│  ├─ libarrow 11.0.0, which can be installed (as previously explained);
│  └─ libarrow [14.0.0|14.0.1|14.0.2] would require
│     └─ arrow-cpp <0.0a0 , which conflicts with any installable versions previously reported;
├─ libgdal is installable with the potential options
│  ├─ libgdal [3.4.3|3.5.3|...|3.6.3] would require
│  │  └─ geos >=3.11.1,<3.11.2.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [2.4.1|2.4.2|2.4.3|3.0.1|3.0.2] would require
│  │  └─ geos >=3.7.2,<3.7.3.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [2.4.4|3.0.2|3.0.3|3.0.4] would require
│  │  └─ geos >=3.8.0,<3.8.1.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [2.4.4|3.0.4|...|3.2.1] would require
│  │  └─ geos >=3.8.1,<3.8.2.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [3.1.4|3.2.1|...|3.3.3] would require
│  │  └─ geos >=3.9.1,<3.9.2.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [3.1.4|3.2.1] would require
│  │  └─ geos >=3.9.0,<3.9.1.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [3.3.3|3.4.0|3.4.1] would require
│  │  └─ geos >=3.10.1,<3.10.2.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [3.3.3|3.4.0] would require
│  │  └─ geos >=3.10.0,<3.10.1.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [3.3.3|3.4.1|3.4.2|3.4.3|3.5.0] would require
│  │  └─ geos >=3.10.2,<3.10.3.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [3.5.0|3.5.1|3.5.2|3.5.3|3.6.0] would require
│  │  └─ geos >=3.11.0,<3.11.1.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal 3.5.0 would require
│  │  └─ geos >=3.10.3,<3.10.4.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [3.5.3|3.6.3|3.6.4|3.7.0] would require
│  │  └─ geos >=3.11.2,<3.11.3.0a0 , which conflicts with any installable versions previously reported;
│  ├─ libgdal [3.6.4|3.7.0|...|3.8.0] would require
│  │  └─ geos >=3.12.0,<3.12.1.0a0 , which conflicts with any installable versions previously reported;
│  └─ libgdal [3.7.3|3.8.0|3.8.1|3.8.2] would require
│     ├─ libxml2 [>=2.11.6,<2.12.0a0 |>=2.12.2,<2.13.0a0 |>=2.12.3,<2.13.0a0 ], which requires
│     │  └─ icu >=73.2,<74.0a0 , which can be installed;
│     ├─ poppler [>=23.11.0,<23.12.0a0 |>=23.12.0,<23.13.0a0 ], which requires
│     │  └─ cairo >=1.18.0,<2.0a0 , which requires
│     │     └─ icu >=73.2,<74.0a0 , which can be installed;
│     └─ xerces-c >=3.2.5,<3.3.0a0 , which requires
│        └─ icu >=73.2,<74.0a0 , which can be installed;
├─ parquet-cpp is installable with the potential options
│  ├─ parquet-cpp [0.1.pre|1.0.0|...|1.5.1] conflicts with any installable versions previously reported;
│  ├─ parquet-cpp [1.1.0|1.1.0.post|...|1.4.0.pre] would require
│  │  └─ arrow-cpp [0.4.* |0.4.1 |...|0.9.0.* ], which can be installed (as previously explained);
│  ├─ parquet-cpp 1.5.0.pre would require
│  │  └─ arrow-cpp 0.10.0.* , which can be installed (as previously explained);
│  └─ parquet-cpp 1.5.1 would require
│     └─ arrow-cpp [>=0.11.1,<0.12.0a0 |>=0.12.0,<0.13.0a0 ], which can be installed (as previously explained);
└─ tensorflow-base is installable with the potential options
   ├─ tensorflow-base 2.15.0 would require
   │  ├─ libabseil >=20230802.1,<20230803.0a0 , which requires
   │  │  └─ abseil-cpp 20230802.1* , which conflicts with any installable versions previously reported;
   │  ├─ libgrpc >=1.59.3,<1.60.0a0 , which requires
   │  │  ├─ grpc-cpp 1.59.3* , which conflicts with any installable versions previously reported;
   │  │  └─ libre2-11 >=2023.6.2,<2024.0a0 , which requires
   │  │     └─ re2 2023.06.02.* , which conflicts with any installable versions previously reported;
   │  └─ libprotobuf >=4.24.4,<4.24.5.0a0 , which conflicts with any installable versions previously reported;
   ├─ tensorflow-base [2.10.0|2.11.0|...|2.9.1] would require
   │  └─ icu >=70.1,<71.0a0 , which conflicts with any installable versions previously reported;
   ├─ tensorflow-base [1.13.1|1.13.2] would require
   │  └─ tensorflow-estimator >=1.13.0,<1.14.0a0 , which does not exist (perhaps a missing channel);
   ├─ tensorflow-base [1.14.0|2.4.0|2.4.1|2.4.3|2.6.0] would require
   │  └─ python >=3.6,<3.7.0a0 , which can be installed;
   ├─ tensorflow-base [1.14.0|2.10.0|...|2.9.1] would require
   │  └─ python >=3.7,<3.8.0a0 , which can be installed;
   ├─ tensorflow-base [2.10.0|2.11.0|...|2.9.1] would require
   │  └─ python >=3.8,<3.9.0a0 , which can be installed;
   ├─ tensorflow-base [2.10.0|2.11.0|...|2.9.1] would require
   │  └─ python >=3.9,<3.10.0a0 , which can be installed;
   ├─ tensorflow-base [2.10.0|2.11.0|...|2.9.1] would require
   │  └─ __cuda, which is missing on the system;
   ├─ tensorflow-base 2.7.0 would require
   │  └─ icu >=69.1,<70.0a0 , which conflicts with any installable versions previously reported;
   ├─ tensorflow-base [2.11.1|2.12.1] would require
   │  └─ icu >=72.1,<73.0a0 , which conflicts with any installable versions previously reported;
   ├─ tensorflow-base [2.12.1|2.13.1|2.14.0|2.15.0] would require
   │  ├─ libabseil >=20230125.3,<20230126.0a0 , which conflicts with any installable versions previously reported;
   │  ├─ libgrpc >=1.54.3,<1.55.0a0 , which requires
   │  │  └─ re2 >=2023.3.2,<2023.3.3.0a0 , which conflicts with any installable versions previously reported;
   │  └─ libjpeg-turbo [>=2.1.5.1,<3.0a0 |>=3.0.0,<4.0a0 ], which requires
   │     └─ jpeg <0.0.0a , which conflicts with any installable versions previously reported;
   └─ tensorflow-base [2.12.1|2.13.1|2.14.0|2.15.0] would require
      └─ python >=3.11,<3.12.0a0 , which can be installed.
molinav commented 6 months ago

Hi @guidocioni, can you provide the details of your environment (OS, Python version, anaconda or miniforge, steps to create the environment? Then I can try to reproduce your issue.

guidocioni commented 6 months ago

Hi @guidocioni, can you provide the details of your environment (OS, Python version, anaconda or miniforge, steps to create the environment? Then I can try to reproduce your issue.

I believe you can try to reproduce with a dump of the environment alone. I'm updating the YAML.

name: stations
channels:
  - conda-forge
  - default
dependencies:
  - _libgcc_mutex=0.1=conda_forge
  - _openmp_mutex=4.5=2_gnu
  - _py-xgboost-mutex=2.0=cpu_0
  - absl-py=1.4.0=pyhd8ed1ab_0
  - affine=2.4.0=pyhd8ed1ab_0
  - aiohttp=3.8.5=py310h2372a71_0
  - aiosignal=1.3.1=pyhd8ed1ab_0
  - alsa-lib=1.2.8=h166bdaf_0
  - aom=3.5.0=h27087fc_0
  - appdirs=1.4.4=pyh9f0ad1d_0
  - argon2-cffi=21.3.0=pyhd8ed1ab_0
  - argon2-cffi-bindings=21.2.0=py310h5764c6d_3
  - arrow-cpp=11.0.0=ha770c72_5_cpu
  - asciitree=0.3.3=py_2
  - asttokens=2.2.1=pyhd8ed1ab_0
  - astunparse=1.6.3=pyhd8ed1ab_0
  - async-timeout=4.0.2=pyhd8ed1ab_0
  - attr=2.5.1=h166bdaf_1
  - attrs=22.2.0=pyh71513ae_0
  - autopep8=2.0.2=pyhd8ed1ab_0
  - aws-c-auth=0.6.24=h84a1944_5
  - aws-c-cal=0.5.20=hc60faf5_6
  - aws-c-common=0.8.11=h0b41bf4_0
  - aws-c-compression=0.2.16=h034cb4b_3
  - aws-c-event-stream=0.2.18=h75388cd_6
  - aws-c-http=0.7.4=hf084cc8_2
  - aws-c-io=0.13.17=h10df833_2
  - aws-c-mqtt=0.8.6=hc41645a_6
  - aws-c-s3=0.2.4=h1b8f470_3
  - aws-c-sdkutils=0.1.7=h034cb4b_3
  - aws-checksums=0.1.14=h034cb4b_3
  - aws-crt-cpp=0.19.7=h0073717_7
  - aws-sdk-cpp=1.10.57=h4707e7a_4
  - backcall=0.2.0=pyh9f0ad1d_0
  - backports=1.0=pyhd8ed1ab_3
  - backports.functools_lru_cache=1.6.4=pyhd8ed1ab_0
  - basemap=1.3.6=py310h6b4e152_2
  - basemap-data=1.3.2=pyhd8ed1ab_3
  - basemap-data-hires=1.3.2=pyhd8ed1ab_3
  - beautifulsoup4=4.12.2=pyha770c72_0
  - binutils_impl_linux-64=2.40=hf600244_0
  - binutils_linux-64=2.40=hbdbef99_2
  - bleach=6.0.0=pyhd8ed1ab_0
  - blinker=1.6.2=pyhd8ed1ab_0
  - blosc=1.21.3=hafa529b_0
  - bokeh=3.2.1=pyhd8ed1ab_0
  - boost-cpp=1.78.0=h5adbc97_2
  - branca=0.6.0=pyhd8ed1ab_0
  - brotli=1.0.9=h166bdaf_8
  - brotli-bin=1.0.9=h166bdaf_8
  - brotli-python=1.0.9=py310hd8f1fbe_8
  - brotlipy=0.7.0=py310h5764c6d_1005
  - bzip2=1.0.8=h7f98852_4
  - c-ares=1.18.1=h7f98852_0
  - ca-certificates=2023.11.17=hbcca054_0
  - cached-property=1.5.2=hd8ed1ab_1
  - cached_property=1.5.2=pyha770c72_1
  - cachetools=5.3.1=pyhd8ed1ab_0
  - cairo=1.16.0=ha61ee94_1014
  - cartopy=0.21.1=py310hcb7e713_0
  - cdo=2.1.1=hb8d3726_1
  - certifi=2023.11.17=pyhd8ed1ab_0
  - cffi=1.15.1=py310h255011f_3
  - cfgrib=0.9.10.4=pyhd8ed1ab_0
  - cfitsio=4.2.0=hd9d235c_0
  - cftime=1.6.2=py310hde88566_1
  - charset-normalizer=3.1.0=pyhd8ed1ab_0
  - click=8.1.3=unix_pyhd8ed1ab_2
  - click-plugins=1.1.1=py_0
  - cligj=0.7.2=pyhd8ed1ab_1
  - cloudpickle=2.2.1=pyhd8ed1ab_0
  - cmdstan=2.32.1=hff4ab46_0
  - cmdstanpy=1.2.0=pyhd8ed1ab_0
  - colorama=0.4.6=pyhd8ed1ab_0
  - colorcet=3.0.1=pyhd8ed1ab_0
  - comm=0.1.3=pyhd8ed1ab_0
  - configobj=5.0.8=pyhd8ed1ab_0
  - contourpy=1.0.7=py310hdf3cbec_0
  - convertdate=2.4.0=pyhd8ed1ab_0
  - cramjam=2.6.2=py310h3392aa1_0
  - cryptography=40.0.2=py310h34c0648_0
  - curl=8.0.1=h588be90_0
  - cycler=0.11.0=pyhd8ed1ab_0
  - cython=0.29.34=py310heca2aa9_0
  - cytoolz=0.12.0=py310h5764c6d_1
  - dash=2.9.3=pyhd8ed1ab_0
  - dash-auth=2.0.0=pyhd8ed1ab_0
  - dash-bootstrap-components=1.4.1=pyhd8ed1ab_0
  - dash-core-components=2.0.0=pyhd8ed1ab_1
  - dash-html-components=2.0.0=pyhd8ed1ab_1
  - dash-table=5.0.0=pyhd8ed1ab_1
  - dask=2023.4.0=pyhd8ed1ab_0
  - dask-core=2023.4.0=pyhd8ed1ab_0
  - dataclasses=0.8=pyhc8e2a94_3
  - dbus=1.13.6=h5008d03_3
  - debugpy=1.6.7=py310heca2aa9_0
  - decorator=5.1.1=pyhd8ed1ab_0
  - defusedxml=0.7.1=pyhd8ed1ab_0
  - distributed=2023.4.0=pyhd8ed1ab_0
  - docutils=0.19=py310hff52083_1
  - donfig=0.7.0=pyhd8ed1ab_1
  - eccodes=2.29.0=h54fcba4_0
  - entrypoints=0.4=pyhd8ed1ab_0
  - ephem=4.1.5=py310h2372a71_1
  - executing=1.2.0=pyhd8ed1ab_0
  - expat=2.5.0=hcb278e6_1
  - fasteners=0.17.3=pyhd8ed1ab_0
  - fastparquet=2023.2.0=py310h0a54255_0
  - ffmpeg=5.1.2=gpl_h8dda1f0_106
  - fftw=3.3.10=nompi_hc118613_107
  - findlibs=0.0.2=pyhd8ed1ab_0
  - fiona=1.9.1=py310ha325b7b_0
  - flake8=6.0.0=pyhd8ed1ab_0
  - flask=2.2.3=pyhd8ed1ab_0
  - flask-compress=1.13=pyhd8ed1ab_0
  - flatbuffers=22.12.06=hcb278e6_2
  - flit-core=3.8.0=pyhd8ed1ab_0
  - folium=0.14.0=pyhd8ed1ab_0
  - font-ttf-dejavu-sans-mono=2.37=hab24e00_0
  - font-ttf-inconsolata=3.000=h77eed37_0
  - font-ttf-source-code-pro=2.038=h77eed37_0
  - font-ttf-ubuntu=0.83=hab24e00_0
  - fontconfig=2.14.2=h14ed4e7_0
  - fonts-conda-ecosystem=1=0
  - fonts-conda-forge=1=0
  - fonttools=4.39.3=py310h1fa729e_0
  - freeglut=3.2.2=h9c3ff4c_1
  - freetype=2.12.1=hca18f0e_1
  - freexl=1.0.6=h166bdaf_1
  - fribidi=1.0.10=h36c2ea0_0
  - frozenlist=1.4.0=py310h2372a71_0
  - fsspec=2023.4.0=pyh1a96a4e_0
  - gast=0.4.0=pyh9f0ad1d_0
  - gcc_impl_linux-64=12.3.0=he2b93b0_2
  - gcc_linux-64=12.3.0=h76fc315_2
  - gdal=3.6.2=py310hc1b7723_9
  - geopandas=0.12.2=pyhd8ed1ab_0
  - geopandas-base=0.12.2=pyha770c72_0
  - geos=3.11.1=h27087fc_0
  - geotiff=1.7.1=h7a142b4_6
  - gettext=0.21.1=h27087fc_0
  - gflags=2.2.2=he1b5a44_1004
  - giflib=5.2.1=h0b41bf4_3
  - glib=2.76.2=hfc55251_0
  - glib-tools=2.76.2=hfc55251_0
  - glog=0.6.0=h6f12383_0
  - gmp=6.2.1=h58526e2_0
  - gmpy2=2.1.2=py310h3ec546c_1
  - gnutls=3.7.8=hf3e180e_0
  - google-auth=2.22.0=pyh1a96a4e_0
  - google-auth-oauthlib=0.4.6=pyhd8ed1ab_0
  - google-pasta=0.2.0=pyh8c360ce_0
  - graphite2=1.3.13=h58526e2_1001
  - greenlet=2.0.2=py310heca2aa9_0
  - grpcio=1.51.1=py310h4a5735c_1
  - gst-plugins-base=1.22.0=h4243ec0_2
  - gstreamer=1.22.0=h25f0c4b_2
  - gstreamer-orc=0.4.33=h166bdaf_0
  - gxx_impl_linux-64=12.3.0=he2b93b0_2
  - gxx_linux-64=12.3.0=h8a814eb_2
  - h5py=3.8.0=nompi_py310h0311031_100
  - harfbuzz=6.0.0=h8e241bc_0
  - hdf4=4.2.15=h9772cbc_5
  - hdf5=1.12.2=nompi_h4df4325_101
  - holidays=0.34=pyhd8ed1ab_0
  - holoviews=1.18.0=pyhd8ed1ab_0
  - hvplot=0.9.0=pyhd8ed1ab_0
  - icu=70.1=h27087fc_0
  - idna=3.4=pyhd8ed1ab_0
  - importlib-metadata=6.5.0=pyha770c72_0
  - importlib_metadata=6.5.0=hd8ed1ab_0
  - importlib_resources=5.12.0=pyhd8ed1ab_0
  - ipykernel=6.22.0=pyh210e3f2_0
  - ipython=8.12.0=pyh41d4057_0
  - ipython_genutils=0.2.0=py_1
  - ipywidgets=8.0.6=pyhd8ed1ab_0
  - itsdangerous=2.1.2=pyhd8ed1ab_0
  - jack=1.9.22=h11f4161_0
  - jasper=2.0.33=h0ff4b12_1
  - jedi=0.18.2=pyhd8ed1ab_0
  - jinja2=3.1.2=pyhd8ed1ab_1
  - joblib=1.2.0=pyhd8ed1ab_0
  - joypy=0.2.4=pyhd3deb0d_0
  - jpeg=9e=h0b41bf4_3
  - json-c=0.16=hc379101_0
  - jsonschema=4.17.3=pyhd8ed1ab_0
  - jupyter_bokeh=3.0.7=pyhd8ed1ab_0
  - jupyter_client=7.3.4=pyhd8ed1ab_0
  - jupyter_core=5.3.0=py310hff52083_0
  - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0
  - jupyterlab_widgets=3.0.7=pyhd8ed1ab_0
  - kaleido-core=0.2.1=h3644ca4_0
  - kealib=1.5.0=ha7026e8_0
  - keras=2.11.0=pyhd8ed1ab_0
  - keras-preprocessing=1.1.2=pyhd8ed1ab_0
  - kernel-headers_linux-64=2.6.32=he073ed8_16
  - keyutils=1.6.1=h166bdaf_0
  - kiwisolver=1.4.4=py310hbf28c38_1
  - krb5=1.20.1=h81ceb04_0
  - lame=3.100=h166bdaf_1003
  - lcms2=2.15=hfd0df8a_0
  - ld_impl_linux-64=2.40=h41732ed_0
  - lerc=4.0.0=h27087fc_0
  - libabseil=20220623.0=cxx17_h05df665_6
  - libaec=1.0.6=hcb278e6_1
  - libarrow=11.0.0=h2ebd325_5_cpu
  - libblas=3.9.0=16_linux64_openblas
  - libbrotlicommon=1.0.9=h166bdaf_8
  - libbrotlidec=1.0.9=h166bdaf_8
  - libbrotlienc=1.0.9=h166bdaf_8
  - libcap=2.67=he9d0100_0
  - libcblas=3.9.0=16_linux64_openblas
  - libclang=15.0.7=default_had23c3d_1
  - libclang13=15.0.7=default_h3e3d535_1
  - libcrc32c=1.1.2=h9c3ff4c_0
  - libcups=2.3.3=h36d4200_3
  - libcurl=8.0.1=h588be90_0
  - libdap4=3.20.6=hd7c4107_2
  - libdb=6.2.32=h9c3ff4c_0
  - libdeflate=1.17=h0b41bf4_0
  - libdrm=2.4.114=h166bdaf_0
  - libedit=3.1.20191231=he28a2e2_2
  - libev=4.33=h516909a_1
  - libevent=2.1.10=h28343ad_4
  - libexpat=2.5.0=hcb278e6_1
  - libffi=3.4.2=h7f98852_5
  - libflac=1.4.2=h27087fc_0
  - libgcc-devel_linux-64=12.3.0=h8bca6fd_2
  - libgcc-ng=13.2.0=h807b86a_2
  - libgcrypt=1.10.1=h166bdaf_0
  - libgdal=3.6.2=h6c674c2_9
  - libgfortran-ng=12.2.0=h69a702a_19
  - libgfortran5=12.2.0=h337968e_19
  - libglib=2.76.2=hebfc3b9_0
  - libglu=9.0.0=he1b5a44_1001
  - libgomp=13.2.0=h807b86a_2
  - libgoogle-cloud=2.7.0=h21dfe5b_1
  - libgpg-error=1.46=h620e276_0
  - libgrpc=1.51.1=h4fad500_1
  - libhwloc=2.9.1=hd6dc26d_0
  - libiconv=1.17=h166bdaf_0
  - libidn2=2.3.4=h166bdaf_0
  - libkml=1.3.0=h37653c0_1015
  - liblapack=3.9.0=16_linux64_openblas
  - libllvm14=14.0.6=he0ac6c6_1
  - libllvm15=15.0.7=hadd5161_1
  - libnetcdf=4.9.1=nompi_h34a3ff0_101
  - libnghttp2=1.52.0=h61bc06f_0
  - libnsl=2.0.0=h7f98852_0
  - libnuma=2.0.16=h0b41bf4_1
  - libogg=1.3.4=h7f98852_1
  - libopenblas=0.3.21=pthreads_h78a6416_3
  - libopus=1.3.1=h7f98852_1
  - libpciaccess=0.17=h166bdaf_0
  - libpng=1.6.39=h753d276_0
  - libpq=15.2=hb675445_0
  - libprotobuf=3.21.12=h3eb15da_0
  - librttopo=1.1.0=ha49c73b_12
  - libsanitizer=12.3.0=h0f45ef3_2
  - libsndfile=1.2.0=hb75c966_0
  - libsodium=1.0.18=h36c2ea0_1
  - libspatialindex=1.9.3=h9c3ff4c_4
  - libspatialite=5.0.1=h221c8f1_23
  - libsqlite=3.40.0=h753d276_0
  - libssh2=1.10.0=hf14f497_3
  - libstdcxx-devel_linux-64=12.3.0=h8bca6fd_2
  - libstdcxx-ng=13.2.0=h7e041cc_2
  - libsystemd0=253=h8c4010b_1
  - libtasn1=4.19.0=h166bdaf_0
  - libthrift=0.18.0=h5e4af38_0
  - libtiff=4.5.0=h6adf6a1_2
  - libtool=2.4.7=h27087fc_0
  - libudev1=253=h0b41bf4_0
  - libunistring=0.9.10=h7f98852_0
  - libutf8proc=2.8.0=h166bdaf_0
  - libuuid=2.38.1=h0b41bf4_0
  - libva=2.18.0=h0b41bf4_0
  - libvorbis=1.3.7=h9c3ff4c_0
  - libvpx=1.11.0=h9c3ff4c_3
  - libwebp-base=1.3.0=h0b41bf4_0
  - libxcb=1.13=h7f98852_1004
  - libxgboost=1.7.4=cpu_h6e95104_0
  - libxkbcommon=1.5.0=h79f4944_1
  - libxml2=2.10.3=hca2bb57_4
  - libxslt=1.1.37=h873f0b0_0
  - libzip=1.9.2=hc929e4a_1
  - libzlib=1.2.13=h166bdaf_4
  - linkify-it-py=2.0.0=pyhd8ed1ab_0
  - locket=1.0.0=pyhd8ed1ab_0
  - lunarcalendar=0.0.9=py_0
  - lxml=4.9.1=py310h5764c6d_0
  - lz4=4.3.2=py310h0cfdcf0_0
  - lz4-c=1.9.4=hcb278e6_0
  - magics=4.13.0=h37abd2f_2
  - magics-python=1.5.8=pyhd8ed1ab_1
  - make=4.3=hd18ef5c_1
  - mapclassify=2.5.0=pyhd8ed1ab_1
  - markdown=3.4.3=pyhd8ed1ab_0
  - markdown-it-py=3.0.0=pyhd8ed1ab_0
  - markupsafe=2.1.2=py310h1fa729e_0
  - mathjax=2.7.7=ha770c72_3
  - matplotlib=3.5.3=py310hff52083_2
  - matplotlib-base=3.5.3=py310h8d5ebf3_2
  - matplotlib-inline=0.1.6=pyhd8ed1ab_0
  - mccabe=0.7.0=pyhd8ed1ab_0
  - mdit-py-plugins=0.4.0=pyhd8ed1ab_0
  - mdurl=0.1.0=pyhd8ed1ab_0
  - metpy=1.4.1=pyhd8ed1ab_0
  - mistune=2.0.5=pyhd8ed1ab_0
  - mpc=1.3.1=hfe3b2da_0
  - mpfr=4.2.0=hb012696_0
  - mpg123=1.31.3=hcb278e6_0
  - mpmath=1.3.0=pyhd8ed1ab_0
  - msgpack-python=1.0.5=py310hdf3cbec_0
  - multidict=6.0.4=py310h1fa729e_0
  - munch=2.5.0=py_0
  - munkres=1.1.4=pyh9f0ad1d_0
  - mysql-common=8.0.32=ha901b37_1
  - mysql-libs=8.0.32=hd7da12d_1
  - nbclient=0.7.3=pyhd8ed1ab_0
  - nbconvert=7.3.1=pyhd8ed1ab_0
  - nbconvert-core=7.3.1=pyhd8ed1ab_0
  - nbconvert-pandoc=7.3.1=pyhd8ed1ab_0
  - nbformat=5.8.0=pyhd8ed1ab_0
  - ncurses=6.3=h27087fc_1
  - ncview=2.1.8=habe87be_5
  - nest-asyncio=1.5.6=pyhd8ed1ab_0
  - netcdf4=1.6.3=nompi_py310h0feb132_100
  - nettle=3.8.1=hc379101_1
  - networkx=3.1=pyhd8ed1ab_0
  - notebook=6.4.12=pyha770c72_0
  - nspr=4.35=h27087fc_0
  - nss=3.89=he45b914_0
  - numcodecs=0.11.0=py310heca2aa9_1
  - numpy=1.24.2=py310h8deb116_0
  - oauthlib=3.2.2=pyhd8ed1ab_0
  - openh264=2.3.1=hcb278e6_2
  - openjpeg=2.5.0=h7d73246_1
  - openssl=3.1.4=hd590300_0
  - opt_einsum=3.3.0=pyhd8ed1ab_1
  - orc=1.8.2=hfdbbad2_2
  - ossuuid=1.6.2=hf484d3e_1000
  - owslib=0.29.1=pyhd8ed1ab_0
  - p11-kit=0.24.1=hc5aa10d_0
  - packaging=23.1=pyhd8ed1ab_0
  - pandas=2.0.0=py310h9b08913_0
  - pandoc=2.19.2=h32600fe_2
  - pandocfilters=1.5.0=pyhd8ed1ab_0
  - panel=1.3.1=pyhd8ed1ab_0
  - pango=1.50.14=hd33c08f_0
  - parallel=20230322=ha770c72_0
  - param=2.0.0=pyhca7485f_0
  - parquet-cpp=1.5.1=2
  - parso=0.8.3=pyhd8ed1ab_0
  - partd=1.4.0=pyhd8ed1ab_0
  - patsy=0.5.3=pyhd8ed1ab_0
  - pcre=8.45=h9c3ff4c_0
  - pcre2=10.40=hc3806b6_0
  - perl=5.32.1=2_h7f98852_perl5
  - pexpect=4.8.0=pyh1a96a4e_2
  - pickleshare=0.7.5=py_1003
  - pillow=9.4.0=py310h023d228_1
  - pint=0.20.1=pyhd8ed1ab_0
  - pip=23.1=pyhd8ed1ab_0
  - pixman=0.40.0=h36c2ea0_0
  - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0
  - platformdirs=3.2.0=pyhd8ed1ab_0
  - plotly=5.14.1=pyhd8ed1ab_0
  - ply=3.11=py_1
  - pooch=1.7.0=pyha770c72_3
  - poppler=23.03.0=h091648b_0
  - poppler-data=0.4.12=hd8ed1ab_0
  - portaudio=19.6.0=h583fa2b_7
  - postgresql=15.2=h3248436_0
  - proj=9.1.1=h8ffa02c_2
  - prometheus_client=0.16.0=pyhd8ed1ab_0
  - prompt-toolkit=3.0.38=pyha770c72_0
  - prompt_toolkit=3.0.38=hd8ed1ab_0
  - prophet=1.1.4=py310h56eac3b_0
  - protobuf=4.21.12=py310heca2aa9_0
  - psutil=5.9.5=py310h1fa729e_0
  - psycopg2=2.9.3=py310h416cc33_2
  - pthread-stubs=0.4=h36c2ea0_1001
  - ptyprocess=0.7.0=pyhd3deb0d_0
  - pulseaudio=16.1=hcb278e6_3
  - pulseaudio-client=16.1=h5195f5e_3
  - pulseaudio-daemon=16.1=ha8d29e2_3
  - pure_eval=0.2.2=pyhd8ed1ab_0
  - py-xgboost=1.7.4=cpu_py310hd1aba9c_0
  - pyarrow=11.0.0=py310h633f555_5_cpu
  - pyasn1=0.4.8=py_0
  - pyasn1-modules=0.2.7=py_0
  - pycodestyle=2.10.0=pyhd8ed1ab_0
  - pycparser=2.21=pyhd8ed1ab_0
  - pyct=0.4.6=py_0
  - pyct-core=0.4.6=py_0
  - pyflakes=3.0.1=pyhd8ed1ab_0
  - pygments=2.15.1=pyhd8ed1ab_0
  - pyjwt=2.8.0=pyhd8ed1ab_0
  - pykdtree=1.3.7.post0=py310h0a54255_0
  - pykrige=1.7.0=py310h278f3c1_1
  - pymeeus=0.5.12=pyhd8ed1ab_0
  - pyopenssl=23.1.1=pyhd8ed1ab_0
  - pyorbital=1.7.3=pyhd8ed1ab_0
  - pyparsing=3.0.9=pyhd8ed1ab_0
  - pyproj=3.4.1=py310h15e2413_1
  - pyqt=5.15.7=py310hab646b1_3
  - pyqt5-sip=12.11.0=py310heca2aa9_3
  - pyresample=1.26.1=py310h9b08913_0
  - pyrsistent=0.19.3=py310h1fa729e_0
  - pyshp=2.3.1=pyhd8ed1ab_0
  - pysocks=1.7.1=pyha2e5f31_6
  - pyspectral=0.12.3=pyhd8ed1ab_0
  - python=3.10.10=he550d4f_0_cpython
  - python-dateutil=2.8.2=pyhd8ed1ab_0
  - python-eccodes=1.6.0=py310h278f3c1_0
  - python-fastjsonschema=2.16.3=pyhd8ed1ab_0
  - python-flatbuffers=23.5.26=pyhd8ed1ab_0
  - python-geotiepoints=1.6.0=py310h0a54255_0
  - python-kaleido=0.2.1=pyhd8ed1ab_0
  - python-tzdata=2023.3=pyhd8ed1ab_0
  - python_abi=3.10=3_cp310
  - pytz=2023.3=pyhd8ed1ab_0
  - pyu2f=0.1.5=pyhd8ed1ab_0
  - pyviz_comms=2.3.2=pyhd8ed1ab_0
  - pyyaml=6.0=py310h5764c6d_5
  - pyzmq=25.0.2=py310h059b190_0
  - qt-main=5.15.8=h5d23da1_6
  - rasterio=1.3.6=py310h3e853a9_0
  - rclone=1.63.1=h519d9b9_0
  - re2=2023.02.01=hcb278e6_0
  - readline=8.2=h8228510_1
  - regionmask=0.9.0=pyhd8ed1ab_0
  - requests=2.28.2=pyhd8ed1ab_1
  - requests-oauthlib=1.3.1=pyhd8ed1ab_0
  - rioxarray=0.14.1=pyhd8ed1ab_0
  - rsa=4.9=pyhd8ed1ab_0
  - rtree=1.0.1=py310hbdcdc62_1
  - s2n=1.3.37=h3358134_0
  - satpy=0.41.1=pyhd8ed1ab_0
  - scikit-learn=1.2.2=py310h41b6a48_1
  - scipy=1.10.1=py310h8deb116_0
  - seaborn=0.12.2=hd8ed1ab_0
  - seaborn-base=0.12.2=pyhd8ed1ab_0
  - send2trash=1.8.0=pyhd8ed1ab_0
  - setuptools=67.6.1=pyhd8ed1ab_0
  - shapely=2.0.1=py310h8b84c32_0
  - simplejson=3.19.1=py310h1fa729e_0
  - sip=6.7.9=py310hc6cd4ac_0
  - six=1.16.0=pyh6c4a22f_0
  - snappy=1.1.10=h9fff704_0
  - snuggs=1.4.7=py_0
  - sortedcontainers=2.4.0=pyhd8ed1ab_0
  - soupsieve=2.3.2.post1=pyhd8ed1ab_0
  - sqlalchemy=2.0.9=py310h1fa729e_0
  - sqlite=3.40.0=h4ff8645_0
  - stack_data=0.6.2=pyhd8ed1ab_0
  - stanio=0.3.0=pyhd8ed1ab_0
  - statsmodels=0.13.5=py310hde88566_2
  - svt-av1=1.4.1=hcb278e6_0
  - sympy=1.11.1=pypyh9d50eac_103
  - sysroot_linux-64=2.12=he073ed8_16
  - tbb=2021.9.0=hf52228f_0
  - tbb-devel=2021.9.0=hf52228f_0
  - tblib=1.7.0=pyhd8ed1ab_0
  - tenacity=8.2.2=pyhd8ed1ab_0
  - tensorboard=2.11.2=pyhd8ed1ab_0
  - tensorboard-data-server=0.6.1=py310h600f1e7_4
  - tensorboard-plugin-wit=1.8.1=pyhd8ed1ab_0
  - tensorflow=2.11.0=cpu_py310hd1aba9c_0
  - tensorflow-base=2.11.0=cpu_py310hc9b7e7f_0
  - tensorflow-estimator=2.11.0=cpu_py310hfed9998_0
  - termcolor=2.3.0=pyhd8ed1ab_0
  - terminado=0.17.1=pyh41d4057_0
  - threadpoolctl=3.1.0=pyh8a188c0_0
  - tiledb=2.13.2=hd532e3d_0
  - tinycss2=1.2.1=pyhd8ed1ab_0
  - tk=8.6.12=h27826a3_0
  - toml=0.10.2=pyhd8ed1ab_0
  - tomli=2.0.1=pyhd8ed1ab_0
  - toolz=0.12.0=pyhd8ed1ab_0
  - tornado=6.1=py310h5764c6d_3
  - tqdm=4.65.0=pyhd8ed1ab_1
  - traitlets=5.9.0=pyhd8ed1ab_0
  - trollimage=1.20.1=pyhd8ed1ab_0
  - trollsift=0.5.0=pyhd8ed1ab_0
  - typing-extensions=4.5.0=hd8ed1ab_0
  - typing_extensions=4.5.0=pyha770c72_0
  - tzcode=2023c=h0b41bf4_0
  - tzdata=2023c=h71feb2d_0
  - uc-micro-py=1.0.1=pyhd8ed1ab_0
  - ucx=1.14.0=h8c404fb_1
  - udunits2=2.2.28=hc3e0081_0
  - unicodedata2=15.0.0=py310h5764c6d_0
  - urllib3=1.26.15=pyhd8ed1ab_0
  - wcwidth=0.2.6=pyhd8ed1ab_0
  - webencodings=0.5.1=py_1
  - werkzeug=2.2.3=pyhd8ed1ab_0
  - wheel=0.40.0=pyhd8ed1ab_0
  - widgetsnbextension=4.0.7=pyhd8ed1ab_0
  - wrapt=1.15.0=py310h1fa729e_0
  - x264=1!164.3095=h166bdaf_2
  - x265=3.5=h924138e_3
  - xarray=2023.4.1=pyhd8ed1ab_0
  - xcb-util=0.4.0=h166bdaf_0
  - xcb-util-image=0.4.0=h166bdaf_0
  - xcb-util-keysyms=0.4.0=h166bdaf_0
  - xcb-util-renderutil=0.3.9=h166bdaf_0
  - xcb-util-wm=0.4.1=h166bdaf_0
  - xerces-c=3.2.4=h55805fa_0
  - xgboost=1.7.4=cpu_py310hd1aba9c_0
  - xkeyboard-config=2.38=h0b41bf4_0
  - xlsxwriter=3.1.2=pyhd8ed1ab_0
  - xorg-fixesproto=5.0=h7f98852_1002
  - xorg-inputproto=2.3.2=h7f98852_1002
  - xorg-kbproto=1.0.7=h7f98852_1002
  - xorg-libice=1.0.10=h7f98852_0
  - xorg-libsm=1.2.3=hd9c2040_1000
  - xorg-libx11=1.8.4=h0b41bf4_0
  - xorg-libxau=1.0.9=h7f98852_0
  - xorg-libxaw=1.0.14=h7f98852_1
  - xorg-libxdmcp=1.1.3=h7f98852_0
  - xorg-libxext=1.3.4=h0b41bf4_2
  - xorg-libxfixes=5.0.3=h7f98852_1004
  - xorg-libxi=1.7.10=h7f98852_0
  - xorg-libxmu=1.1.3=h7f98852_0
  - xorg-libxpm=3.5.13=h7f98852_0
  - xorg-libxrender=0.9.10=h7f98852_1003
  - xorg-libxt=1.2.1=h7f98852_2
  - xorg-renderproto=0.11.1=h7f98852_1002
  - xorg-xextproto=7.3.0=h0b41bf4_1003
  - xorg-xproto=7.0.31=h7f98852_1007
  - xyzservices=2023.2.0=pyhd8ed1ab_0
  - xz=5.2.6=h166bdaf_0
  - yaml=0.2.5=h7f98852_2
  - yarl=1.9.2=py310h2372a71_0
  - zarr=2.14.2=pyhd8ed1ab_0
  - zeromq=4.3.4=h9c3ff4c_1
  - zict=3.0.0=pyhd8ed1ab_0
  - zipp=3.15.0=pyhd8ed1ab_0
  - zlib=1.2.13=h166bdaf_4
  - zstandard=0.19.0=py310h5764c6d_0
  - zstd=1.5.2=h3eb15da_6
  - pip:
      - anyio==3.6.2
      - bidict==0.22.1
      - cdsapi==0.5.1
      - eumdac==2.0.1
      - fastapi==0.92.0
      - fastapi-socketio==0.0.10
      - h11==0.14.0
      - httptools==0.5.0
      - jdcal==1.4.1
      - markdown2==2.4.8
      - nicegui==1.1.11
      - orjson==3.8.7
      - pscript==0.7.7
      - pydantic==1.10.6
      - python-dotenv==1.0.0
      - python-engineio==4.4.0
      - python-multipart==0.0.6
      - python-socketio==5.8.0
      - pytz-deprecation-shim==0.1.0.post0
      - rbf==2022.6.12+13.g53e6882
      - skillmetrics==1.2.2
      - sniffio==1.3.0
      - starlette==0.25.0
      - tzlocal==4.3
      - uvicorn==0.20.0
      - uvloop==0.17.0
      - vbuild==0.8.1
      - watchfiles==0.18.1
      - websockets==10.4

I got to successfully update basemap into a different environment on the same machine, which means that one of the packages in this env is conflicting with basemap dependencies but I cannot understand which one. Re-creating the env for now it's not viable as it is production.

molinav commented 6 months ago

At least the following block in your dump looks strange to me:

├─ basemap 1.3.9  is installable with the potential options
│  ├─ basemap 1.3.9 would require
│  │  └─ geos >=3.12.1,<3.12.2.0a0 , which can be installed;
│  ├─ basemap 1.3.9 would require
│  │  └─ python >=3.11,<3.12.0a0 , which can be installed;
│  ├─ basemap 1.3.9 would require
│  │  └─ python >=3.8,<3.9.0a0 , which can be installed;
│  └─ basemap 1.3.9 would require
│     └─ python >=3.9,<3.10.0a0 , which can be installed;

because from your environment dependencies I can see that you are using Python 3.10, but basemap 1.3.9 for Python 3.10 is not listed. However, basemap 1.3.9 for Python 3.10 on GNU/Linux is available: https://anaconda.org/conda-forge/basemap/files

guidocioni commented 6 months ago

I think that log is just confusing because I can indeed find that version when searching with conda search

basemap                        1.3.7 py310h930aee4_0  conda-forge
basemap                        1.3.7 py311h965c0db_0  conda-forge
basemap                        1.3.7  py38h536c24c_0  conda-forge
basemap                        1.3.7  py39h8fae9bb_0  conda-forge
basemap                        1.3.8 py310hd082fa9_0  conda-forge
basemap                        1.3.8 py311h8fe22c9_0  conda-forge
basemap                        1.3.8  py38ha8146ce_0  conda-forge
basemap                        1.3.8  py39h1f3a5a5_0  conda-forge
basemap                        1.3.9 py310hcdaebcc_0  conda-forge
basemap                        1.3.9 py311hb1fe3e7_0  conda-forge
basemap                        1.3.9  py38h0d7212a_0  conda-forge
basemap                        1.3.9  py39h3e7f22b_0  conda-forge
molinav commented 6 months ago

I copied your environment definition into the file stations_environment.yml, and I tried to create your environment in a miniforge container using mamba instead of conda, but it was not possible. The list of incompabilities with mamba seems more descriptive:

[vic@onyx] C:\Users\vic\Desktop\scratch> docker run -v C:\Users\vic\Desktop\scratch:/home/scratch --rm -it condaforge/miniforge3:23.3.1-1
(base) root@2019a4f7d9df:/# mamba env create -f /home/scratch/stations_environment.yml
default/noarch                                     130.0 B @ 325.0 B/s  0.4s
default/linux-64                                   144.0 B @ 232.0 B/s  0.6s
conda-forge/noarch                                  15.2MB @   5.1MB/s  3.7s
conda-forge/linux-64                                37.1MB @   5.5MB/s  7.2s

Looking for: ['_libgcc_mutex==0.1=conda_forge', '_openmp_mutex==4.5=2_gnu', '_py-xgboost-mutex==2.0=cpu_0', 'absl-py==1.4.0=pyhd8ed1ab_0', 'affine==2.4.0=pyhd8ed1ab_0', 'aiohttp==3.8.5=py310h2372a71_0', 'aiosignal==1.3.1=pyhd8ed1ab_0', 'alsa-lib==1.2.8=h166bdaf_0', 'aom==3.5.0=h27087fc_0', 'appdirs==1.4.4=pyh9f0ad1d_0', 'argon2-cffi==21.3.0=pyhd8ed1ab_0', 'argon2-cffi-bindings==21.2.0=py310h5764c6d_3', 'arrow-cpp==11.0.0=ha770c72_5_cpu', 'asciitree==0.3.3=py_2', 'asttokens==2.2.1=pyhd8ed1ab_0', 'astunparse==1.6.3=pyhd8ed1ab_0', 'async-timeout==4.0.2=pyhd8ed1ab_0', 'attr==2.5.1=h166bdaf_1', 'attrs==22.2.0=pyh71513ae_0', 'autopep8==2.0.2=pyhd8ed1ab_0', 'aws-c-auth==0.6.24=h84a1944_5', 'aws-c-cal==0.5.20=hc60faf5_6', 'aws-c-common==0.8.11=h0b41bf4_0', 'aws-c-compression==0.2.16=h034cb4b_3', 'aws-c-event-stream==0.2.18=h75388cd_6', 'aws-c-http==0.7.4=hf084cc8_2', 'aws-c-io==0.13.17=h10df833_2', 'aws-c-mqtt==0.8.6=hc41645a_6', 'aws-c-s3==0.2.4=h1b8f470_3', 'aws-c-sdkutils==0.1.7=h034cb4b_3', 'aws-checksums==0.1.14=h034cb4b_3', 'aws-crt-cpp==0.19.7=h0073717_7', 'aws-sdk-cpp==1.10.57=h4707e7a_4', 'backcall==0.2.0=pyh9f0ad1d_0', 'backports==1.0=pyhd8ed1ab_3', 'backports.functools_lru_cache==1.6.4=pyhd8ed1ab_0', 'basemap==1.3.6=py310h6b4e152_2', 'basemap-data==1.3.2=pyhd8ed1ab_3', 'basemap-data-hires==1.3.2=pyhd8ed1ab_3', 'beautifulsoup4==4.12.2=pyha770c72_0', 'binutils_impl_linux-64==2.40=hf600244_0', 'binutils_linux-64==2.40=hbdbef99_2', 'bleach==6.0.0=pyhd8ed1ab_0', 'blinker==1.6.2=pyhd8ed1ab_0', 'blosc==1.21.3=hafa529b_0', 'bokeh==3.2.1=pyhd8ed1ab_0', 'boost-cpp==1.78.0=h5adbc97_2', 'branca==0.6.0=pyhd8ed1ab_0', 'brotli==1.0.9=h166bdaf_8', 'brotli-bin==1.0.9=h166bdaf_8', 'brotli-python==1.0.9=py310hd8f1fbe_8', 'brotlipy==0.7.0=py310h5764c6d_1005', 'bzip2==1.0.8=h7f98852_4', 'c-ares==1.18.1=h7f98852_0', 'ca-certificates==2023.11.17=hbcca054_0', 'cached-property==1.5.2=hd8ed1ab_1', 'cached_property==1.5.2=pyha770c72_1', 'cachetools==5.3.1=pyhd8ed1ab_0', 'cairo==1.16.0=ha61ee94_1014', 'cartopy==0.21.1=py310hcb7e713_0', 'cdo==2.1.1=hb8d3726_1', 'certifi==2023.11.17=pyhd8ed1ab_0', 'cffi==1.15.1=py310h255011f_3', 'cfgrib==0.9.10.4=pyhd8ed1ab_0', 'cfitsio==4.2.0=hd9d235c_0', 'cftime==1.6.2=py310hde88566_1', 'charset-normalizer==3.1.0=pyhd8ed1ab_0', 'click==8.1.3=unix_pyhd8ed1ab_2', 'click-plugins==1.1.1=py_0', 'cligj==0.7.2=pyhd8ed1ab_1', 'cloudpickle==2.2.1=pyhd8ed1ab_0', 'cmdstan==2.32.1=hff4ab46_0', 'cmdstanpy==1.2.0=pyhd8ed1ab_0', 'colorama==0.4.6=pyhd8ed1ab_0', 'colorcet==3.0.1=pyhd8ed1ab_0', 'comm==0.1.3=pyhd8ed1ab_0', 'configobj==5.0.8=pyhd8ed1ab_0', 'contourpy==1.0.7=py310hdf3cbec_0', 'convertdate==2.4.0=pyhd8ed1ab_0', 'cramjam==2.6.2=py310h3392aa1_0', 'cryptography==40.0.2=py310h34c0648_0', 'curl==8.0.1=h588be90_0', 'cycler==0.11.0=pyhd8ed1ab_0', 'cython==0.29.34=py310heca2aa9_0', 'cytoolz==0.12.0=py310h5764c6d_1', 'dash==2.9.3=pyhd8ed1ab_0', 'dash-auth==2.0.0=pyhd8ed1ab_0', 'dash-bootstrap-components==1.4.1=pyhd8ed1ab_0', 'dash-core-components==2.0.0=pyhd8ed1ab_1', 'dash-html-components==2.0.0=pyhd8ed1ab_1', 'dash-table==5.0.0=pyhd8ed1ab_1', 'dask==2023.4.0=pyhd8ed1ab_0', 'dask-core==2023.4.0=pyhd8ed1ab_0', 'dataclasses==0.8=pyhc8e2a94_3', 'dbus==1.13.6=h5008d03_3', 'debugpy==1.6.7=py310heca2aa9_0', 'decorator==5.1.1=pyhd8ed1ab_0', 'defusedxml==0.7.1=pyhd8ed1ab_0', 'distributed==2023.4.0=pyhd8ed1ab_0', 'docutils==0.19=py310hff52083_1', 'donfig==0.7.0=pyhd8ed1ab_1', 'eccodes==2.29.0=h54fcba4_0', 'entrypoints==0.4=pyhd8ed1ab_0', 'ephem==4.1.5=py310h2372a71_1', 'executing==1.2.0=pyhd8ed1ab_0', 'expat==2.5.0=hcb278e6_1', 'fasteners==0.17.3=pyhd8ed1ab_0', 'fastparquet==2023.2.0=py310h0a54255_0', 'ffmpeg==5.1.2=gpl_h8dda1f0_106', 'fftw==3.3.10=nompi_hc118613_107', 'findlibs==0.0.2=pyhd8ed1ab_0', 'fiona==1.9.1=py310ha325b7b_0', 'flake8==6.0.0=pyhd8ed1ab_0', 'flask==2.2.3=pyhd8ed1ab_0', 'flask-compress==1.13=pyhd8ed1ab_0', 'flatbuffers==22.12.06=hcb278e6_2', 'flit-core==3.8.0=pyhd8ed1ab_0', 'folium==0.14.0=pyhd8ed1ab_0', 'font-ttf-dejavu-sans-mono==2.37=hab24e00_0', 'font-ttf-inconsolata==3.000=h77eed37_0', 'font-ttf-source-code-pro==2.038=h77eed37_0', 'font-ttf-ubuntu==0.83=hab24e00_0', 'fontconfig==2.14.2=h14ed4e7_0', 'fonts-conda-ecosystem==1=0', 'fonts-conda-forge==1=0', 'fonttools==4.39.3=py310h1fa729e_0', 'freeglut==3.2.2=h9c3ff4c_1', 'freetype==2.12.1=hca18f0e_1', 'freexl==1.0.6=h166bdaf_1', 'fribidi==1.0.10=h36c2ea0_0', 'frozenlist==1.4.0=py310h2372a71_0', 'fsspec==2023.4.0=pyh1a96a4e_0', 'gast==0.4.0=pyh9f0ad1d_0', 'gcc_impl_linux-64==12.3.0=he2b93b0_2', 'gcc_linux-64==12.3.0=h76fc315_2', 'gdal==3.6.2=py310hc1b7723_9', 'geopandas==0.12.2=pyhd8ed1ab_0', 'geopandas-base==0.12.2=pyha770c72_0', 'geos==3.11.1=h27087fc_0', 'geotiff==1.7.1=h7a142b4_6', 'gettext==0.21.1=h27087fc_0', 'gflags==2.2.2=he1b5a44_1004', 'giflib==5.2.1=h0b41bf4_3', 'glib==2.76.2=hfc55251_0', 'glib-tools==2.76.2=hfc55251_0', 'glog==0.6.0=h6f12383_0', 'gmp==6.2.1=h58526e2_0', 'gmpy2==2.1.2=py310h3ec546c_1', 'gnutls==3.7.8=hf3e180e_0', 'google-auth==2.22.0=pyh1a96a4e_0', 'google-auth-oauthlib==0.4.6=pyhd8ed1ab_0', 'google-pasta==0.2.0=pyh8c360ce_0', 'graphite2==1.3.13=h58526e2_1001', 'greenlet==2.0.2=py310heca2aa9_0', 'grpcio==1.51.1=py310h4a5735c_1', 'gst-plugins-base==1.22.0=h4243ec0_2', 'gstreamer==1.22.0=h25f0c4b_2', 'gstreamer-orc==0.4.33=h166bdaf_0', 'gxx_impl_linux-64==12.3.0=he2b93b0_2', 'gxx_linux-64==12.3.0=h8a814eb_2', 'h5py==3.8.0=nompi_py310h0311031_100', 'harfbuzz==6.0.0=h8e241bc_0', 'hdf4==4.2.15=h9772cbc_5', 'hdf5==1.12.2=nompi_h4df4325_101', 'holidays==0.34=pyhd8ed1ab_0', 'holoviews==1.18.0=pyhd8ed1ab_0', 'hvplot==0.9.0=pyhd8ed1ab_0', 'icu==70.1=h27087fc_0', 'idna==3.4=pyhd8ed1ab_0', 'importlib-metadata==6.5.0=pyha770c72_0', 'importlib_metadata==6.5.0=hd8ed1ab_0', 'importlib_resources==5.12.0=pyhd8ed1ab_0', 'ipykernel==6.22.0=pyh210e3f2_0', 'ipython==8.12.0=pyh41d4057_0', 'ipython_genutils==0.2.0=py_1', 'ipywidgets==8.0.6=pyhd8ed1ab_0', 'itsdangerous==2.1.2=pyhd8ed1ab_0', 'jack==1.9.22=h11f4161_0', 'jasper==2.0.33=h0ff4b12_1', 'jedi==0.18.2=pyhd8ed1ab_0', 'jinja2==3.1.2=pyhd8ed1ab_1', 'joblib==1.2.0=pyhd8ed1ab_0', 'joypy==0.2.4=pyhd3deb0d_0', 'jpeg==9e=h0b41bf4_3', 'json-c==0.16=hc379101_0', 'jsonschema==4.17.3=pyhd8ed1ab_0', 'jupyter_bokeh==3.0.7=pyhd8ed1ab_0', 'jupyter_client==7.3.4=pyhd8ed1ab_0', 'jupyter_core==5.3.0=py310hff52083_0', 'jupyterlab_pygments==0.2.2=pyhd8ed1ab_0', 'jupyterlab_widgets==3.0.7=pyhd8ed1ab_0', 'kaleido-core==0.2.1=h3644ca4_0', 'kealib==1.5.0=ha7026e8_0', 'keras==2.11.0=pyhd8ed1ab_0', 'keras-preprocessing==1.1.2=pyhd8ed1ab_0', 'kernel-headers_linux-64==2.6.32=he073ed8_16', 'keyutils==1.6.1=h166bdaf_0', 'kiwisolver==1.4.4=py310hbf28c38_1', 'krb5==1.20.1=h81ceb04_0', 'lame==3.100=h166bdaf_1003', 'lcms2==2.15=hfd0df8a_0', 'ld_impl_linux-64==2.40=h41732ed_0', 'lerc==4.0.0=h27087fc_0', 'libabseil==20220623.0=cxx17_h05df665_6', 'libaec==1.0.6=hcb278e6_1', 'libarrow==11.0.0=h2ebd325_5_cpu', 'libblas==3.9.0=16_linux64_openblas', 'libbrotlicommon==1.0.9=h166bdaf_8', 'libbrotlidec==1.0.9=h166bdaf_8', 'libbrotlienc==1.0.9=h166bdaf_8', 'libcap==2.67=he9d0100_0', 'libcblas==3.9.0=16_linux64_openblas', 'libclang==15.0.7=default_had23c3d_1', 'libclang13==15.0.7=default_h3e3d535_1', 'libcrc32c==1.1.2=h9c3ff4c_0', 'libcups==2.3.3=h36d4200_3', 'libcurl==8.0.1=h588be90_0', 'libdap4==3.20.6=hd7c4107_2', 'libdb==6.2.32=h9c3ff4c_0', 'libdeflate==1.17=h0b41bf4_0', 'libdrm==2.4.114=h166bdaf_0', 'libedit==3.1.20191231=he28a2e2_2', 'libev==4.33=h516909a_1', 'libevent==2.1.10=h28343ad_4', 'libexpat==2.5.0=hcb278e6_1', 'libffi==3.4.2=h7f98852_5', 'libflac==1.4.2=h27087fc_0', 'libgcc-devel_linux-64==12.3.0=h8bca6fd_2', 'libgcc-ng==13.2.0=h807b86a_2', 'libgcrypt==1.10.1=h166bdaf_0', 'libgdal==3.6.2=h6c674c2_9', 'libgfortran-ng==12.2.0=h69a702a_19', 'libgfortran5==12.2.0=h337968e_19', 'libglib==2.76.2=hebfc3b9_0', 'libglu==9.0.0=he1b5a44_1001', 'libgomp==13.2.0=h807b86a_2', 'libgoogle-cloud==2.7.0=h21dfe5b_1', 'libgpg-error==1.46=h620e276_0', 'libgrpc==1.51.1=h4fad500_1', 'libhwloc==2.9.1=hd6dc26d_0', 'libiconv==1.17=h166bdaf_0', 'libidn2==2.3.4=h166bdaf_0', 'libkml==1.3.0=h37653c0_1015', 'liblapack==3.9.0=16_linux64_openblas', 'libllvm14==14.0.6=he0ac6c6_1', 'libllvm15==15.0.7=hadd5161_1', 'libnetcdf==4.9.1=nompi_h34a3ff0_101', 'libnghttp2==1.52.0=h61bc06f_0', 'libnsl==2.0.0=h7f98852_0', 'libnuma==2.0.16=h0b41bf4_1', 'libogg==1.3.4=h7f98852_1', 'libopenblas==0.3.21=pthreads_h78a6416_3', 'libopus==1.3.1=h7f98852_1', 'libpciaccess==0.17=h166bdaf_0', 'libpng==1.6.39=h753d276_0', 'libpq==15.2=hb675445_0', 'libprotobuf==3.21.12=h3eb15da_0', 'librttopo==1.1.0=ha49c73b_12', 'libsanitizer==12.3.0=h0f45ef3_2', 'libsndfile==1.2.0=hb75c966_0', 'libsodium==1.0.18=h36c2ea0_1', 'libspatialindex==1.9.3=h9c3ff4c_4', 'libspatialite==5.0.1=h221c8f1_23', 'libsqlite==3.40.0=h753d276_0', 'libssh2==1.10.0=hf14f497_3', 'libstdcxx-devel_linux-64==12.3.0=h8bca6fd_2', 'libstdcxx-ng==13.2.0=h7e041cc_2', 'libsystemd0==253=h8c4010b_1', 'libtasn1==4.19.0=h166bdaf_0', 'libthrift==0.18.0=h5e4af38_0', 'libtiff==4.5.0=h6adf6a1_2', 'libtool==2.4.7=h27087fc_0', 'libudev1==253=h0b41bf4_0', 'libunistring==0.9.10=h7f98852_0', 'libutf8proc==2.8.0=h166bdaf_0', 'libuuid==2.38.1=h0b41bf4_0', 'libva==2.18.0=h0b41bf4_0', 'libvorbis==1.3.7=h9c3ff4c_0', 'libvpx==1.11.0=h9c3ff4c_3', 'libwebp-base==1.3.0=h0b41bf4_0', 'libxcb==1.13=h7f98852_1004', 'libxgboost==1.7.4=cpu_h6e95104_0', 'libxkbcommon==1.5.0=h79f4944_1', 'libxml2==2.10.3=hca2bb57_4', 'libxslt==1.1.37=h873f0b0_0', 'libzip==1.9.2=hc929e4a_1', 'libzlib==1.2.13=h166bdaf_4', 'linkify-it-py==2.0.0=pyhd8ed1ab_0', 'locket==1.0.0=pyhd8ed1ab_0', 'lunarcalendar==0.0.9=py_0', 'lxml==4.9.1=py310h5764c6d_0', 'lz4==4.3.2=py310h0cfdcf0_0', 'lz4-c==1.9.4=hcb278e6_0', 'magics==4.13.0=h37abd2f_2', 'magics-python==1.5.8=pyhd8ed1ab_1', 'make==4.3=hd18ef5c_1', 'mapclassify==2.5.0=pyhd8ed1ab_1', 'markdown==3.4.3=pyhd8ed1ab_0', 'markdown-it-py==3.0.0=pyhd8ed1ab_0', 'markupsafe==2.1.2=py310h1fa729e_0', 'mathjax==2.7.7=ha770c72_3', 'matplotlib==3.5.3=py310hff52083_2', 'matplotlib-base==3.5.3=py310h8d5ebf3_2', 'matplotlib-inline==0.1.6=pyhd8ed1ab_0', 'mccabe==0.7.0=pyhd8ed1ab_0', 'mdit-py-plugins==0.4.0=pyhd8ed1ab_0', 'mdurl==0.1.0=pyhd8ed1ab_0', 'metpy==1.4.1=pyhd8ed1ab_0', 'mistune==2.0.5=pyhd8ed1ab_0', 'mpc==1.3.1=hfe3b2da_0', 'mpfr==4.2.0=hb012696_0', 'mpg123==1.31.3=hcb278e6_0', 'mpmath==1.3.0=pyhd8ed1ab_0', 'msgpack-python==1.0.5=py310hdf3cbec_0', 'multidict==6.0.4=py310h1fa729e_0', 'munch==2.5.0=py_0', 'munkres==1.1.4=pyh9f0ad1d_0', 'mysql-common==8.0.32=ha901b37_1', 'mysql-libs==8.0.32=hd7da12d_1', 'nbclient==0.7.3=pyhd8ed1ab_0', 'nbconvert==7.3.1=pyhd8ed1ab_0', 'nbconvert-core==7.3.1=pyhd8ed1ab_0', 'nbconvert-pandoc==7.3.1=pyhd8ed1ab_0', 'nbformat==5.8.0=pyhd8ed1ab_0', 'ncurses==6.3=h27087fc_1', 'ncview==2.1.8=habe87be_5', 'nest-asyncio==1.5.6=pyhd8ed1ab_0', 'netcdf4==1.6.3=nompi_py310h0feb132_100', 'nettle==3.8.1=hc379101_1', 'networkx==3.1=pyhd8ed1ab_0', 'notebook==6.4.12=pyha770c72_0', 'nspr==4.35=h27087fc_0', 'nss==3.89=he45b914_0', 'numcodecs==0.11.0=py310heca2aa9_1', 'numpy==1.24.2=py310h8deb116_0', 'oauthlib==3.2.2=pyhd8ed1ab_0', 'openh264==2.3.1=hcb278e6_2', 'openjpeg==2.5.0=h7d73246_1', 'openssl==3.1.4=hd590300_0', 'opt_einsum==3.3.0=pyhd8ed1ab_1', 'orc==1.8.2=hfdbbad2_2', 'ossuuid==1.6.2=hf484d3e_1000', 'owslib==0.29.1=pyhd8ed1ab_0', 'p11-kit==0.24.1=hc5aa10d_0', 'packaging==23.1=pyhd8ed1ab_0', 'pandas==2.0.0=py310h9b08913_0', 'pandoc==2.19.2=h32600fe_2', 'pandocfilters==1.5.0=pyhd8ed1ab_0', 'panel==1.3.1=pyhd8ed1ab_0', 'pango==1.50.14=hd33c08f_0', 'parallel==20230322=ha770c72_0', 'param==2.0.0=pyhca7485f_0', 'parquet-cpp==1.5.1=2', 'parso==0.8.3=pyhd8ed1ab_0', 'partd==1.4.0=pyhd8ed1ab_0', 'patsy==0.5.3=pyhd8ed1ab_0', 'pcre==8.45=h9c3ff4c_0', 'pcre2==10.40=hc3806b6_0', 'perl==5.32.1=2_h7f98852_perl5', 'pexpect==4.8.0=pyh1a96a4e_2', 'pickleshare==0.7.5=py_1003', 'pillow==9.4.0=py310h023d228_1', 'pint==0.20.1=pyhd8ed1ab_0', 'pip==23.1=pyhd8ed1ab_0', 'pixman==0.40.0=h36c2ea0_0', 'pkgutil-resolve-name==1.3.10=pyhd8ed1ab_0', 'platformdirs==3.2.0=pyhd8ed1ab_0', 'plotly==5.14.1=pyhd8ed1ab_0', 'ply==3.11=py_1', 'pooch==1.7.0=pyha770c72_3', 'poppler==23.03.0=h091648b_0', 'poppler-data==0.4.12=hd8ed1ab_0', 'portaudio==19.6.0=h583fa2b_7', 'postgresql==15.2=h3248436_0', 'proj==9.1.1=h8ffa02c_2', 'prometheus_client==0.16.0=pyhd8ed1ab_0', 'prompt-toolkit==3.0.38=pyha770c72_0', 'prompt_toolkit==3.0.38=hd8ed1ab_0', 'prophet==1.1.4=py310h56eac3b_0', 'protobuf==4.21.12=py310heca2aa9_0', 'psutil==5.9.5=py310h1fa729e_0', 'psycopg2==2.9.3=py310h416cc33_2', 'pthread-stubs==0.4=h36c2ea0_1001', 'ptyprocess==0.7.0=pyhd3deb0d_0', 'pulseaudio==16.1=hcb278e6_3', 'pulseaudio-client==16.1=h5195f5e_3', 'pulseaudio-daemon==16.1=ha8d29e2_3', 'pure_eval==0.2.2=pyhd8ed1ab_0', 'py-xgboost==1.7.4=cpu_py310hd1aba9c_0', 'pyarrow==11.0.0=py310h633f555_5_cpu', 'pyasn1==0.4.8=py_0', 'pyasn1-modules==0.2.7=py_0', 'pycodestyle==2.10.0=pyhd8ed1ab_0', 'pycparser==2.21=pyhd8ed1ab_0', 'pyct==0.4.6=py_0', 'pyct-core==0.4.6=py_0', 'pyflakes==3.0.1=pyhd8ed1ab_0', 'pygments==2.15.1=pyhd8ed1ab_0', 'pyjwt==2.8.0=pyhd8ed1ab_0', 'pykdtree==1.3.7.post0=py310h0a54255_0', 'pykrige==1.7.0=py310h278f3c1_1', 'pymeeus==0.5.12=pyhd8ed1ab_0', 'pyopenssl==23.1.1=pyhd8ed1ab_0', 'pyorbital==1.7.3=pyhd8ed1ab_0', 'pyparsing==3.0.9=pyhd8ed1ab_0', 'pyproj==3.4.1=py310h15e2413_1', 'pyqt==5.15.7=py310hab646b1_3', 'pyqt5-sip==12.11.0=py310heca2aa9_3', 'pyresample==1.26.1=py310h9b08913_0', 'pyrsistent==0.19.3=py310h1fa729e_0', 'pyshp==2.3.1=pyhd8ed1ab_0', 'pysocks==1.7.1=pyha2e5f31_6', 'pyspectral==0.12.3=pyhd8ed1ab_0', 'python==3.10.10=he550d4f_0_cpython', 'python-dateutil==2.8.2=pyhd8ed1ab_0', 'python-eccodes==1.6.0=py310h278f3c1_0', 'python-fastjsonschema==2.16.3=pyhd8ed1ab_0', 'python-flatbuffers==23.5.26=pyhd8ed1ab_0', 'python-geotiepoints==1.6.0=py310h0a54255_0', 'python-kaleido==0.2.1=pyhd8ed1ab_0', 'python-tzdata==2023.3=pyhd8ed1ab_0', 'python_abi==3.10=3_cp310', 'pytz==2023.3=pyhd8ed1ab_0', 'pyu2f==0.1.5=pyhd8ed1ab_0', 'pyviz_comms==2.3.2=pyhd8ed1ab_0', 'pyyaml==6.0=py310h5764c6d_5', 'pyzmq==25.0.2=py310h059b190_0', 'qt-main==5.15.8=h5d23da1_6', 'rasterio==1.3.6=py310h3e853a9_0', 'rclone==1.63.1=h519d9b9_0', 're2==2023.02.01=hcb278e6_0', 'readline==8.2=h8228510_1', 'regionmask==0.9.0=pyhd8ed1ab_0', 'requests==2.28.2=pyhd8ed1ab_1', 'requests-oauthlib==1.3.1=pyhd8ed1ab_0', 'rioxarray==0.14.1=pyhd8ed1ab_0', 'rsa==4.9=pyhd8ed1ab_0', 'rtree==1.0.1=py310hbdcdc62_1', 's2n==1.3.37=h3358134_0', 'satpy==0.41.1=pyhd8ed1ab_0', 'scikit-learn==1.2.2=py310h41b6a48_1', 'scipy==1.10.1=py310h8deb116_0', 'seaborn==0.12.2=hd8ed1ab_0', 'seaborn-base==0.12.2=pyhd8ed1ab_0', 'send2trash==1.8.0=pyhd8ed1ab_0', 'setuptools==67.6.1=pyhd8ed1ab_0', 'shapely==2.0.1=py310h8b84c32_0', 'simplejson==3.19.1=py310h1fa729e_0', 'sip==6.7.9=py310hc6cd4ac_0', 'six==1.16.0=pyh6c4a22f_0', 'snappy==1.1.10=h9fff704_0', 'snuggs==1.4.7=py_0', 'sortedcontainers==2.4.0=pyhd8ed1ab_0', 'soupsieve==2.3.2.post1=pyhd8ed1ab_0', 'sqlalchemy==2.0.9=py310h1fa729e_0', 'sqlite==3.40.0=h4ff8645_0', 'stack_data==0.6.2=pyhd8ed1ab_0', 'stanio==0.3.0=pyhd8ed1ab_0', 'statsmodels==0.13.5=py310hde88566_2', 'svt-av1==1.4.1=hcb278e6_0', 'sympy==1.11.1=pypyh9d50eac_103', 'sysroot_linux-64==2.12=he073ed8_16', 'tbb==2021.9.0=hf52228f_0', 'tbb-devel==2021.9.0=hf52228f_0', 'tblib==1.7.0=pyhd8ed1ab_0', 'tenacity==8.2.2=pyhd8ed1ab_0', 'tensorboard==2.11.2=pyhd8ed1ab_0', 'tensorboard-data-server==0.6.1=py310h600f1e7_4', 'tensorboard-plugin-wit==1.8.1=pyhd8ed1ab_0', 'tensorflow==2.11.0=cpu_py310hd1aba9c_0', 'tensorflow-base==2.11.0=cpu_py310hc9b7e7f_0', 'tensorflow-estimator==2.11.0=cpu_py310hfed9998_0', 'termcolor==2.3.0=pyhd8ed1ab_0', 'terminado==0.17.1=pyh41d4057_0', 'threadpoolctl==3.1.0=pyh8a188c0_0', 'tiledb==2.13.2=hd532e3d_0', 'tinycss2==1.2.1=pyhd8ed1ab_0', 'tk==8.6.12=h27826a3_0', 'toml==0.10.2=pyhd8ed1ab_0', 'tomli==2.0.1=pyhd8ed1ab_0', 'toolz==0.12.0=pyhd8ed1ab_0', 'tornado==6.1=py310h5764c6d_3', 'tqdm==4.65.0=pyhd8ed1ab_1', 'traitlets==5.9.0=pyhd8ed1ab_0', 'trollimage==1.20.1=pyhd8ed1ab_0', 'trollsift==0.5.0=pyhd8ed1ab_0', 'typing-extensions==4.5.0=hd8ed1ab_0', 'typing_extensions==4.5.0=pyha770c72_0', 'tzcode==2023c=h0b41bf4_0', 'tzdata==2023c=h71feb2d_0', 'uc-micro-py==1.0.1=pyhd8ed1ab_0', 'ucx==1.14.0=h8c404fb_1', 'udunits2==2.2.28=hc3e0081_0', 'unicodedata2==15.0.0=py310h5764c6d_0', 'urllib3==1.26.15=pyhd8ed1ab_0', 'wcwidth==0.2.6=pyhd8ed1ab_0', 'webencodings==0.5.1=py_1', 'werkzeug==2.2.3=pyhd8ed1ab_0', 'wheel==0.40.0=pyhd8ed1ab_0', 'widgetsnbextension==4.0.7=pyhd8ed1ab_0', 'wrapt==1.15.0=py310h1fa729e_0', 'x264==1!164.3095=h166bdaf_2', 'x265==3.5=h924138e_3', 'xarray==2023.4.1=pyhd8ed1ab_0', 'xcb-util==0.4.0=h166bdaf_0', 'xcb-util-image==0.4.0=h166bdaf_0', 'xcb-util-keysyms==0.4.0=h166bdaf_0', 'xcb-util-renderutil==0.3.9=h166bdaf_0', 'xcb-util-wm==0.4.1=h166bdaf_0', 'xerces-c==3.2.4=h55805fa_0', 'xgboost==1.7.4=cpu_py310hd1aba9c_0', 'xkeyboard-config==2.38=h0b41bf4_0', 'xlsxwriter==3.1.2=pyhd8ed1ab_0', 'xorg-fixesproto==5.0=h7f98852_1002', 'xorg-inputproto==2.3.2=h7f98852_1002', 'xorg-kbproto==1.0.7=h7f98852_1002', 'xorg-libice==1.0.10=h7f98852_0', 'xorg-libsm==1.2.3=hd9c2040_1000', 'xorg-libx11==1.8.4=h0b41bf4_0', 'xorg-libxau==1.0.9=h7f98852_0', 'xorg-libxaw==1.0.14=h7f98852_1', 'xorg-libxdmcp==1.1.3=h7f98852_0', 'xorg-libxext==1.3.4=h0b41bf4_2', 'xorg-libxfixes==5.0.3=h7f98852_1004', 'xorg-libxi==1.7.10=h7f98852_0', 'xorg-libxmu==1.1.3=h7f98852_0', 'xorg-libxpm==3.5.13=h7f98852_0', 'xorg-libxrender==0.9.10=h7f98852_1003', 'xorg-libxt==1.2.1=h7f98852_2', 'xorg-renderproto==0.11.1=h7f98852_1002', 'xorg-xextproto==7.3.0=h0b41bf4_1003', 'xorg-xproto==7.0.31=h7f98852_1007', 'xyzservices==2023.2.0=pyhd8ed1ab_0', 'xz==5.2.6=h166bdaf_0', 'yaml==0.2.5=h7f98852_2', 'yarl==1.9.2=py310h2372a71_0', 'zarr==2.14.2=pyhd8ed1ab_0', 'zeromq==4.3.4=h9c3ff4c_1', 'zict==3.0.0=pyhd8ed1ab_0', 'zipp==3.15.0=pyhd8ed1ab_0', 'zlib==1.2.13=h166bdaf_4', 'zstandard==0.19.0=py310h5764c6d_0', 'zstd==1.5.2=h3eb15da_6']

Could not solve for environment specs
The following packages are incompatible
├─ eccodes ==2.29.0 h54fcba4_0 is requested and can be installed;
├─ libtiff ==4.5.0 h6adf6a1_2 is requested and can be installed;
├─ openjpeg ==2.5.0 h7d73246_1 is uninstallable because it requires
│  └─ libtiff >=4.4.0,<4.5.0a0 , which conflicts with any installable versions previously reported;
└─ python-eccodes ==1.6.0 py310h278f3c1_0 is uninstallable because it requires
   └─ eccodes >=2.31.0 , which conflicts with any installable versions previously reported.
guidocioni commented 6 months ago

Amazing...looks like I have to start back from scratch :(

molinav commented 6 months ago

In the end it's only two pairs of incompatible packages, I guess if you find the appropriate pairs eccodes <=> python-eccodes and libtiff <=> openjpeg, you might not need to redo everything.

guidocioni commented 6 months ago

I'd like to believe that but I think conda/mamba are just shooting in the dark...if one of the packages is the source of the mess why they don't appear in the first incompatible reports? :( Anyway I'll try...

molinav commented 6 months ago

It was quite subtle, it seems your current openjpeg build version was too strict with the libtiff version and then it destroys the other dependencies of your environment. I have tried replacing python-eccodes and openjpeg with these two specific packages:

  - python-eccodes=1.4.2=py310hde88566_1
  - openjpeg=2.5.0=hfec8fc6_2

After this change, the environment is able to fetch all the conda packages, but in the end it fails during the installation of pip packages because it cannot find the specific version of rbf:

(base) root@2019a4f7d9df:/# mamba env create -f /home/scratch/stations_environment.yml
warning  libmamba Cache file "/opt/conda/pkgs/cache/497deca9.json" was modified by another program
warning  libmamba Cache file "/opt/conda/pkgs/cache/09cdf8bf.json" was modified by another program
default/noarch                                                No change
default/linux-64                                              No change
conda-forge/noarch                                  15.2MB @   3.3MB/s  5.5s
conda-forge/linux-64                                37.1MB @   4.0MB/s 11.3s

Looking for: ['_libgcc_mutex==0.1=conda_forge', '_openmp_mutex==4.5=2_gnu', '_py-xgboost-mutex==2.0=cpu_0', 'absl-py==1.4.0=pyhd8ed1ab_0', 'affine==2.4.0=pyhd8ed1ab_0', 'aiohttp==3.8.5=py310h2372a71_0', 'aiosignal==1.3.1=pyhd8ed1ab_0', 'alsa-lib==1.2.8=h166bdaf_0', 'aom==3.5.0=h27087fc_0', 'appdirs==1.4.4=pyh9f0ad1d_0', 'argon2-cffi==21.3.0=pyhd8ed1ab_0', 'argon2-cffi-bindings==21.2.0=py310h5764c6d_3', 'arrow-cpp==11.0.0=ha770c72_5_cpu', 'asciitree==0.3.3=py_2', 'asttokens==2.2.1=pyhd8ed1ab_0', 'astunparse==1.6.3=pyhd8ed1ab_0', 'async-timeout==4.0.2=pyhd8ed1ab_0', 'attr==2.5.1=h166bdaf_1', 'attrs==22.2.0=pyh71513ae_0', 'autopep8==2.0.2=pyhd8ed1ab_0', 'aws-c-auth==0.6.24=h84a1944_5', 'aws-c-cal==0.5.20=hc60faf5_6', 'aws-c-common==0.8.11=h0b41bf4_0', 'aws-c-compression==0.2.16=h034cb4b_3', 'aws-c-event-stream==0.2.18=h75388cd_6', 'aws-c-http==0.7.4=hf084cc8_2', 'aws-c-io==0.13.17=h10df833_2', 'aws-c-mqtt==0.8.6=hc41645a_6', 'aws-c-s3==0.2.4=h1b8f470_3', 'aws-c-sdkutils==0.1.7=h034cb4b_3', 'aws-checksums==0.1.14=h034cb4b_3', 'aws-crt-cpp==0.19.7=h0073717_7', 'aws-sdk-cpp==1.10.57=h4707e7a_4', 'backcall==0.2.0=pyh9f0ad1d_0', 'backports==1.0=pyhd8ed1ab_3', 'backports.functools_lru_cache==1.6.4=pyhd8ed1ab_0', 'basemap==1.3.6=py310h6b4e152_2', 'basemap-data==1.3.2=pyhd8ed1ab_3', 'basemap-data-hires==1.3.2=pyhd8ed1ab_3', 'beautifulsoup4==4.12.2=pyha770c72_0', 'binutils_impl_linux-64==2.40=hf600244_0', 'binutils_linux-64==2.40=hbdbef99_2', 'bleach==6.0.0=pyhd8ed1ab_0', 'blinker==1.6.2=pyhd8ed1ab_0', 'blosc==1.21.3=hafa529b_0', 'bokeh==3.2.1=pyhd8ed1ab_0', 'boost-cpp==1.78.0=h5adbc97_2', 'branca==0.6.0=pyhd8ed1ab_0', 'brotli==1.0.9=h166bdaf_8', 'brotli-bin==1.0.9=h166bdaf_8', 'brotli-python==1.0.9=py310hd8f1fbe_8', 'brotlipy==0.7.0=py310h5764c6d_1005', 'bzip2==1.0.8=h7f98852_4', 'c-ares==1.18.1=h7f98852_0', 'ca-certificates==2023.11.17=hbcca054_0', 'cached-property==1.5.2=hd8ed1ab_1', 'cached_property==1.5.2=pyha770c72_1', 'cachetools==5.3.1=pyhd8ed1ab_0', 'cairo==1.16.0=ha61ee94_1014', 'cartopy==0.21.1=py310hcb7e713_0', 'cdo==2.1.1=hb8d3726_1', 'certifi==2023.11.17=pyhd8ed1ab_0', 'cffi==1.15.1=py310h255011f_3', 'cfgrib==0.9.10.4=pyhd8ed1ab_0', 'cfitsio==4.2.0=hd9d235c_0', 'cftime==1.6.2=py310hde88566_1', 'charset-normalizer==3.1.0=pyhd8ed1ab_0', 'click==8.1.3=unix_pyhd8ed1ab_2', 'click-plugins==1.1.1=py_0', 'cligj==0.7.2=pyhd8ed1ab_1', 'cloudpickle==2.2.1=pyhd8ed1ab_0', 'cmdstan==2.32.1=hff4ab46_0', 'cmdstanpy==1.2.0=pyhd8ed1ab_0', 'colorama==0.4.6=pyhd8ed1ab_0', 'colorcet==3.0.1=pyhd8ed1ab_0', 'comm==0.1.3=pyhd8ed1ab_0', 'configobj==5.0.8=pyhd8ed1ab_0', 'contourpy==1.0.7=py310hdf3cbec_0', 'convertdate==2.4.0=pyhd8ed1ab_0', 'cramjam==2.6.2=py310h3392aa1_0', 'cryptography==40.0.2=py310h34c0648_0', 'curl==8.0.1=h588be90_0', 'cycler==0.11.0=pyhd8ed1ab_0', 'cython==0.29.34=py310heca2aa9_0', 'cytoolz==0.12.0=py310h5764c6d_1', 'dash==2.9.3=pyhd8ed1ab_0', 'dash-auth==2.0.0=pyhd8ed1ab_0', 'dash-bootstrap-components==1.4.1=pyhd8ed1ab_0', 'dash-core-components==2.0.0=pyhd8ed1ab_1', 'dash-html-components==2.0.0=pyhd8ed1ab_1', 'dash-table==5.0.0=pyhd8ed1ab_1', 'dask==2023.4.0=pyhd8ed1ab_0', 'dask-core==2023.4.0=pyhd8ed1ab_0', 'dataclasses==0.8=pyhc8e2a94_3', 'dbus==1.13.6=h5008d03_3', 'debugpy==1.6.7=py310heca2aa9_0', 'decorator==5.1.1=pyhd8ed1ab_0', 'defusedxml==0.7.1=pyhd8ed1ab_0', 'distributed==2023.4.0=pyhd8ed1ab_0', 'docutils==0.19=py310hff52083_1', 'donfig==0.7.0=pyhd8ed1ab_1', 'eccodes==2.29.0=h54fcba4_0', 'entrypoints==0.4=pyhd8ed1ab_0', 'ephem==4.1.5=py310h2372a71_1', 'executing==1.2.0=pyhd8ed1ab_0', 'expat==2.5.0=hcb278e6_1', 'fasteners==0.17.3=pyhd8ed1ab_0', 'fastparquet==2023.2.0=py310h0a54255_0', 'ffmpeg==5.1.2=gpl_h8dda1f0_106', 'fftw==3.3.10=nompi_hc118613_107', 'findlibs==0.0.2=pyhd8ed1ab_0', 'fiona==1.9.1=py310ha325b7b_0', 'flake8==6.0.0=pyhd8ed1ab_0', 'flask==2.2.3=pyhd8ed1ab_0', 'flask-compress==1.13=pyhd8ed1ab_0', 'flatbuffers==22.12.06=hcb278e6_2', 'flit-core==3.8.0=pyhd8ed1ab_0', 'folium==0.14.0=pyhd8ed1ab_0', 'font-ttf-dejavu-sans-mono==2.37=hab24e00_0', 'font-ttf-inconsolata==3.000=h77eed37_0', 'font-ttf-source-code-pro==2.038=h77eed37_0', 'font-ttf-ubuntu==0.83=hab24e00_0', 'fontconfig==2.14.2=h14ed4e7_0', 'fonts-conda-ecosystem==1=0', 'fonts-conda-forge==1=0', 'fonttools==4.39.3=py310h1fa729e_0', 'freeglut==3.2.2=h9c3ff4c_1', 'freetype==2.12.1=hca18f0e_1', 'freexl==1.0.6=h166bdaf_1', 'fribidi==1.0.10=h36c2ea0_0', 'frozenlist==1.4.0=py310h2372a71_0', 'fsspec==2023.4.0=pyh1a96a4e_0', 'gast==0.4.0=pyh9f0ad1d_0', 'gcc_impl_linux-64==12.3.0=he2b93b0_2', 'gcc_linux-64==12.3.0=h76fc315_2', 'gdal==3.6.2=py310hc1b7723_9', 'geopandas==0.12.2=pyhd8ed1ab_0', 'geopandas-base==0.12.2=pyha770c72_0', 'geos==3.11.1=h27087fc_0', 'geotiff==1.7.1=h7a142b4_6', 'gettext==0.21.1=h27087fc_0', 'gflags==2.2.2=he1b5a44_1004', 'giflib==5.2.1=h0b41bf4_3', 'glib==2.76.2=hfc55251_0', 'glib-tools==2.76.2=hfc55251_0', 'glog==0.6.0=h6f12383_0', 'gmp==6.2.1=h58526e2_0', 'gmpy2==2.1.2=py310h3ec546c_1', 'gnutls==3.7.8=hf3e180e_0', 'google-auth==2.22.0=pyh1a96a4e_0', 'google-auth-oauthlib==0.4.6=pyhd8ed1ab_0', 'google-pasta==0.2.0=pyh8c360ce_0', 'graphite2==1.3.13=h58526e2_1001', 'greenlet==2.0.2=py310heca2aa9_0', 'grpcio==1.51.1=py310h4a5735c_1', 'gst-plugins-base==1.22.0=h4243ec0_2', 'gstreamer==1.22.0=h25f0c4b_2', 'gstreamer-orc==0.4.33=h166bdaf_0', 'gxx_impl_linux-64==12.3.0=he2b93b0_2', 'gxx_linux-64==12.3.0=h8a814eb_2', 'h5py==3.8.0=nompi_py310h0311031_100', 'harfbuzz==6.0.0=h8e241bc_0', 'hdf4==4.2.15=h9772cbc_5', 'hdf5==1.12.2=nompi_h4df4325_101', 'holidays==0.34=pyhd8ed1ab_0', 'holoviews==1.18.0=pyhd8ed1ab_0', 'hvplot==0.9.0=pyhd8ed1ab_0', 'icu==70.1=h27087fc_0', 'idna==3.4=pyhd8ed1ab_0', 'importlib-metadata==6.5.0=pyha770c72_0', 'importlib_metadata==6.5.0=hd8ed1ab_0', 'importlib_resources==5.12.0=pyhd8ed1ab_0', 'ipykernel==6.22.0=pyh210e3f2_0', 'ipython==8.12.0=pyh41d4057_0', 'ipython_genutils==0.2.0=py_1', 'ipywidgets==8.0.6=pyhd8ed1ab_0', 'itsdangerous==2.1.2=pyhd8ed1ab_0', 'jack==1.9.22=h11f4161_0', 'jasper==2.0.33=h0ff4b12_1', 'jedi==0.18.2=pyhd8ed1ab_0', 'jinja2==3.1.2=pyhd8ed1ab_1', 'joblib==1.2.0=pyhd8ed1ab_0', 'joypy==0.2.4=pyhd3deb0d_0', 'jpeg==9e=h0b41bf4_3', 'json-c==0.16=hc379101_0', 'jsonschema==4.17.3=pyhd8ed1ab_0', 'jupyter_bokeh==3.0.7=pyhd8ed1ab_0', 'jupyter_client==7.3.4=pyhd8ed1ab_0', 'jupyter_core==5.3.0=py310hff52083_0', 'jupyterlab_pygments==0.2.2=pyhd8ed1ab_0', 'jupyterlab_widgets==3.0.7=pyhd8ed1ab_0', 'kaleido-core==0.2.1=h3644ca4_0', 'kealib==1.5.0=ha7026e8_0', 'keras==2.11.0=pyhd8ed1ab_0', 'keras-preprocessing==1.1.2=pyhd8ed1ab_0', 'kernel-headers_linux-64==2.6.32=he073ed8_16', 'keyutils==1.6.1=h166bdaf_0', 'kiwisolver==1.4.4=py310hbf28c38_1', 'krb5==1.20.1=h81ceb04_0', 'lame==3.100=h166bdaf_1003', 'lcms2==2.15=hfd0df8a_0', 'ld_impl_linux-64==2.40=h41732ed_0', 'lerc==4.0.0=h27087fc_0', 'libabseil==20220623.0=cxx17_h05df665_6', 'libaec==1.0.6=hcb278e6_1', 'libarrow==11.0.0=h2ebd325_5_cpu', 'libblas==3.9.0=16_linux64_openblas', 'libbrotlicommon==1.0.9=h166bdaf_8', 'libbrotlidec==1.0.9=h166bdaf_8', 'libbrotlienc==1.0.9=h166bdaf_8', 'libcap==2.67=he9d0100_0', 'libcblas==3.9.0=16_linux64_openblas', 'libclang==15.0.7=default_had23c3d_1', 'libclang13==15.0.7=default_h3e3d535_1', 'libcrc32c==1.1.2=h9c3ff4c_0', 'libcups==2.3.3=h36d4200_3', 'libcurl==8.0.1=h588be90_0', 'libdap4==3.20.6=hd7c4107_2', 'libdb==6.2.32=h9c3ff4c_0', 'libdeflate==1.17=h0b41bf4_0', 'libdrm==2.4.114=h166bdaf_0', 'libedit==3.1.20191231=he28a2e2_2', 'libev==4.33=h516909a_1', 'libevent==2.1.10=h28343ad_4', 'libexpat==2.5.0=hcb278e6_1', 'libffi==3.4.2=h7f98852_5', 'libflac==1.4.2=h27087fc_0', 'libgcc-devel_linux-64==12.3.0=h8bca6fd_2', 'libgcc-ng==13.2.0=h807b86a_2', 'libgcrypt==1.10.1=h166bdaf_0', 'libgdal==3.6.2=h6c674c2_9', 'libgfortran-ng==12.2.0=h69a702a_19', 'libgfortran5==12.2.0=h337968e_19', 'libglib==2.76.2=hebfc3b9_0', 'libglu==9.0.0=he1b5a44_1001', 'libgomp==13.2.0=h807b86a_2', 'libgoogle-cloud==2.7.0=h21dfe5b_1', 'libgpg-error==1.46=h620e276_0', 'libgrpc==1.51.1=h4fad500_1', 'libhwloc==2.9.1=hd6dc26d_0', 'libiconv==1.17=h166bdaf_0', 'libidn2==2.3.4=h166bdaf_0', 'libkml==1.3.0=h37653c0_1015', 'liblapack==3.9.0=16_linux64_openblas', 'libllvm14==14.0.6=he0ac6c6_1', 'libllvm15==15.0.7=hadd5161_1', 'libnetcdf==4.9.1=nompi_h34a3ff0_101', 'libnghttp2==1.52.0=h61bc06f_0', 'libnsl==2.0.0=h7f98852_0', 'libnuma==2.0.16=h0b41bf4_1', 'libogg==1.3.4=h7f98852_1', 'libopenblas==0.3.21=pthreads_h78a6416_3', 'libopus==1.3.1=h7f98852_1', 'libpciaccess==0.17=h166bdaf_0', 'libpng==1.6.39=h753d276_0', 'libpq==15.2=hb675445_0', 'libprotobuf==3.21.12=h3eb15da_0', 'librttopo==1.1.0=ha49c73b_12', 'libsanitizer==12.3.0=h0f45ef3_2', 'libsndfile==1.2.0=hb75c966_0', 'libsodium==1.0.18=h36c2ea0_1', 'libspatialindex==1.9.3=h9c3ff4c_4', 'libspatialite==5.0.1=h221c8f1_23', 'libsqlite==3.40.0=h753d276_0', 'libssh2==1.10.0=hf14f497_3', 'libstdcxx-devel_linux-64==12.3.0=h8bca6fd_2', 'libstdcxx-ng==13.2.0=h7e041cc_2', 'libsystemd0==253=h8c4010b_1', 'libtasn1==4.19.0=h166bdaf_0', 'libthrift==0.18.0=h5e4af38_0', 'libtiff==4.5.0=h6adf6a1_2', 'libtool==2.4.7=h27087fc_0', 'libudev1==253=h0b41bf4_0', 'libunistring==0.9.10=h7f98852_0', 'libutf8proc==2.8.0=h166bdaf_0', 'libuuid==2.38.1=h0b41bf4_0', 'libva==2.18.0=h0b41bf4_0', 'libvorbis==1.3.7=h9c3ff4c_0', 'libvpx==1.11.0=h9c3ff4c_3', 'libwebp-base==1.3.0=h0b41bf4_0', 'libxcb==1.13=h7f98852_1004', 'libxgboost==1.7.4=cpu_h6e95104_0', 'libxkbcommon==1.5.0=h79f4944_1', 'libxml2==2.10.3=hca2bb57_4', 'libxslt==1.1.37=h873f0b0_0', 'libzip==1.9.2=hc929e4a_1', 'libzlib==1.2.13=h166bdaf_4', 'linkify-it-py==2.0.0=pyhd8ed1ab_0', 'locket==1.0.0=pyhd8ed1ab_0', 'lunarcalendar==0.0.9=py_0', 'lxml==4.9.1=py310h5764c6d_0', 'lz4==4.3.2=py310h0cfdcf0_0', 'lz4-c==1.9.4=hcb278e6_0', 'magics==4.13.0=h37abd2f_2', 'magics-python==1.5.8=pyhd8ed1ab_1', 'make==4.3=hd18ef5c_1', 'mapclassify==2.5.0=pyhd8ed1ab_1', 'markdown==3.4.3=pyhd8ed1ab_0', 'markdown-it-py==3.0.0=pyhd8ed1ab_0', 'markupsafe==2.1.2=py310h1fa729e_0', 'mathjax==2.7.7=ha770c72_3', 'matplotlib==3.5.3=py310hff52083_2', 'matplotlib-base==3.5.3=py310h8d5ebf3_2', 'matplotlib-inline==0.1.6=pyhd8ed1ab_0', 'mccabe==0.7.0=pyhd8ed1ab_0', 'mdit-py-plugins==0.4.0=pyhd8ed1ab_0', 'mdurl==0.1.0=pyhd8ed1ab_0', 'metpy==1.4.1=pyhd8ed1ab_0', 'mistune==2.0.5=pyhd8ed1ab_0', 'mpc==1.3.1=hfe3b2da_0', 'mpfr==4.2.0=hb012696_0', 'mpg123==1.31.3=hcb278e6_0', 'mpmath==1.3.0=pyhd8ed1ab_0', 'msgpack-python==1.0.5=py310hdf3cbec_0', 'multidict==6.0.4=py310h1fa729e_0', 'munch==2.5.0=py_0', 'munkres==1.1.4=pyh9f0ad1d_0', 'mysql-common==8.0.32=ha901b37_1', 'mysql-libs==8.0.32=hd7da12d_1', 'nbclient==0.7.3=pyhd8ed1ab_0', 'nbconvert==7.3.1=pyhd8ed1ab_0', 'nbconvert-core==7.3.1=pyhd8ed1ab_0', 'nbconvert-pandoc==7.3.1=pyhd8ed1ab_0', 'nbformat==5.8.0=pyhd8ed1ab_0', 'ncurses==6.3=h27087fc_1', 'ncview==2.1.8=habe87be_5', 'nest-asyncio==1.5.6=pyhd8ed1ab_0', 'netcdf4==1.6.3=nompi_py310h0feb132_100', 'nettle==3.8.1=hc379101_1', 'networkx==3.1=pyhd8ed1ab_0', 'notebook==6.4.12=pyha770c72_0', 'nspr==4.35=h27087fc_0', 'nss==3.89=he45b914_0', 'numcodecs==0.11.0=py310heca2aa9_1', 'numpy==1.24.2=py310h8deb116_0', 'oauthlib==3.2.2=pyhd8ed1ab_0', 'openh264==2.3.1=hcb278e6_2', 'openjpeg==2.5.0=hfec8fc6_2', 'openssl==3.1.4=hd590300_0', 'opt_einsum==3.3.0=pyhd8ed1ab_1', 'orc==1.8.2=hfdbbad2_2', 'ossuuid==1.6.2=hf484d3e_1000', 'owslib==0.29.1=pyhd8ed1ab_0', 'p11-kit==0.24.1=hc5aa10d_0', 'packaging==23.1=pyhd8ed1ab_0', 'pandas==2.0.0=py310h9b08913_0', 'pandoc==2.19.2=h32600fe_2', 'pandocfilters==1.5.0=pyhd8ed1ab_0', 'panel==1.3.1=pyhd8ed1ab_0', 'pango==1.50.14=hd33c08f_0', 'parallel==20230322=ha770c72_0', 'param==2.0.0=pyhca7485f_0', 'parquet-cpp==1.5.1=2', 'parso==0.8.3=pyhd8ed1ab_0', 'partd==1.4.0=pyhd8ed1ab_0', 'patsy==0.5.3=pyhd8ed1ab_0', 'pcre==8.45=h9c3ff4c_0', 'pcre2==10.40=hc3806b6_0', 'perl==5.32.1=2_h7f98852_perl5', 'pexpect==4.8.0=pyh1a96a4e_2', 'pickleshare==0.7.5=py_1003', 'pillow==9.4.0=py310h023d228_1', 'pint==0.20.1=pyhd8ed1ab_0', 'pip==23.1=pyhd8ed1ab_0', 'pixman==0.40.0=h36c2ea0_0', 'pkgutil-resolve-name==1.3.10=pyhd8ed1ab_0', 'platformdirs==3.2.0=pyhd8ed1ab_0', 'plotly==5.14.1=pyhd8ed1ab_0', 'ply==3.11=py_1', 'pooch==1.7.0=pyha770c72_3', 'poppler==23.03.0=h091648b_0', 'poppler-data==0.4.12=hd8ed1ab_0', 'portaudio==19.6.0=h583fa2b_7', 'postgresql==15.2=h3248436_0', 'proj==9.1.1=h8ffa02c_2', 'prometheus_client==0.16.0=pyhd8ed1ab_0', 'prompt-toolkit==3.0.38=pyha770c72_0', 'prompt_toolkit==3.0.38=hd8ed1ab_0', 'prophet==1.1.4=py310h56eac3b_0', 'protobuf==4.21.12=py310heca2aa9_0', 'psutil==5.9.5=py310h1fa729e_0', 'psycopg2==2.9.3=py310h416cc33_2', 'pthread-stubs==0.4=h36c2ea0_1001', 'ptyprocess==0.7.0=pyhd3deb0d_0', 'pulseaudio==16.1=hcb278e6_3', 'pulseaudio-client==16.1=h5195f5e_3', 'pulseaudio-daemon==16.1=ha8d29e2_3', 'pure_eval==0.2.2=pyhd8ed1ab_0', 'py-xgboost==1.7.4=cpu_py310hd1aba9c_0', 'pyarrow==11.0.0=py310h633f555_5_cpu', 'pyasn1==0.4.8=py_0', 'pyasn1-modules==0.2.7=py_0', 'pycodestyle==2.10.0=pyhd8ed1ab_0', 'pycparser==2.21=pyhd8ed1ab_0', 'pyct==0.4.6=py_0', 'pyct-core==0.4.6=py_0', 'pyflakes==3.0.1=pyhd8ed1ab_0', 'pygments==2.15.1=pyhd8ed1ab_0', 'pyjwt==2.8.0=pyhd8ed1ab_0', 'pykdtree==1.3.7.post0=py310h0a54255_0', 'pykrige==1.7.0=py310h278f3c1_1', 'pymeeus==0.5.12=pyhd8ed1ab_0', 'pyopenssl==23.1.1=pyhd8ed1ab_0', 'pyorbital==1.7.3=pyhd8ed1ab_0', 'pyparsing==3.0.9=pyhd8ed1ab_0', 'pyproj==3.4.1=py310h15e2413_1', 'pyqt==5.15.7=py310hab646b1_3', 'pyqt5-sip==12.11.0=py310heca2aa9_3', 'pyresample==1.26.1=py310h9b08913_0', 'pyrsistent==0.19.3=py310h1fa729e_0', 'pyshp==2.3.1=pyhd8ed1ab_0', 'pysocks==1.7.1=pyha2e5f31_6', 'pyspectral==0.12.3=pyhd8ed1ab_0', 'python==3.10.10=he550d4f_0_cpython', 'python-dateutil==2.8.2=pyhd8ed1ab_0', 'python-eccodes==1.4.2=py310hde88566_1', 'python-fastjsonschema==2.16.3=pyhd8ed1ab_0', 'python-flatbuffers==23.5.26=pyhd8ed1ab_0', 'python-geotiepoints==1.6.0=py310h0a54255_0', 'python-kaleido==0.2.1=pyhd8ed1ab_0', 'python-tzdata==2023.3=pyhd8ed1ab_0', 'python_abi==3.10=3_cp310', 'pytz==2023.3=pyhd8ed1ab_0', 'pyu2f==0.1.5=pyhd8ed1ab_0', 'pyviz_comms==2.3.2=pyhd8ed1ab_0', 'pyyaml==6.0=py310h5764c6d_5', 'pyzmq==25.0.2=py310h059b190_0', 'qt-main==5.15.8=h5d23da1_6', 'rasterio==1.3.6=py310h3e853a9_0', 'rclone==1.63.1=h519d9b9_0', 're2==2023.02.01=hcb278e6_0', 'readline==8.2=h8228510_1', 'regionmask==0.9.0=pyhd8ed1ab_0', 'requests==2.28.2=pyhd8ed1ab_1', 'requests-oauthlib==1.3.1=pyhd8ed1ab_0', 'rioxarray==0.14.1=pyhd8ed1ab_0', 'rsa==4.9=pyhd8ed1ab_0', 'rtree==1.0.1=py310hbdcdc62_1', 's2n==1.3.37=h3358134_0', 'satpy==0.41.1=pyhd8ed1ab_0', 'scikit-learn==1.2.2=py310h41b6a48_1', 'scipy==1.10.1=py310h8deb116_0', 'seaborn==0.12.2=hd8ed1ab_0', 'seaborn-base==0.12.2=pyhd8ed1ab_0', 'send2trash==1.8.0=pyhd8ed1ab_0', 'setuptools==67.6.1=pyhd8ed1ab_0', 'shapely==2.0.1=py310h8b84c32_0', 'simplejson==3.19.1=py310h1fa729e_0', 'sip==6.7.9=py310hc6cd4ac_0', 'six==1.16.0=pyh6c4a22f_0', 'snappy==1.1.10=h9fff704_0', 'snuggs==1.4.7=py_0', 'sortedcontainers==2.4.0=pyhd8ed1ab_0', 'soupsieve==2.3.2.post1=pyhd8ed1ab_0', 'sqlalchemy==2.0.9=py310h1fa729e_0', 'sqlite==3.40.0=h4ff8645_0', 'stack_data==0.6.2=pyhd8ed1ab_0', 'stanio==0.3.0=pyhd8ed1ab_0', 'statsmodels==0.13.5=py310hde88566_2', 'svt-av1==1.4.1=hcb278e6_0', 'sympy==1.11.1=pypyh9d50eac_103', 'sysroot_linux-64==2.12=he073ed8_16', 'tbb==2021.9.0=hf52228f_0', 'tbb-devel==2021.9.0=hf52228f_0', 'tblib==1.7.0=pyhd8ed1ab_0', 'tenacity==8.2.2=pyhd8ed1ab_0', 'tensorboard==2.11.2=pyhd8ed1ab_0', 'tensorboard-data-server==0.6.1=py310h600f1e7_4', 'tensorboard-plugin-wit==1.8.1=pyhd8ed1ab_0', 'tensorflow==2.11.0=cpu_py310hd1aba9c_0', 'tensorflow-base==2.11.0=cpu_py310hc9b7e7f_0', 'tensorflow-estimator==2.11.0=cpu_py310hfed9998_0', 'termcolor==2.3.0=pyhd8ed1ab_0', 'terminado==0.17.1=pyh41d4057_0', 'threadpoolctl==3.1.0=pyh8a188c0_0', 'tiledb==2.13.2=hd532e3d_0', 'tinycss2==1.2.1=pyhd8ed1ab_0', 'tk==8.6.12=h27826a3_0', 'toml==0.10.2=pyhd8ed1ab_0', 'tomli==2.0.1=pyhd8ed1ab_0', 'toolz==0.12.0=pyhd8ed1ab_0', 'tornado==6.1=py310h5764c6d_3', 'tqdm==4.65.0=pyhd8ed1ab_1', 'traitlets==5.9.0=pyhd8ed1ab_0', 'trollimage==1.20.1=pyhd8ed1ab_0', 'trollsift==0.5.0=pyhd8ed1ab_0', 'typing-extensions==4.5.0=hd8ed1ab_0', 'typing_extensions==4.5.0=pyha770c72_0', 'tzcode==2023c=h0b41bf4_0', 'tzdata==2023c=h71feb2d_0', 'uc-micro-py==1.0.1=pyhd8ed1ab_0', 'ucx==1.14.0=h8c404fb_1', 'udunits2==2.2.28=hc3e0081_0', 'unicodedata2==15.0.0=py310h5764c6d_0', 'urllib3==1.26.15=pyhd8ed1ab_0', 'wcwidth==0.2.6=pyhd8ed1ab_0', 'webencodings==0.5.1=py_1', 'werkzeug==2.2.3=pyhd8ed1ab_0', 'wheel==0.40.0=pyhd8ed1ab_0', 'widgetsnbextension==4.0.7=pyhd8ed1ab_0', 'wrapt==1.15.0=py310h1fa729e_0', 'x264==1!164.3095=h166bdaf_2', 'x265==3.5=h924138e_3', 'xarray==2023.4.1=pyhd8ed1ab_0', 'xcb-util==0.4.0=h166bdaf_0', 'xcb-util-image==0.4.0=h166bdaf_0', 'xcb-util-keysyms==0.4.0=h166bdaf_0', 'xcb-util-renderutil==0.3.9=h166bdaf_0', 'xcb-util-wm==0.4.1=h166bdaf_0', 'xerces-c==3.2.4=h55805fa_0', 'xgboost==1.7.4=cpu_py310hd1aba9c_0', 'xkeyboard-config==2.38=h0b41bf4_0', 'xlsxwriter==3.1.2=pyhd8ed1ab_0', 'xorg-fixesproto==5.0=h7f98852_1002', 'xorg-inputproto==2.3.2=h7f98852_1002', 'xorg-kbproto==1.0.7=h7f98852_1002', 'xorg-libice==1.0.10=h7f98852_0', 'xorg-libsm==1.2.3=hd9c2040_1000', 'xorg-libx11==1.8.4=h0b41bf4_0', 'xorg-libxau==1.0.9=h7f98852_0', 'xorg-libxaw==1.0.14=h7f98852_1', 'xorg-libxdmcp==1.1.3=h7f98852_0', 'xorg-libxext==1.3.4=h0b41bf4_2', 'xorg-libxfixes==5.0.3=h7f98852_1004', 'xorg-libxi==1.7.10=h7f98852_0', 'xorg-libxmu==1.1.3=h7f98852_0', 'xorg-libxpm==3.5.13=h7f98852_0', 'xorg-libxrender==0.9.10=h7f98852_1003', 'xorg-libxt==1.2.1=h7f98852_2', 'xorg-renderproto==0.11.1=h7f98852_1002', 'xorg-xextproto==7.3.0=h0b41bf4_1003', 'xorg-xproto==7.0.31=h7f98852_1007', 'xyzservices==2023.2.0=pyhd8ed1ab_0', 'xz==5.2.6=h166bdaf_0', 'yaml==0.2.5=h7f98852_2', 'yarl==1.9.2=py310h2372a71_0', 'zarr==2.14.2=pyhd8ed1ab_0', 'zeromq==4.3.4=h9c3ff4c_1', 'zict==3.0.0=pyhd8ed1ab_0', 'zipp==3.15.0=pyhd8ed1ab_0', 'zlib==1.2.13=h166bdaf_4', 'zstandard==0.19.0=py310h5764c6d_0', 'zstd==1.5.2=h3eb15da_6']

Transaction

  Prefix: /opt/conda/envs/stations

  Updating specs:

   - _libgcc_mutex==0.1=conda_forge
   - _openmp_mutex==4.5=2_gnu
   - _py-xgboost-mutex==2.0=cpu_0
   - absl-py==1.4.0=pyhd8ed1ab_0
   - affine==2.4.0=pyhd8ed1ab_0
   - aiohttp==3.8.5=py310h2372a71_0
   - aiosignal==1.3.1=pyhd8ed1ab_0
   - alsa-lib==1.2.8=h166bdaf_0
   - aom==3.5.0=h27087fc_0
   - appdirs==1.4.4=pyh9f0ad1d_0
   - argon2-cffi==21.3.0=pyhd8ed1ab_0
   - argon2-cffi-bindings==21.2.0=py310h5764c6d_3
   - arrow-cpp==11.0.0=ha770c72_5_cpu
   - asciitree==0.3.3=py_2
   - asttokens==2.2.1=pyhd8ed1ab_0
   - astunparse==1.6.3=pyhd8ed1ab_0
   - async-timeout==4.0.2=pyhd8ed1ab_0
   - attr==2.5.1=h166bdaf_1
   - attrs==22.2.0=pyh71513ae_0
   - autopep8==2.0.2=pyhd8ed1ab_0
   - aws-c-auth==0.6.24=h84a1944_5
   - aws-c-cal==0.5.20=hc60faf5_6
   - aws-c-common==0.8.11=h0b41bf4_0
   - aws-c-compression==0.2.16=h034cb4b_3
   - aws-c-event-stream==0.2.18=h75388cd_6
   - aws-c-http==0.7.4=hf084cc8_2
   - aws-c-io==0.13.17=h10df833_2
   - aws-c-mqtt==0.8.6=hc41645a_6
   - aws-c-s3==0.2.4=h1b8f470_3
   - aws-c-sdkutils==0.1.7=h034cb4b_3
   - aws-checksums==0.1.14=h034cb4b_3
   - aws-crt-cpp==0.19.7=h0073717_7
   - aws-sdk-cpp==1.10.57=h4707e7a_4
   - backcall==0.2.0=pyh9f0ad1d_0
   - backports==1.0=pyhd8ed1ab_3
   - backports.functools_lru_cache==1.6.4=pyhd8ed1ab_0
   - basemap==1.3.6=py310h6b4e152_2
   - basemap-data==1.3.2=pyhd8ed1ab_3
   - basemap-data-hires==1.3.2=pyhd8ed1ab_3
   - beautifulsoup4==4.12.2=pyha770c72_0
   - binutils_impl_linux-64==2.40=hf600244_0
   - binutils_linux-64==2.40=hbdbef99_2
   - bleach==6.0.0=pyhd8ed1ab_0
   - blinker==1.6.2=pyhd8ed1ab_0
   - blosc==1.21.3=hafa529b_0
   - bokeh==3.2.1=pyhd8ed1ab_0
   - boost-cpp==1.78.0=h5adbc97_2
   - branca==0.6.0=pyhd8ed1ab_0
   - brotli==1.0.9=h166bdaf_8
   - brotli-bin==1.0.9=h166bdaf_8
   - brotli-python==1.0.9=py310hd8f1fbe_8
   - brotlipy==0.7.0=py310h5764c6d_1005
   - bzip2==1.0.8=h7f98852_4
   - c-ares==1.18.1=h7f98852_0
   - ca-certificates==2023.11.17=hbcca054_0
   - cached-property==1.5.2=hd8ed1ab_1
   - cached_property==1.5.2=pyha770c72_1
   - cachetools==5.3.1=pyhd8ed1ab_0
   - cairo==1.16.0=ha61ee94_1014
   - cartopy==0.21.1=py310hcb7e713_0
   - cdo==2.1.1=hb8d3726_1
   - certifi==2023.11.17=pyhd8ed1ab_0
   - cffi==1.15.1=py310h255011f_3
   - cfgrib==0.9.10.4=pyhd8ed1ab_0
   - cfitsio==4.2.0=hd9d235c_0
   - cftime==1.6.2=py310hde88566_1
   - charset-normalizer==3.1.0=pyhd8ed1ab_0
   - click==8.1.3=unix_pyhd8ed1ab_2
   - click-plugins==1.1.1=py_0
   - cligj==0.7.2=pyhd8ed1ab_1
   - cloudpickle==2.2.1=pyhd8ed1ab_0
   - cmdstan==2.32.1=hff4ab46_0
   - cmdstanpy==1.2.0=pyhd8ed1ab_0
   - colorama==0.4.6=pyhd8ed1ab_0
   - colorcet==3.0.1=pyhd8ed1ab_0
   - comm==0.1.3=pyhd8ed1ab_0
   - configobj==5.0.8=pyhd8ed1ab_0
   - contourpy==1.0.7=py310hdf3cbec_0
   - convertdate==2.4.0=pyhd8ed1ab_0
   - cramjam==2.6.2=py310h3392aa1_0
   - cryptography==40.0.2=py310h34c0648_0
   - curl==8.0.1=h588be90_0
   - cycler==0.11.0=pyhd8ed1ab_0
   - cython==0.29.34=py310heca2aa9_0
   - cytoolz==0.12.0=py310h5764c6d_1
   - dash==2.9.3=pyhd8ed1ab_0
   - dash-auth==2.0.0=pyhd8ed1ab_0
   - dash-bootstrap-components==1.4.1=pyhd8ed1ab_0
   - dash-core-components==2.0.0=pyhd8ed1ab_1
   - dash-html-components==2.0.0=pyhd8ed1ab_1
   - dash-table==5.0.0=pyhd8ed1ab_1
   - dask==2023.4.0=pyhd8ed1ab_0
   - dask-core==2023.4.0=pyhd8ed1ab_0
   - dataclasses==0.8=pyhc8e2a94_3
   - dbus==1.13.6=h5008d03_3
   - debugpy==1.6.7=py310heca2aa9_0
   - decorator==5.1.1=pyhd8ed1ab_0
   - defusedxml==0.7.1=pyhd8ed1ab_0
   - distributed==2023.4.0=pyhd8ed1ab_0
   - docutils==0.19=py310hff52083_1
   - donfig==0.7.0=pyhd8ed1ab_1
   - eccodes==2.29.0=h54fcba4_0
   - entrypoints==0.4=pyhd8ed1ab_0
   - ephem==4.1.5=py310h2372a71_1
   - executing==1.2.0=pyhd8ed1ab_0
   - expat==2.5.0=hcb278e6_1
   - fasteners==0.17.3=pyhd8ed1ab_0
   - fastparquet==2023.2.0=py310h0a54255_0
   - ffmpeg==5.1.2=gpl_h8dda1f0_106
   - fftw==3.3.10=nompi_hc118613_107
   - findlibs==0.0.2=pyhd8ed1ab_0
   - fiona==1.9.1=py310ha325b7b_0
   - flake8==6.0.0=pyhd8ed1ab_0
   - flask==2.2.3=pyhd8ed1ab_0
   - flask-compress==1.13=pyhd8ed1ab_0
   - flatbuffers==22.12.06=hcb278e6_2
   - flit-core==3.8.0=pyhd8ed1ab_0
   - folium==0.14.0=pyhd8ed1ab_0
   - font-ttf-dejavu-sans-mono==2.37=hab24e00_0
   - font-ttf-inconsolata==3.000=h77eed37_0
   - font-ttf-source-code-pro==2.038=h77eed37_0
   - font-ttf-ubuntu==0.83=hab24e00_0
   - fontconfig==2.14.2=h14ed4e7_0
   - fonts-conda-ecosystem==1=0
   - fonts-conda-forge==1=0
   - fonttools==4.39.3=py310h1fa729e_0
   - freeglut==3.2.2=h9c3ff4c_1
   - freetype==2.12.1=hca18f0e_1
   - freexl==1.0.6=h166bdaf_1
   - fribidi==1.0.10=h36c2ea0_0
   - frozenlist==1.4.0=py310h2372a71_0
   - fsspec==2023.4.0=pyh1a96a4e_0
   - gast==0.4.0=pyh9f0ad1d_0
   - gcc_impl_linux-64==12.3.0=he2b93b0_2
   - gcc_linux-64==12.3.0=h76fc315_2
   - gdal==3.6.2=py310hc1b7723_9
   - geopandas==0.12.2=pyhd8ed1ab_0
   - geopandas-base==0.12.2=pyha770c72_0
   - geos==3.11.1=h27087fc_0
   - geotiff==1.7.1=h7a142b4_6
   - gettext==0.21.1=h27087fc_0
   - gflags==2.2.2=he1b5a44_1004
   - giflib==5.2.1=h0b41bf4_3
   - glib==2.76.2=hfc55251_0
   - glib-tools==2.76.2=hfc55251_0
   - glog==0.6.0=h6f12383_0
   - gmp==6.2.1=h58526e2_0
   - gmpy2==2.1.2=py310h3ec546c_1
   - gnutls==3.7.8=hf3e180e_0
   - google-auth==2.22.0=pyh1a96a4e_0
   - google-auth-oauthlib==0.4.6=pyhd8ed1ab_0
   - google-pasta==0.2.0=pyh8c360ce_0
   - graphite2==1.3.13=h58526e2_1001
   - greenlet==2.0.2=py310heca2aa9_0
   - grpcio==1.51.1=py310h4a5735c_1
   - gst-plugins-base==1.22.0=h4243ec0_2
   - gstreamer==1.22.0=h25f0c4b_2
   - gstreamer-orc==0.4.33=h166bdaf_0
   - gxx_impl_linux-64==12.3.0=he2b93b0_2
   - gxx_linux-64==12.3.0=h8a814eb_2
   - h5py==3.8.0=nompi_py310h0311031_100
   - harfbuzz==6.0.0=h8e241bc_0
   - hdf4==4.2.15=h9772cbc_5
   - hdf5==1.12.2=nompi_h4df4325_101
   - holidays==0.34=pyhd8ed1ab_0
   - holoviews==1.18.0=pyhd8ed1ab_0
   - hvplot==0.9.0=pyhd8ed1ab_0
   - icu==70.1=h27087fc_0
   - idna==3.4=pyhd8ed1ab_0
   - importlib-metadata==6.5.0=pyha770c72_0
   - importlib_metadata==6.5.0=hd8ed1ab_0
   - importlib_resources==5.12.0=pyhd8ed1ab_0
   - ipykernel==6.22.0=pyh210e3f2_0
   - ipython==8.12.0=pyh41d4057_0
   - ipython_genutils==0.2.0=py_1
   - ipywidgets==8.0.6=pyhd8ed1ab_0
   - itsdangerous==2.1.2=pyhd8ed1ab_0
   - jack==1.9.22=h11f4161_0
   - jasper==2.0.33=h0ff4b12_1
   - jedi==0.18.2=pyhd8ed1ab_0
   - jinja2==3.1.2=pyhd8ed1ab_1
   - joblib==1.2.0=pyhd8ed1ab_0
   - joypy==0.2.4=pyhd3deb0d_0
   - jpeg==9e=h0b41bf4_3
   - json-c==0.16=hc379101_0
   - jsonschema==4.17.3=pyhd8ed1ab_0
   - jupyter_bokeh==3.0.7=pyhd8ed1ab_0
   - jupyter_client==7.3.4=pyhd8ed1ab_0
   - jupyter_core==5.3.0=py310hff52083_0
   - jupyterlab_pygments==0.2.2=pyhd8ed1ab_0
   - jupyterlab_widgets==3.0.7=pyhd8ed1ab_0
   - kaleido-core==0.2.1=h3644ca4_0
   - kealib==1.5.0=ha7026e8_0
   - keras==2.11.0=pyhd8ed1ab_0
   - keras-preprocessing==1.1.2=pyhd8ed1ab_0
   - kernel-headers_linux-64==2.6.32=he073ed8_16
   - keyutils==1.6.1=h166bdaf_0
   - kiwisolver==1.4.4=py310hbf28c38_1
   - krb5==1.20.1=h81ceb04_0
   - lame==3.100=h166bdaf_1003
   - lcms2==2.15=hfd0df8a_0
   - ld_impl_linux-64==2.40=h41732ed_0
   - lerc==4.0.0=h27087fc_0
   - libabseil==20220623.0=cxx17_h05df665_6
   - libaec==1.0.6=hcb278e6_1
   - libarrow==11.0.0=h2ebd325_5_cpu
   - libblas==3.9.0=16_linux64_openblas
   - libbrotlicommon==1.0.9=h166bdaf_8
   - libbrotlidec==1.0.9=h166bdaf_8
   - libbrotlienc==1.0.9=h166bdaf_8
   - libcap==2.67=he9d0100_0
   - libcblas==3.9.0=16_linux64_openblas
   - libclang==15.0.7=default_had23c3d_1
   - libclang13==15.0.7=default_h3e3d535_1
   - libcrc32c==1.1.2=h9c3ff4c_0
   - libcups==2.3.3=h36d4200_3
   - libcurl==8.0.1=h588be90_0
   - libdap4==3.20.6=hd7c4107_2
   - libdb==6.2.32=h9c3ff4c_0
   - libdeflate==1.17=h0b41bf4_0
   - libdrm==2.4.114=h166bdaf_0
   - libedit==3.1.20191231=he28a2e2_2
   - libev==4.33=h516909a_1
   - libevent==2.1.10=h28343ad_4
   - libexpat==2.5.0=hcb278e6_1
   - libffi==3.4.2=h7f98852_5
   - libflac==1.4.2=h27087fc_0
   - libgcc-devel_linux-64==12.3.0=h8bca6fd_2
   - libgcc-ng==13.2.0=h807b86a_2
   - libgcrypt==1.10.1=h166bdaf_0
   - libgdal==3.6.2=h6c674c2_9
   - libgfortran-ng==12.2.0=h69a702a_19
   - libgfortran5==12.2.0=h337968e_19
   - libglib==2.76.2=hebfc3b9_0
   - libglu==9.0.0=he1b5a44_1001
   - libgomp==13.2.0=h807b86a_2
   - libgoogle-cloud==2.7.0=h21dfe5b_1
   - libgpg-error==1.46=h620e276_0
   - libgrpc==1.51.1=h4fad500_1
   - libhwloc==2.9.1=hd6dc26d_0
   - libiconv==1.17=h166bdaf_0
   - libidn2==2.3.4=h166bdaf_0
   - libkml==1.3.0=h37653c0_1015
   - liblapack==3.9.0=16_linux64_openblas
   - libllvm14==14.0.6=he0ac6c6_1
   - libllvm15==15.0.7=hadd5161_1
   - libnetcdf==4.9.1=nompi_h34a3ff0_101
   - libnghttp2==1.52.0=h61bc06f_0
   - libnsl==2.0.0=h7f98852_0
   - libnuma==2.0.16=h0b41bf4_1
   - libogg==1.3.4=h7f98852_1
   - libopenblas==0.3.21=pthreads_h78a6416_3
   - libopus==1.3.1=h7f98852_1
   - libpciaccess==0.17=h166bdaf_0
   - libpng==1.6.39=h753d276_0
   - libpq==15.2=hb675445_0
   - libprotobuf==3.21.12=h3eb15da_0
   - librttopo==1.1.0=ha49c73b_12
   - libsanitizer==12.3.0=h0f45ef3_2
   - libsndfile==1.2.0=hb75c966_0
   - libsodium==1.0.18=h36c2ea0_1
   - libspatialindex==1.9.3=h9c3ff4c_4
   - libspatialite==5.0.1=h221c8f1_23
   - libsqlite==3.40.0=h753d276_0
   - libssh2==1.10.0=hf14f497_3
   - libstdcxx-devel_linux-64==12.3.0=h8bca6fd_2
   - libstdcxx-ng==13.2.0=h7e041cc_2
   - libsystemd0==253=h8c4010b_1
   - libtasn1==4.19.0=h166bdaf_0
   - libthrift==0.18.0=h5e4af38_0
   - libtiff==4.5.0=h6adf6a1_2
   - libtool==2.4.7=h27087fc_0
   - libudev1==253=h0b41bf4_0
   - libunistring==0.9.10=h7f98852_0
   - libutf8proc==2.8.0=h166bdaf_0
   - libuuid==2.38.1=h0b41bf4_0
   - libva==2.18.0=h0b41bf4_0
   - libvorbis==1.3.7=h9c3ff4c_0
   - libvpx==1.11.0=h9c3ff4c_3
   - libwebp-base==1.3.0=h0b41bf4_0
   - libxcb==1.13=h7f98852_1004
   - libxgboost==1.7.4=cpu_h6e95104_0
   - libxkbcommon==1.5.0=h79f4944_1
   - libxml2==2.10.3=hca2bb57_4
   - libxslt==1.1.37=h873f0b0_0
   - libzip==1.9.2=hc929e4a_1
   - libzlib==1.2.13=h166bdaf_4
   - linkify-it-py==2.0.0=pyhd8ed1ab_0
   - locket==1.0.0=pyhd8ed1ab_0
   - lunarcalendar==0.0.9=py_0
   - lxml==4.9.1=py310h5764c6d_0
   - lz4==4.3.2=py310h0cfdcf0_0
   - lz4-c==1.9.4=hcb278e6_0
   - magics==4.13.0=h37abd2f_2
   - magics-python==1.5.8=pyhd8ed1ab_1
   - make==4.3=hd18ef5c_1
   - mapclassify==2.5.0=pyhd8ed1ab_1
   - markdown==3.4.3=pyhd8ed1ab_0
   - markdown-it-py==3.0.0=pyhd8ed1ab_0
   - markupsafe==2.1.2=py310h1fa729e_0
   - mathjax==2.7.7=ha770c72_3
   - matplotlib==3.5.3=py310hff52083_2
   - matplotlib-base==3.5.3=py310h8d5ebf3_2
   - matplotlib-inline==0.1.6=pyhd8ed1ab_0
   - mccabe==0.7.0=pyhd8ed1ab_0
   - mdit-py-plugins==0.4.0=pyhd8ed1ab_0
   - mdurl==0.1.0=pyhd8ed1ab_0
   - metpy==1.4.1=pyhd8ed1ab_0
   - mistune==2.0.5=pyhd8ed1ab_0
   - mpc==1.3.1=hfe3b2da_0
   - mpfr==4.2.0=hb012696_0
   - mpg123==1.31.3=hcb278e6_0
   - mpmath==1.3.0=pyhd8ed1ab_0
   - msgpack-python==1.0.5=py310hdf3cbec_0
   - multidict==6.0.4=py310h1fa729e_0
   - munch==2.5.0=py_0
   - munkres==1.1.4=pyh9f0ad1d_0
   - mysql-common==8.0.32=ha901b37_1
   - mysql-libs==8.0.32=hd7da12d_1
   - nbclient==0.7.3=pyhd8ed1ab_0
   - nbconvert==7.3.1=pyhd8ed1ab_0
   - nbconvert-core==7.3.1=pyhd8ed1ab_0
   - nbconvert-pandoc==7.3.1=pyhd8ed1ab_0
   - nbformat==5.8.0=pyhd8ed1ab_0
   - ncurses==6.3=h27087fc_1
   - ncview==2.1.8=habe87be_5
   - nest-asyncio==1.5.6=pyhd8ed1ab_0
   - netcdf4==1.6.3=nompi_py310h0feb132_100
   - nettle==3.8.1=hc379101_1
   - networkx==3.1=pyhd8ed1ab_0
   - notebook==6.4.12=pyha770c72_0
   - nspr==4.35=h27087fc_0
   - nss==3.89=he45b914_0
   - numcodecs==0.11.0=py310heca2aa9_1
   - numpy==1.24.2=py310h8deb116_0
   - oauthlib==3.2.2=pyhd8ed1ab_0
   - openh264==2.3.1=hcb278e6_2
   - openjpeg==2.5.0=hfec8fc6_2
   - openssl==3.1.4=hd590300_0
   - opt_einsum==3.3.0=pyhd8ed1ab_1
   - orc==1.8.2=hfdbbad2_2
   - ossuuid==1.6.2=hf484d3e_1000
   - owslib==0.29.1=pyhd8ed1ab_0
   - p11-kit==0.24.1=hc5aa10d_0
   - packaging==23.1=pyhd8ed1ab_0
   - pandas==2.0.0=py310h9b08913_0
   - pandoc==2.19.2=h32600fe_2
   - pandocfilters==1.5.0=pyhd8ed1ab_0
   - panel==1.3.1=pyhd8ed1ab_0
   - pango==1.50.14=hd33c08f_0
   - parallel==20230322=ha770c72_0
   - param==2.0.0=pyhca7485f_0
   - parquet-cpp==1.5.1=2
   - parso==0.8.3=pyhd8ed1ab_0
   - partd==1.4.0=pyhd8ed1ab_0
   - patsy==0.5.3=pyhd8ed1ab_0
   - pcre==8.45=h9c3ff4c_0
   - pcre2==10.40=hc3806b6_0
   - perl==5.32.1=2_h7f98852_perl5
   - pexpect==4.8.0=pyh1a96a4e_2
   - pickleshare==0.7.5=py_1003
   - pillow==9.4.0=py310h023d228_1
   - pint==0.20.1=pyhd8ed1ab_0
   - pip==23.1=pyhd8ed1ab_0
   - pixman==0.40.0=h36c2ea0_0
   - pkgutil-resolve-name==1.3.10=pyhd8ed1ab_0
   - platformdirs==3.2.0=pyhd8ed1ab_0
   - plotly==5.14.1=pyhd8ed1ab_0
   - ply==3.11=py_1
   - pooch==1.7.0=pyha770c72_3
   - poppler==23.03.0=h091648b_0
   - poppler-data==0.4.12=hd8ed1ab_0
   - portaudio==19.6.0=h583fa2b_7
   - postgresql==15.2=h3248436_0
   - proj==9.1.1=h8ffa02c_2
   - prometheus_client==0.16.0=pyhd8ed1ab_0
   - prompt-toolkit==3.0.38=pyha770c72_0
   - prompt_toolkit==3.0.38=hd8ed1ab_0
   - prophet==1.1.4=py310h56eac3b_0
   - protobuf==4.21.12=py310heca2aa9_0
   - psutil==5.9.5=py310h1fa729e_0
   - psycopg2==2.9.3=py310h416cc33_2
   - pthread-stubs==0.4=h36c2ea0_1001
   - ptyprocess==0.7.0=pyhd3deb0d_0
   - pulseaudio==16.1=hcb278e6_3
   - pulseaudio-client==16.1=h5195f5e_3
   - pulseaudio-daemon==16.1=ha8d29e2_3
   - pure_eval==0.2.2=pyhd8ed1ab_0
   - py-xgboost==1.7.4=cpu_py310hd1aba9c_0
   - pyarrow==11.0.0=py310h633f555_5_cpu
   - pyasn1==0.4.8=py_0
   - pyasn1-modules==0.2.7=py_0
   - pycodestyle==2.10.0=pyhd8ed1ab_0
   - pycparser==2.21=pyhd8ed1ab_0
   - pyct==0.4.6=py_0
   - pyct-core==0.4.6=py_0
   - pyflakes==3.0.1=pyhd8ed1ab_0
   - pygments==2.15.1=pyhd8ed1ab_0
   - pyjwt==2.8.0=pyhd8ed1ab_0
   - pykdtree==1.3.7.post0=py310h0a54255_0
   - pykrige==1.7.0=py310h278f3c1_1
   - pymeeus==0.5.12=pyhd8ed1ab_0
   - pyopenssl==23.1.1=pyhd8ed1ab_0
   - pyorbital==1.7.3=pyhd8ed1ab_0
   - pyparsing==3.0.9=pyhd8ed1ab_0
   - pyproj==3.4.1=py310h15e2413_1
   - pyqt==5.15.7=py310hab646b1_3
   - pyqt5-sip==12.11.0=py310heca2aa9_3
   - pyresample==1.26.1=py310h9b08913_0
   - pyrsistent==0.19.3=py310h1fa729e_0
   - pyshp==2.3.1=pyhd8ed1ab_0
   - pysocks==1.7.1=pyha2e5f31_6
   - pyspectral==0.12.3=pyhd8ed1ab_0
   - python==3.10.10=he550d4f_0_cpython
   - python-dateutil==2.8.2=pyhd8ed1ab_0
   - python-eccodes==1.4.2=py310hde88566_1
   - python-fastjsonschema==2.16.3=pyhd8ed1ab_0
   - python-flatbuffers==23.5.26=pyhd8ed1ab_0
   - python-geotiepoints==1.6.0=py310h0a54255_0
   - python-kaleido==0.2.1=pyhd8ed1ab_0
   - python-tzdata==2023.3=pyhd8ed1ab_0
   - python_abi==3.10=3_cp310
   - pytz==2023.3=pyhd8ed1ab_0
   - pyu2f==0.1.5=pyhd8ed1ab_0
   - pyviz_comms==2.3.2=pyhd8ed1ab_0
   - pyyaml==6.0=py310h5764c6d_5
   - pyzmq==25.0.2=py310h059b190_0
   - qt-main==5.15.8=h5d23da1_6
   - rasterio==1.3.6=py310h3e853a9_0
   - rclone==1.63.1=h519d9b9_0
   - re2==2023.02.01=hcb278e6_0
   - readline==8.2=h8228510_1
   - regionmask==0.9.0=pyhd8ed1ab_0
   - requests==2.28.2=pyhd8ed1ab_1
   - requests-oauthlib==1.3.1=pyhd8ed1ab_0
   - rioxarray==0.14.1=pyhd8ed1ab_0
   - rsa==4.9=pyhd8ed1ab_0
   - rtree==1.0.1=py310hbdcdc62_1
   - s2n==1.3.37=h3358134_0
   - satpy==0.41.1=pyhd8ed1ab_0
   - scikit-learn==1.2.2=py310h41b6a48_1
   - scipy==1.10.1=py310h8deb116_0
   - seaborn==0.12.2=hd8ed1ab_0
   - seaborn-base==0.12.2=pyhd8ed1ab_0
   - send2trash==1.8.0=pyhd8ed1ab_0
   - setuptools==67.6.1=pyhd8ed1ab_0
   - shapely==2.0.1=py310h8b84c32_0
   - simplejson==3.19.1=py310h1fa729e_0
   - sip==6.7.9=py310hc6cd4ac_0
   - six==1.16.0=pyh6c4a22f_0
   - snappy==1.1.10=h9fff704_0
   - snuggs==1.4.7=py_0
   - sortedcontainers==2.4.0=pyhd8ed1ab_0
   - soupsieve==2.3.2.post1=pyhd8ed1ab_0
   - sqlalchemy==2.0.9=py310h1fa729e_0
   - sqlite==3.40.0=h4ff8645_0
   - stack_data==0.6.2=pyhd8ed1ab_0
   - stanio==0.3.0=pyhd8ed1ab_0
   - statsmodels==0.13.5=py310hde88566_2
   - svt-av1==1.4.1=hcb278e6_0
   - sympy==1.11.1=pypyh9d50eac_103
   - sysroot_linux-64==2.12=he073ed8_16
   - tbb==2021.9.0=hf52228f_0
   - tbb-devel==2021.9.0=hf52228f_0
   - tblib==1.7.0=pyhd8ed1ab_0
   - tenacity==8.2.2=pyhd8ed1ab_0
   - tensorboard==2.11.2=pyhd8ed1ab_0
   - tensorboard-data-server==0.6.1=py310h600f1e7_4
   - tensorboard-plugin-wit==1.8.1=pyhd8ed1ab_0
   - tensorflow==2.11.0=cpu_py310hd1aba9c_0
   - tensorflow-base==2.11.0=cpu_py310hc9b7e7f_0
   - tensorflow-estimator==2.11.0=cpu_py310hfed9998_0
   - termcolor==2.3.0=pyhd8ed1ab_0
   - terminado==0.17.1=pyh41d4057_0
   - threadpoolctl==3.1.0=pyh8a188c0_0
   - tiledb==2.13.2=hd532e3d_0
   - tinycss2==1.2.1=pyhd8ed1ab_0
   - tk==8.6.12=h27826a3_0
   - toml==0.10.2=pyhd8ed1ab_0
   - tomli==2.0.1=pyhd8ed1ab_0
   - toolz==0.12.0=pyhd8ed1ab_0
   - tornado==6.1=py310h5764c6d_3
   - tqdm==4.65.0=pyhd8ed1ab_1
   - traitlets==5.9.0=pyhd8ed1ab_0
   - trollimage==1.20.1=pyhd8ed1ab_0
   - trollsift==0.5.0=pyhd8ed1ab_0
   - typing-extensions==4.5.0=hd8ed1ab_0
   - typing_extensions==4.5.0=pyha770c72_0
   - tzcode==2023c=h0b41bf4_0
   - tzdata==2023c=h71feb2d_0
   - uc-micro-py==1.0.1=pyhd8ed1ab_0
   - ucx==1.14.0=h8c404fb_1
   - udunits2==2.2.28=hc3e0081_0
   - unicodedata2==15.0.0=py310h5764c6d_0
   - urllib3==1.26.15=pyhd8ed1ab_0
   - wcwidth==0.2.6=pyhd8ed1ab_0
   - webencodings==0.5.1=py_1
   - werkzeug==2.2.3=pyhd8ed1ab_0
   - wheel==0.40.0=pyhd8ed1ab_0
   - widgetsnbextension==4.0.7=pyhd8ed1ab_0
   - wrapt==1.15.0=py310h1fa729e_0
   - x264==1!164.3095=h166bdaf_2
   - x265==3.5=h924138e_3
   - xarray==2023.4.1=pyhd8ed1ab_0
   - xcb-util==0.4.0=h166bdaf_0
   - xcb-util-image==0.4.0=h166bdaf_0
   - xcb-util-keysyms==0.4.0=h166bdaf_0
   - xcb-util-renderutil==0.3.9=h166bdaf_0
   - xcb-util-wm==0.4.1=h166bdaf_0
   - xerces-c==3.2.4=h55805fa_0
   - xgboost==1.7.4=cpu_py310hd1aba9c_0
   - xkeyboard-config==2.38=h0b41bf4_0
   - xlsxwriter==3.1.2=pyhd8ed1ab_0
   - xorg-fixesproto==5.0=h7f98852_1002
   - xorg-inputproto==2.3.2=h7f98852_1002
   - xorg-kbproto==1.0.7=h7f98852_1002
   - xorg-libice==1.0.10=h7f98852_0
   - xorg-libsm==1.2.3=hd9c2040_1000
   - xorg-libx11==1.8.4=h0b41bf4_0
   - xorg-libxau==1.0.9=h7f98852_0
   - xorg-libxaw==1.0.14=h7f98852_1
   - xorg-libxdmcp==1.1.3=h7f98852_0
   - xorg-libxext==1.3.4=h0b41bf4_2
   - xorg-libxfixes==5.0.3=h7f98852_1004
   - xorg-libxi==1.7.10=h7f98852_0
   - xorg-libxmu==1.1.3=h7f98852_0
   - xorg-libxpm==3.5.13=h7f98852_0
   - xorg-libxrender==0.9.10=h7f98852_1003
   - xorg-libxt==1.2.1=h7f98852_2
   - xorg-renderproto==0.11.1=h7f98852_1002
   - xorg-xextproto==7.3.0=h0b41bf4_1003
   - xorg-xproto==7.0.31=h7f98852_1007
   - xyzservices==2023.2.0=pyhd8ed1ab_0
   - xz==5.2.6=h166bdaf_0
   - yaml==0.2.5=h7f98852_2
   - yarl==1.9.2=py310h2372a71_0
   - zarr==2.14.2=pyhd8ed1ab_0
   - zeromq==4.3.4=h9c3ff4c_1
   - zict==3.0.0=pyhd8ed1ab_0
   - zipp==3.15.0=pyhd8ed1ab_0
   - zlib==1.2.13=h166bdaf_4
   - zstandard==0.19.0=py310h5764c6d_0
   - zstd==1.5.2=h3eb15da_6

  Package                               Version  Build                    Channel                   Size
──────────────────────────────────────────────────────────────────────────────────────────────────────────
  Install:
──────────────────────────────────────────────────────────────────────────────────────────────────────────

  + _libgcc_mutex                           0.1  conda_forge              conda-forge/linux-64       3kB
  + _openmp_mutex                           4.5  2_gnu                    conda-forge/linux-64      24kB
  + _py-xgboost-mutex                       2.0  cpu_0                    conda-forge/linux-64       8kB
  + absl-py                               1.4.0  pyhd8ed1ab_0             conda-forge/noarch       102kB
  + affine                                2.4.0  pyhd8ed1ab_0             conda-forge/noarch        19kB
  + aiohttp                               3.8.5  py310h2372a71_0          conda-forge/linux-64     454kB
  + aiosignal                             1.3.1  pyhd8ed1ab_0             conda-forge/noarch        13kB
  + alsa-lib                              1.2.8  h166bdaf_0               conda-forge/linux-64     592kB
  + aom                                   3.5.0  h27087fc_0               conda-forge/linux-64       3MB
  + appdirs                               1.4.4  pyh9f0ad1d_0             conda-forge/noarch        13kB
  + argon2-cffi                          21.3.0  pyhd8ed1ab_0             conda-forge/noarch        16kB
  + argon2-cffi-bindings                 21.2.0  py310h5764c6d_3          conda-forge/linux-64      35kB
  + arrow-cpp                            11.0.0  ha770c72_5_cpu           conda-forge/linux-64      31kB
  + asciitree                             0.3.3  py_2                     conda-forge/noarch         6kB
  + asttokens                             2.2.1  pyhd8ed1ab_0             conda-forge/noarch        28kB
  + astunparse                            1.6.3  pyhd8ed1ab_0             conda-forge/noarch        16kB
  + async-timeout                         4.0.2  pyhd8ed1ab_0             conda-forge/noarch         9kB
  + attr                                  2.5.1  h166bdaf_1               conda-forge/linux-64      71kB
  + attrs                                22.2.0  pyh71513ae_0             conda-forge/noarch        54kB
  + autopep8                              2.0.2  pyhd8ed1ab_0             conda-forge/noarch        45kB
  + aws-c-auth                           0.6.24  h84a1944_5               conda-forge/linux-64      95kB
  + aws-c-cal                            0.5.20  hc60faf5_6               conda-forge/linux-64      43kB
  + aws-c-common                         0.8.11  h0b41bf4_0               conda-forge/linux-64     199kB
  + aws-c-compression                    0.2.16  h034cb4b_3               conda-forge/linux-64      19kB
  + aws-c-event-stream                   0.2.18  h75388cd_6               conda-forge/linux-64      53kB
  + aws-c-http                            0.7.4  hf084cc8_2               conda-forge/linux-64     192kB
  + aws-c-io                            0.13.17  h10df833_2               conda-forge/linux-64     143kB
  + aws-c-mqtt                            0.8.6  hc41645a_6               conda-forge/linux-64     144kB
  + aws-c-s3                              0.2.4  h1b8f470_3               conda-forge/linux-64      75kB
  + aws-c-sdkutils                        0.1.7  h034cb4b_3               conda-forge/linux-64      52kB
  + aws-checksums                        0.1.14  h034cb4b_3               conda-forge/linux-64      50kB
  + aws-crt-cpp                          0.19.7  h0073717_7               conda-forge/linux-64     318kB
  + aws-sdk-cpp                         1.10.57  h4707e7a_4               conda-forge/linux-64       4MB
  + backcall                              0.2.0  pyh9f0ad1d_0             conda-forge/noarch        14kB
  + backports                               1.0  pyhd8ed1ab_3             conda-forge/noarch         6kB
  + backports.functools_lru_cache         1.6.4  pyhd8ed1ab_0             conda-forge/noarch         9kB
  + basemap                               1.3.6  py310h6b4e152_2          conda-forge/linux-64     153kB
  + basemap-data                          1.3.2  pyhd8ed1ab_3             conda-forge/noarch        25MB
  + basemap-data-hires                    1.3.2  pyhd8ed1ab_3             conda-forge/noarch        85MB
  + beautifulsoup4                       4.12.2  pyha770c72_0             conda-forge/noarch       115kB
  + binutils_impl_linux-64                 2.40  hf600244_0               conda-forge/linux-64       5MB
  + binutils_linux-64                      2.40  hbdbef99_2               conda-forge/linux-64      28kB
  + bleach                                6.0.0  pyhd8ed1ab_0             conda-forge/noarch       131kB
  + blinker                               1.6.2  pyhd8ed1ab_0             conda-forge/noarch        18kB
  + blosc                                1.21.3  hafa529b_0               conda-forge/linux-64      40kB
  + bokeh                                 3.2.1  pyhd8ed1ab_0             conda-forge/noarch         6MB
  + boost-cpp                            1.78.0  h5adbc97_2               conda-forge/linux-64      16MB
  + branca                                0.6.0  pyhd8ed1ab_0             conda-forge/noarch        28kB
  + brotli                                1.0.9  h166bdaf_8               conda-forge/linux-64      19kB
  + brotli-bin                            1.0.9  h166bdaf_8               conda-forge/linux-64      20kB
  + brotli-python                         1.0.9  py310hd8f1fbe_8          conda-forge/linux-64     361kB
  + brotlipy                              0.7.0  py310h5764c6d_1005       conda-forge/linux-64     351kB
  + bzip2                                 1.0.8  h7f98852_4               conda-forge/linux-64     496kB
  + c-ares                               1.18.1  h7f98852_0               conda-forge/linux-64     115kB
  + ca-certificates                  2023.11.17  hbcca054_0               conda-forge/linux-64     154kB
  + cached-property                       1.5.2  hd8ed1ab_1               conda-forge/noarch         4kB
  + cached_property                       1.5.2  pyha770c72_1             conda-forge/noarch        11kB
  + cachetools                            5.3.1  pyhd8ed1ab_0             conda-forge/noarch        15kB
  + cairo                                1.16.0  ha61ee94_1014            conda-forge/linux-64       2MB
  + cartopy                              0.21.1  py310hcb7e713_0          conda-forge/linux-64       2MB
  + cdo                                   2.1.1  hb8d3726_1               conda-forge/linux-64      31MB
  + certifi                          2023.11.17  pyhd8ed1ab_0             conda-forge/noarch       159kB
  + cffi                                 1.15.1  py310h255011f_3          conda-forge/linux-64     237kB
  + cfgrib                             0.9.10.4  pyhd8ed1ab_0             conda-forge/noarch        42kB
  + cfitsio                               4.2.0  hd9d235c_0               conda-forge/linux-64     848kB
  + cftime                                1.6.2  py310hde88566_1          conda-forge/linux-64     246kB
  + charset-normalizer                    3.1.0  pyhd8ed1ab_0             conda-forge/noarch        45kB
  + click                                 8.1.3  unix_pyhd8ed1ab_2        conda-forge/noarch        76kB
  + click-plugins                         1.1.1  py_0                     conda-forge/noarch         9kB
  + cligj                                 0.7.2  pyhd8ed1ab_1             conda-forge/noarch        10kB
  + cloudpickle                           2.2.1  pyhd8ed1ab_0             conda-forge/noarch        28kB
  + cmdstan                              2.32.1  hff4ab46_0               conda-forge/linux-64      48MB
  + cmdstanpy                             1.2.0  pyhd8ed1ab_0             conda-forge/noarch        70kB
  + colorama                              0.4.6  pyhd8ed1ab_0             conda-forge/noarch        25kB
  + colorcet                              3.0.1  pyhd8ed1ab_0             conda-forge/noarch         2MB
  + comm                                  0.1.3  pyhd8ed1ab_0             conda-forge/noarch        11kB
  + configobj                             5.0.8  pyhd8ed1ab_0             conda-forge/noarch        37kB
  + contourpy                             1.0.7  py310hdf3cbec_0          conda-forge/linux-64     216kB
  + convertdate                           2.4.0  pyhd8ed1ab_0             conda-forge/noarch        39kB
  + cramjam                               2.6.2  py310h3392aa1_0          conda-forge/linux-64       2MB
  + cryptography                         40.0.2  py310h34c0648_0          conda-forge/linux-64       2MB
  + curl                                  8.0.1  h588be90_0               conda-forge/linux-64      90kB
  + cycler                               0.11.0  pyhd8ed1ab_0             conda-forge/noarch        10kB
  + cython                              0.29.34  py310heca2aa9_0          conda-forge/linux-64       2MB
  + cytoolz                              0.12.0  py310h5764c6d_1          conda-forge/linux-64     398kB
  + dash                                  2.9.3  pyhd8ed1ab_0             conda-forge/noarch         7MB
  + dash-auth                             2.0.0  pyhd8ed1ab_0             conda-forge/noarch        10kB
  + dash-bootstrap-components             1.4.1  pyhd8ed1ab_0             conda-forge/noarch       119kB
  + dash-core-components                  2.0.0  pyhd8ed1ab_1             conda-forge/noarch         8kB
  + dash-html-components                  2.0.0  pyhd8ed1ab_1             conda-forge/noarch         8kB
  + dash-table                            5.0.0  pyhd8ed1ab_1             conda-forge/noarch         8kB
  + dask                               2023.4.0  pyhd8ed1ab_0             conda-forge/noarch         7kB
  + dask-core                          2023.4.0  pyhd8ed1ab_0             conda-forge/noarch       841kB
  + dataclasses                             0.8  pyhc8e2a94_3             conda-forge/noarch        10kB
  + dbus                                 1.13.6  h5008d03_3               conda-forge/linux-64     619kB
  + debugpy                               1.6.7  py310heca2aa9_0          conda-forge/linux-64       2MB
  + decorator                             5.1.1  pyhd8ed1ab_0             conda-forge/noarch        12kB
  + defusedxml                            0.7.1  pyhd8ed1ab_0             conda-forge/noarch        24kB
  + distributed                        2023.4.0  pyhd8ed1ab_0             conda-forge/noarch       763kB
  + docutils                               0.19  py310hff52083_1          conda-forge/linux-64     780kB
  + donfig                                0.7.0  pyhd8ed1ab_1             conda-forge/noarch        18kB
  + eccodes                              2.29.0  h54fcba4_0               conda-forge/linux-64       4MB
  + entrypoints                             0.4  pyhd8ed1ab_0             conda-forge/noarch         9kB
  + ephem                                 4.1.5  py310h2372a71_1          conda-forge/linux-64       1MB
  + executing                             1.2.0  pyhd8ed1ab_0             conda-forge/noarch        25kB
  + expat                                 2.5.0  hcb278e6_1               conda-forge/linux-64     137kB
  + fasteners                            0.17.3  pyhd8ed1ab_0             conda-forge/noarch        20kB
  + fastparquet                        2023.2.0  py310h0a54255_0          conda-forge/linux-64     442kB
  + ffmpeg                                5.1.2  gpl_h8dda1f0_106         conda-forge/linux-64      10MB
  + fftw                                 3.3.10  nompi_hc118613_107       conda-forge/linux-64       2MB
  + findlibs                              0.0.2  pyhd8ed1ab_0             conda-forge/noarch        11kB
  + fiona                                 1.9.1  py310ha325b7b_0          conda-forge/linux-64     856kB
  + flake8                                6.0.0  pyhd8ed1ab_0             conda-forge/noarch       109kB
  + flask                                 2.2.3  pyhd8ed1ab_0             conda-forge/noarch        83kB
  + flask-compress                         1.13  pyhd8ed1ab_0             conda-forge/noarch        15kB
  + flatbuffers                        22.12.06  hcb278e6_2               conda-forge/linux-64       1MB
  + flit-core                             3.8.0  pyhd8ed1ab_0             conda-forge/noarch        46kB
  + folium                               0.14.0  pyhd8ed1ab_0             conda-forge/noarch        73kB
  + font-ttf-dejavu-sans-mono              2.37  hab24e00_0               conda-forge/noarch       397kB
  + font-ttf-inconsolata                  3.000  h77eed37_0               conda-forge/noarch        97kB
  + font-ttf-source-code-pro              2.038  h77eed37_0               conda-forge/noarch       701kB
  + font-ttf-ubuntu                        0.83  hab24e00_0               conda-forge/noarch         2MB
  + fontconfig                           2.14.2  h14ed4e7_0               conda-forge/linux-64     272kB
  + fonts-conda-ecosystem                     1  0                        conda-forge/noarch         4kB
  + fonts-conda-forge                         1  0                        conda-forge/noarch         4kB
  + fonttools                            4.39.3  py310h1fa729e_0          conda-forge/linux-64       2MB
  + freeglut                              3.2.2  h9c3ff4c_1               conda-forge/linux-64     166kB
  + freetype                             2.12.1  hca18f0e_1               conda-forge/linux-64     626kB
  + freexl                                1.0.6  h166bdaf_1               conda-forge/linux-64      50kB
  + fribidi                              1.0.10  h36c2ea0_0               conda-forge/linux-64     114kB
  + frozenlist                            1.4.0  py310h2372a71_0          conda-forge/linux-64      54kB
  + fsspec                             2023.4.0  pyh1a96a4e_0             conda-forge/noarch       111kB
  + gast                                  0.4.0  pyh9f0ad1d_0             conda-forge/noarch        12kB
  + gcc_impl_linux-64                    12.3.0  he2b93b0_2               conda-forge/linux-64      52MB
  + gcc_linux-64                         12.3.0  h76fc315_2               conda-forge/linux-64      30kB
  + gdal                                  3.6.2  py310hc1b7723_9          conda-forge/linux-64       1MB
  + geopandas                            0.12.2  pyhd8ed1ab_0             conda-forge/noarch         7kB
  + geopandas-base                       0.12.2  pyha770c72_0             conda-forge/noarch       981kB
  + geos                                 3.11.1  h27087fc_0               conda-forge/linux-64       2MB
  + geotiff                               1.7.1  h7a142b4_6               conda-forge/linux-64     259kB
  + gettext                              0.21.1  h27087fc_0               conda-forge/linux-64       4MB
  + gflags                                2.2.2  he1b5a44_1004            conda-forge/linux-64     117kB
  + giflib                                5.2.1  h0b41bf4_3               conda-forge/linux-64      77kB
  + glib                                 2.76.2  hfc55251_0               conda-forge/linux-64     484kB
  + glib-tools                           2.76.2  hfc55251_0               conda-forge/linux-64     112kB
  + glog                                  0.6.0  h6f12383_0               conda-forge/linux-64     114kB
  + gmp                                   6.2.1  h58526e2_0               conda-forge/linux-64     826kB
  + gmpy2                                 2.1.2  py310h3ec546c_1          conda-forge/linux-64     220kB
  + gnutls                                3.7.8  hf3e180e_0               conda-forge/linux-64       2MB
  + google-auth                          2.22.0  pyh1a96a4e_0             conda-forge/noarch       102kB
  + google-auth-oauthlib                  0.4.6  pyhd8ed1ab_0             conda-forge/noarch        19kB
  + google-pasta                          0.2.0  pyh8c360ce_0             conda-forge/noarch        43kB
  + graphite2                            1.3.13  h58526e2_1001            conda-forge/linux-64     105kB
  + greenlet                              2.0.2  py310heca2aa9_0          conda-forge/linux-64     192kB
  + grpcio                               1.51.1  py310h4a5735c_1          conda-forge/linux-64     747kB
  + gst-plugins-base                     1.22.0  h4243ec0_2               conda-forge/linux-64       3MB
  + gstreamer                            1.22.0  h25f0c4b_2               conda-forge/linux-64       2MB
  + gstreamer-orc                        0.4.33  h166bdaf_0               conda-forge/linux-64     306kB
  + gxx_impl_linux-64                    12.3.0  he2b93b0_2               conda-forge/linux-64      13MB
  + gxx_linux-64                         12.3.0  h8a814eb_2               conda-forge/linux-64      29kB
  + h5py                                  3.8.0  nompi_py310h0311031_100  conda-forge/linux-64       1MB
  + harfbuzz                              6.0.0  h8e241bc_0               conda-forge/linux-64       1MB
  + hdf4                                 4.2.15  h9772cbc_5               conda-forge/linux-64     974kB
  + hdf5                                 1.12.2  nompi_h4df4325_101       conda-forge/linux-64       3MB
  + holidays                               0.34  pyhd8ed1ab_0             conda-forge/noarch       294kB
  + holoviews                            1.18.0  pyhd8ed1ab_0             conda-forge/noarch         3MB
  + hvplot                                0.9.0  pyhd8ed1ab_0             conda-forge/noarch         3MB
  + icu                                    70.1  h27087fc_0               conda-forge/linux-64      14MB
  + idna                                    3.4  pyhd8ed1ab_0             conda-forge/noarch        57kB
  + importlib-metadata                    6.5.0  pyha770c72_0             conda-forge/noarch        26kB
  + importlib_metadata                    6.5.0  hd8ed1ab_0               conda-forge/noarch         9kB
  + importlib_resources                  5.12.0  pyhd8ed1ab_0             conda-forge/noarch        31kB
  + ipykernel                            6.22.0  pyh210e3f2_0             conda-forge/noarch       112kB
  + ipython                              8.12.0  pyh41d4057_0             conda-forge/noarch       581kB
  + ipython_genutils                      0.2.0  py_1                     conda-forge/noarch        22kB
  + ipywidgets                            8.0.6  pyhd8ed1ab_0             conda-forge/noarch       112kB
  + itsdangerous                          2.1.2  pyhd8ed1ab_0             conda-forge/noarch        16kB
  + jack                                 1.9.22  h11f4161_0               conda-forge/linux-64     464kB
  + jasper                               2.0.33  h0ff4b12_1               conda-forge/linux-64     726kB
  + jedi                                 0.18.2  pyhd8ed1ab_0             conda-forge/noarch       804kB
  + jinja2                                3.1.2  pyhd8ed1ab_1             conda-forge/noarch       101kB
  + joblib                                1.2.0  pyhd8ed1ab_0             conda-forge/noarch       210kB
  + joypy                                 0.2.4  pyhd3deb0d_0             conda-forge/noarch        12kB
  + jpeg                                     9e  h0b41bf4_3               conda-forge/linux-64     240kB
  + json-c                                 0.16  hc379101_0               conda-forge/linux-64     281kB
  + jsonschema                           4.17.3  pyhd8ed1ab_0             conda-forge/noarch        70kB
  + jupyter_bokeh                         3.0.7  pyhd8ed1ab_0             conda-forge/noarch       542kB
  + jupyter_client                        7.3.4  pyhd8ed1ab_0             conda-forge/noarch        93kB
  + jupyter_core                          5.3.0  py310hff52083_0          conda-forge/linux-64      91kB
  + jupyterlab_pygments                   0.2.2  pyhd8ed1ab_0             conda-forge/noarch        17kB
  + jupyterlab_widgets                    3.0.7  pyhd8ed1ab_0             conda-forge/noarch       173kB
  + kaleido-core                          0.2.1  h3644ca4_0               conda-forge/linux-64      62MB
  + kealib                                1.5.0  ha7026e8_0               conda-forge/linux-64     164kB
  + keras                                2.11.0  pyhd8ed1ab_0             conda-forge/noarch       862kB
  + keras-preprocessing                   1.1.2  pyhd8ed1ab_0             conda-forge/noarch        35kB
  + kernel-headers_linux-64              2.6.32  he073ed8_16              conda-forge/noarch       709kB
  + keyutils                              1.6.1  h166bdaf_0               conda-forge/linux-64     118kB
  + kiwisolver                            1.4.4  py310hbf28c38_1          conda-forge/linux-64      77kB
  + krb5                                 1.20.1  h81ceb04_0               conda-forge/linux-64       1MB
  + lame                                  3.100  h166bdaf_1003            conda-forge/linux-64     508kB
  + lcms2                                  2.15  hfd0df8a_0               conda-forge/linux-64     241kB
  + ld_impl_linux-64                       2.40  h41732ed_0               conda-forge/linux-64     705kB
  + lerc                                  4.0.0  h27087fc_0               conda-forge/linux-64     282kB
  + libabseil                        20220623.0  cxx17_h05df665_6         conda-forge/linux-64       1MB
  + libaec                                1.0.6  hcb278e6_1               conda-forge/linux-64      34kB
  + libarrow                             11.0.0  h2ebd325_5_cpu           conda-forge/linux-64      27MB
  + libblas                               3.9.0  16_linux64_openblas      conda-forge/linux-64      13kB
  + libbrotlicommon                       1.0.9  h166bdaf_8               conda-forge/linux-64      67kB
  + libbrotlidec                          1.0.9  h166bdaf_8               conda-forge/linux-64      34kB
  + libbrotlienc                          1.0.9  h166bdaf_8               conda-forge/linux-64     295kB
  + libcap                                 2.67  he9d0100_0               conda-forge/linux-64      99kB
  + libcblas                              3.9.0  16_linux64_openblas      conda-forge/linux-64      13kB
  + libclang                             15.0.7  default_had23c3d_1       conda-forge/linux-64     133kB
  + libclang13                           15.0.7  default_h3e3d535_1       conda-forge/linux-64      10MB
  + libcrc32c                             1.1.2  h9c3ff4c_0               conda-forge/linux-64      20kB
  + libcups                               2.3.3  h36d4200_3               conda-forge/linux-64       5MB
  + libcurl                               8.0.1  h588be90_0               conda-forge/linux-64     361kB
  + libdap4                              3.20.6  hd7c4107_2               conda-forge/linux-64      12MB
  + libdb                                6.2.32  h9c3ff4c_0               conda-forge/linux-64      24MB
  + libdeflate                             1.17  h0b41bf4_0               conda-forge/linux-64      65kB
  + libdrm                              2.4.114  h166bdaf_0               conda-forge/linux-64     305kB
  + libedit                        3.1.20191231  he28a2e2_2               conda-forge/linux-64     124kB
  + libev                                  4.33  h516909a_1               conda-forge/linux-64     106kB
  + libevent                             2.1.10  h28343ad_4               conda-forge/linux-64       1MB
  + libexpat                              2.5.0  hcb278e6_1               conda-forge/linux-64      78kB
  + libffi                                3.4.2  h7f98852_5               conda-forge/linux-64      58kB
  + libflac                               1.4.2  h27087fc_0               conda-forge/linux-64     421kB
  + libgcc-devel_linux-64                12.3.0  h8bca6fd_2               conda-forge/linux-64       2MB
  + libgcc-ng                            13.2.0  h807b86a_2               conda-forge/linux-64     771kB
  + libgcrypt                            1.10.1  h166bdaf_0               conda-forge/linux-64     720kB
  + libgdal                               3.6.2  h6c674c2_9               conda-forge/linux-64      10MB
  + libgfortran-ng                       12.2.0  h69a702a_19              conda-forge/linux-64      23kB
  + libgfortran5                         12.2.0  h337968e_19              conda-forge/linux-64       2MB
  + libglib                              2.76.2  hebfc3b9_0               conda-forge/linux-64       3MB
  + libglu                                9.0.0  he1b5a44_1001            conda-forge/linux-64     423kB
  + libgomp                              13.2.0  h807b86a_2               conda-forge/linux-64     421kB
  + libgoogle-cloud                       2.7.0  h21dfe5b_1               conda-forge/linux-64      37MB
  + libgpg-error                           1.46  h620e276_0               conda-forge/linux-64     258kB
  + libgrpc                              1.51.1  h4fad500_1               conda-forge/linux-64       5MB
  + libhwloc                              2.9.1  hd6dc26d_0               conda-forge/linux-64       3MB
  + libiconv                               1.17  h166bdaf_0               conda-forge/linux-64       1MB
  + libidn2                               2.3.4  h166bdaf_0               conda-forge/linux-64     160kB
  + libkml                                1.3.0  h37653c0_1015            conda-forge/linux-64     625kB
  + liblapack                             3.9.0  16_linux64_openblas      conda-forge/linux-64      13kB
  + libllvm14                            14.0.6  he0ac6c6_1               conda-forge/linux-64      37MB
  + libllvm15                            15.0.7  hadd5161_1               conda-forge/linux-64      33MB
  + libnetcdf                             4.9.1  nompi_h34a3ff0_101       conda-forge/linux-64     812kB
  + libnghttp2                           1.52.0  h61bc06f_0               conda-forge/linux-64     622kB
  + libnsl                                2.0.0  h7f98852_0               conda-forge/linux-64      31kB
  + libnuma                              2.0.16  h0b41bf4_1               conda-forge/linux-64      41kB
  + libogg                                1.3.4  h7f98852_1               conda-forge/linux-64     211kB
  + libopenblas                          0.3.21  pthreads_h78a6416_3      conda-forge/linux-64      11MB
  + libopus                               1.3.1  h7f98852_1               conda-forge/linux-64     261kB
  + libpciaccess                           0.17  h166bdaf_0               conda-forge/linux-64      40kB
  + libpng                               1.6.39  h753d276_0               conda-forge/linux-64     283kB
  + libpq                                  15.2  hb675445_0               conda-forge/linux-64       2MB
  + libprotobuf                         3.21.12  h3eb15da_0               conda-forge/linux-64       2MB
  + librttopo                             1.1.0  ha49c73b_12              conda-forge/linux-64     242kB
  + libsanitizer                         12.3.0  h0f45ef3_2               conda-forge/linux-64       4MB
  + libsndfile                            1.2.0  hb75c966_0               conda-forge/linux-64     350kB
  + libsodium                            1.0.18  h36c2ea0_1               conda-forge/linux-64     375kB
  + libspatialindex                       1.9.3  h9c3ff4c_4               conda-forge/linux-64       5MB
  + libspatialite                         5.0.1  h221c8f1_23              conda-forge/linux-64       4MB
  + libsqlite                            3.40.0  h753d276_0               conda-forge/linux-64     810kB
  + libssh2                              1.10.0  hf14f497_3               conda-forge/linux-64     239kB
  + libstdcxx-devel_linux-64             12.3.0  h8bca6fd_2               conda-forge/linux-64       9MB
  + libstdcxx-ng                         13.2.0  h7e041cc_2               conda-forge/linux-64       4MB
  + libsystemd0                             253  h8c4010b_1               conda-forge/linux-64     381kB
  + libtasn1                             4.19.0  h166bdaf_0               conda-forge/linux-64     117kB
  + libthrift                            0.18.0  h5e4af38_0               conda-forge/linux-64       4MB
  + libtiff                               4.5.0  h6adf6a1_2               conda-forge/linux-64     407kB
  + libtool                               2.4.7  h27087fc_0               conda-forge/linux-64     412kB
  + libudev1                                253  h0b41bf4_0               conda-forge/linux-64     119kB
  + libunistring                         0.9.10  h7f98852_0               conda-forge/linux-64       1MB
  + libutf8proc                           2.8.0  h166bdaf_0               conda-forge/linux-64     101kB
  + libuuid                              2.38.1  h0b41bf4_0               conda-forge/linux-64      34kB
  + libva                                2.18.0  h0b41bf4_0               conda-forge/linux-64     187kB
  + libvorbis                             1.3.7  h9c3ff4c_0               conda-forge/linux-64     286kB
  + libvpx                               1.11.0  h9c3ff4c_3               conda-forge/linux-64       1MB
  + libwebp-base                          1.3.0  h0b41bf4_0               conda-forge/linux-64     357kB
  + libxcb                                 1.13  h7f98852_1004            conda-forge/linux-64     400kB
  + libxgboost                            1.7.4  cpu_h6e95104_0           conda-forge/linux-64       3MB
  + libxkbcommon                          1.5.0  h79f4944_1               conda-forge/linux-64     563kB
  + libxml2                              2.10.3  hca2bb57_4               conda-forge/linux-64     714kB
  + libxslt                              1.1.37  h873f0b0_0               conda-forge/linux-64     258kB
  + libzip                                1.9.2  hc929e4a_1               conda-forge/linux-64      99kB
  + libzlib                              1.2.13  h166bdaf_4               conda-forge/linux-64      66kB
  + linkify-it-py                         2.0.0  pyhd8ed1ab_0             conda-forge/noarch        22kB
  + locket                                1.0.0  pyhd8ed1ab_0             conda-forge/noarch         8kB
  + lunarcalendar                         0.0.9  py_0                     conda-forge/noarch        20kB
  + lxml                                  4.9.1  py310h5764c6d_0          conda-forge/linux-64       1MB
  + lz4                                   4.3.2  py310h0cfdcf0_0          conda-forge/linux-64      37kB
  + lz4-c                                 1.9.4  hcb278e6_0               conda-forge/linux-64     143kB
  + magics                               4.13.0  h37abd2f_2               conda-forge/linux-64      24MB
  + magics-python                         1.5.8  pyhd8ed1ab_1             conda-forge/noarch        27kB
  + make                                    4.3  hd18ef5c_1               conda-forge/linux-64     519kB
  + mapclassify                           2.5.0  pyhd8ed1ab_1             conda-forge/noarch        39kB
  + markdown                              3.4.3  pyhd8ed1ab_0             conda-forge/noarch        71kB
  + markdown-it-py                        3.0.0  pyhd8ed1ab_0             conda-forge/noarch        64kB
  + markupsafe                            2.1.2  py310h1fa729e_0          conda-forge/linux-64      23kB
  + mathjax                               2.7.7  ha770c72_3               conda-forge/linux-64      22MB
  + matplotlib                            3.5.3  py310hff52083_2          conda-forge/linux-64       7kB
  + matplotlib-base                       3.5.3  py310h8d5ebf3_2          conda-forge/linux-64       8MB
  + matplotlib-inline                     0.1.6  pyhd8ed1ab_0             conda-forge/noarch        12kB
  + mccabe                                0.7.0  pyhd8ed1ab_0             conda-forge/noarch        11kB
  + mdit-py-plugins                       0.4.0  pyhd8ed1ab_0             conda-forge/noarch        41kB
  + mdurl                                 0.1.0  pyhd8ed1ab_0             conda-forge/noarch        14kB
  + metpy                                 1.4.1  pyhd8ed1ab_0             conda-forge/noarch       323kB
  + mistune                               2.0.5  pyhd8ed1ab_0             conda-forge/noarch        74kB
  + mpc                                   1.3.1  hfe3b2da_0               conda-forge/linux-64     116kB
  + mpfr                                  4.2.0  hb012696_0               conda-forge/linux-64     631kB
  + mpg123                               1.31.3  hcb278e6_0               conda-forge/linux-64     485kB
  + mpmath                                1.3.0  pyhd8ed1ab_0             conda-forge/noarch       438kB
  + msgpack-python                        1.0.5  py310hdf3cbec_0          conda-forge/linux-64      85kB
  + multidict                             6.0.4  py310h1fa729e_0          conda-forge/linux-64      53kB
  + munch                                 2.5.0  py_0                     conda-forge/noarch        13kB
  + munkres                               1.1.4  pyh9f0ad1d_0             conda-forge/noarch        12kB
  + mysql-common                         8.0.32  ha901b37_1               conda-forge/linux-64     760kB
  + mysql-libs                           8.0.32  hd7da12d_1               conda-forge/linux-64       2MB
  + nbclient                              0.7.3  pyhd8ed1ab_0             conda-forge/noarch        64kB
  + nbconvert                             7.3.1  pyhd8ed1ab_0             conda-forge/noarch         8kB
  + nbconvert-core                        7.3.1  pyhd8ed1ab_0             conda-forge/noarch       208kB
  + nbconvert-pandoc                      7.3.1  pyhd8ed1ab_0             conda-forge/noarch         7kB
  + nbformat                              5.8.0  pyhd8ed1ab_0             conda-forge/noarch       101kB
  + ncurses                                 6.3  h27087fc_1               conda-forge/linux-64       1MB
  + ncview                                2.1.8  habe87be_5               conda-forge/linux-64     551kB
  + nest-asyncio                          1.5.6  pyhd8ed1ab_0             conda-forge/noarch        10kB
  + netcdf4                               1.6.3  nompi_py310h0feb132_100  conda-forge/linux-64     490kB
  + nettle                                3.8.1  hc379101_1               conda-forge/linux-64       1MB
  + networkx                                3.1  pyhd8ed1ab_0             conda-forge/noarch         1MB
  + notebook                             6.4.12  pyha770c72_0             conda-forge/noarch         7MB
  + nspr                                   4.35  h27087fc_0               conda-forge/linux-64     227kB
  + nss                                    3.89  he45b914_0               conda-forge/linux-64       2MB
  + numcodecs                            0.11.0  py310heca2aa9_1          conda-forge/linux-64     671kB
  + numpy                                1.24.2  py310h8deb116_0          conda-forge/linux-64       7MB
  + oauthlib                              3.2.2  pyhd8ed1ab_0             conda-forge/noarch        92kB
  + openh264                              2.3.1  hcb278e6_2               conda-forge/linux-64     719kB
  + openjpeg                              2.5.0  hfec8fc6_2               conda-forge/linux-64     352kB
  + openssl                               3.1.4  hd590300_0               conda-forge/linux-64       3MB
  + opt_einsum                            3.3.0  pyhd8ed1ab_1             conda-forge/noarch        54kB
  + orc                                   1.8.2  hfdbbad2_2               conda-forge/linux-64     907kB
  + ossuuid                               1.6.2  hf484d3e_1000            conda-forge/linux-64      57kB
  + owslib                               0.29.1  pyhd8ed1ab_0             conda-forge/noarch       138kB
  + p11-kit                              0.24.1  hc5aa10d_0               conda-forge/linux-64       5MB
  + packaging                              23.1  pyhd8ed1ab_0             conda-forge/noarch        46kB
  + pandas                                2.0.0  py310h9b08913_0          conda-forge/linux-64      12MB
  + pandoc                               2.19.2  h32600fe_2               conda-forge/linux-64      27MB
  + pandocfilters                         1.5.0  pyhd8ed1ab_0             conda-forge/noarch        12kB
  + panel                                 1.3.1  pyhd8ed1ab_0             conda-forge/noarch        14MB
  + pango                               1.50.14  hd33c08f_0               conda-forge/linux-64     438kB
  + parallel                           20230322  ha770c72_0               conda-forge/linux-64       2MB
  + param                                 2.0.0  pyhca7485f_0             conda-forge/noarch       103kB
  + parquet-cpp                           1.5.1  2                        conda-forge/noarch         3kB
  + parso                                 0.8.3  pyhd8ed1ab_0             conda-forge/noarch        71kB
  + partd                                 1.4.0  pyhd8ed1ab_0             conda-forge/noarch        20kB
  + patsy                                 0.5.3  pyhd8ed1ab_0             conda-forge/noarch       194kB
  + pcre                                   8.45  h9c3ff4c_0               conda-forge/linux-64     259kB
  + pcre2                                 10.40  hc3806b6_0               conda-forge/linux-64       2MB
  + perl                                 5.32.1  2_h7f98852_perl5         conda-forge/linux-64      15MB
  + pexpect                               4.8.0  pyh1a96a4e_2             conda-forge/noarch        49kB
  + pickleshare                           0.7.5  py_1003                  conda-forge/noarch         9kB
  + pillow                                9.4.0  py310h023d228_1          conda-forge/linux-64      46MB
  + pint                                 0.20.1  pyhd8ed1ab_0             conda-forge/noarch       212kB
  + pip                                    23.1  pyhd8ed1ab_0             conda-forge/noarch         1MB
  + pixman                               0.40.0  h36c2ea0_0               conda-forge/linux-64     643kB
  + pkgutil-resolve-name                 1.3.10  pyhd8ed1ab_0             conda-forge/noarch         9kB
  + platformdirs                          3.2.0  pyhd8ed1ab_0             conda-forge/noarch        18kB
  + plotly                               5.14.1  pyhd8ed1ab_0             conda-forge/noarch         5MB
  + ply                                    3.11  py_1                     conda-forge/noarch        45kB
  + pooch                                 1.7.0  pyha770c72_3             conda-forge/noarch        51kB
  + poppler                             23.03.0  h091648b_0               conda-forge/linux-64      16MB
  + poppler-data                         0.4.12  hd8ed1ab_0               conda-forge/noarch         2MB
  + portaudio                            19.6.0  h583fa2b_7               conda-forge/linux-64     135kB
  + postgresql                             15.2  h3248436_0               conda-forge/linux-64       5MB
  + proj                                  9.1.1  h8ffa02c_2               conda-forge/linux-64       3MB
  + prometheus_client                    0.16.0  pyhd8ed1ab_0             conda-forge/noarch        52kB
  + prompt-toolkit                       3.0.38  pyha770c72_0             conda-forge/noarch       269kB
  + prompt_toolkit                       3.0.38  hd8ed1ab_0               conda-forge/noarch         6kB
  + prophet                               1.1.4  py310h56eac3b_0          conda-forge/linux-64     761kB
  + protobuf                            4.21.12  py310heca2aa9_0          conda-forge/linux-64     324kB
  + psutil                                5.9.5  py310h1fa729e_0          conda-forge/linux-64     362kB
  + psycopg2                              2.9.3  py310h416cc33_2          conda-forge/linux-64     175kB
  + pthread-stubs                           0.4  h36c2ea0_1001            conda-forge/linux-64       6kB
  + ptyprocess                            0.7.0  pyhd3deb0d_0             conda-forge/noarch        17kB
  + pulseaudio                             16.1  hcb278e6_3               conda-forge/linux-64      17kB
  + pulseaudio-client                      16.1  h5195f5e_3               conda-forge/linux-64     752kB
  + pulseaudio-daemon                      16.1  ha8d29e2_3               conda-forge/linux-64     849kB
  + pure_eval                             0.2.2  pyhd8ed1ab_0             conda-forge/noarch        15kB
  + py-xgboost                            1.7.4  cpu_py310hd1aba9c_0      conda-forge/linux-64     213kB
  + pyarrow                              11.0.0  py310h633f555_5_cpu      conda-forge/linux-64       4MB
  + pyasn1                                0.4.8  py_0                     conda-forge/noarch        54kB
  + pyasn1-modules                        0.2.7  py_0                     conda-forge/noarch        61kB
  + pycodestyle                          2.10.0  pyhd8ed1ab_0             conda-forge/noarch        43kB
  + pycparser                              2.21  pyhd8ed1ab_0             conda-forge/noarch       103kB
  + pyct                                  0.4.6  py_0                     conda-forge/noarch         3kB
  + pyct-core                             0.4.6  py_0                     conda-forge/noarch        14kB
  + pyflakes                              3.0.1  pyhd8ed1ab_0             conda-forge/noarch        57kB
  + pygments                             2.15.1  pyhd8ed1ab_0             conda-forge/noarch       841kB
  + pyjwt                                 2.8.0  pyhd8ed1ab_0             conda-forge/noarch        25kB
  + pykdtree                        1.3.7.post0  py310h0a54255_0          conda-forge/linux-64      68kB
  + pykrige                               1.7.0  py310h278f3c1_1          conda-forge/linux-64     598kB
  + pymeeus                              0.5.12  pyhd8ed1ab_0             conda-forge/noarch       519kB
  + pyopenssl                            23.1.1  pyhd8ed1ab_0             conda-forge/noarch       128kB
  + pyorbital                             1.7.3  pyhd8ed1ab_0             conda-forge/noarch        58kB
  + pyparsing                             3.0.9  pyhd8ed1ab_0             conda-forge/noarch        81kB
  + pyproj                                3.4.1  py310h15e2413_1          conda-forge/linux-64     447kB
  + pyqt                                 5.15.7  py310hab646b1_3          conda-forge/linux-64       5MB
  + pyqt5-sip                           12.11.0  py310heca2aa9_3          conda-forge/linux-64      85kB
  + pyresample                           1.26.1  py310h9b08913_0          conda-forge/linux-64       3MB
  + pyrsistent                           0.19.3  py310h1fa729e_0          conda-forge/linux-64     100kB
  + pyshp                                 2.3.1  pyhd8ed1ab_0             conda-forge/noarch       964kB
  + pysocks                               1.7.1  pyha2e5f31_6             conda-forge/noarch        19kB
  + pyspectral                           0.12.3  pyhd8ed1ab_0             conda-forge/noarch         2MB
  + python                              3.10.10  he550d4f_0_cpython       conda-forge/linux-64      26MB
  + python-dateutil                       2.8.2  pyhd8ed1ab_0             conda-forge/noarch       246kB
  + python-eccodes                        1.4.2  py310hde88566_1          conda-forge/linux-64      94kB
  + python-fastjsonschema                2.16.3  pyhd8ed1ab_0             conda-forge/noarch       225kB
  + python-flatbuffers                  23.5.26  pyhd8ed1ab_0             conda-forge/noarch        34kB
  + python-geotiepoints                   1.6.0  py310h0a54255_0          conda-forge/linux-64     357kB
  + python-kaleido                        0.2.1  pyhd8ed1ab_0             conda-forge/noarch        18kB
  + python-tzdata                        2023.3  pyhd8ed1ab_0             conda-forge/noarch       143kB
  + python_abi                             3.10  3_cp310                  conda-forge/linux-64       6kB
  + pytz                                 2023.3  pyhd8ed1ab_0             conda-forge/noarch       187kB
  + pyu2f                                 0.1.5  pyhd8ed1ab_0             conda-forge/noarch        32kB
  + pyviz_comms                           2.3.2  pyhd8ed1ab_0             conda-forge/noarch        46kB
  + pyyaml                                  6.0  py310h5764c6d_5          conda-forge/linux-64     176kB
  + pyzmq                                25.0.2  py310h059b190_0          conda-forge/linux-64     451kB
  + qt-main                              5.15.8  h5d23da1_6               conda-forge/linux-64      52MB
  + rasterio                              1.3.6  py310h3e853a9_0          conda-forge/linux-64       7MB
  + rclone                               1.63.1  h519d9b9_0               conda-forge/linux-64      28MB
  + re2                              2023.02.01  hcb278e6_0               conda-forge/linux-64     201kB
  + readline                                8.2  h8228510_1               conda-forge/linux-64     281kB
  + regionmask                            0.9.0  pyhd8ed1ab_0             conda-forge/noarch        49kB
  + requests                             2.28.2  pyhd8ed1ab_1             conda-forge/noarch        57kB
  + requests-oauthlib                     1.3.1  pyhd8ed1ab_0             conda-forge/noarch        22kB
  + rioxarray                            0.14.1  pyhd8ed1ab_0             conda-forge/noarch        47kB
  + rsa                                     4.9  pyhd8ed1ab_0             conda-forge/noarch        30kB
  + rtree                                 1.0.1  py310hbdcdc62_1          conda-forge/linux-64      51kB
  + s2n                                  1.3.37  h3358134_0               conda-forge/linux-64     361kB
  + satpy                                0.41.1  pyhd8ed1ab_0             conda-forge/noarch       874kB
  + scikit-learn                          1.2.2  py310h41b6a48_1          conda-forge/linux-64       8MB
  + scipy                                1.10.1  py310h8deb116_0          conda-forge/linux-64      25MB
  + seaborn                              0.12.2  hd8ed1ab_0               conda-forge/noarch         6kB
  + seaborn-base                         0.12.2  pyhd8ed1ab_0             conda-forge/noarch       232kB
  + send2trash                            1.8.0  pyhd8ed1ab_0             conda-forge/noarch        18kB
  + setuptools                           67.6.1  pyhd8ed1ab_0             conda-forge/noarch       580kB
  + shapely                               2.0.1  py310h8b84c32_0          conda-forge/linux-64     422kB
  + simplejson                           3.19.1  py310h1fa729e_0          conda-forge/linux-64     109kB
  + sip                                   6.7.9  py310hc6cd4ac_0          conda-forge/linux-64     493kB
  + six                                  1.16.0  pyh6c4a22f_0             conda-forge/noarch        14kB
  + snappy                               1.1.10  h9fff704_0               conda-forge/linux-64      39kB
  + snuggs                                1.4.7  py_0                     conda-forge/noarch         8kB
  + sortedcontainers                      2.4.0  pyhd8ed1ab_0             conda-forge/noarch        26kB
  + soupsieve                       2.3.2.post1  pyhd8ed1ab_0             conda-forge/noarch        35kB
  + sqlalchemy                            2.0.9  py310h1fa729e_0          conda-forge/linux-64       3MB
  + sqlite                               3.40.0  h4ff8645_0               conda-forge/linux-64     820kB
  + stack_data                            0.6.2  pyhd8ed1ab_0             conda-forge/noarch        26kB
  + stanio                                0.3.0  pyhd8ed1ab_0             conda-forge/noarch        12kB
  + statsmodels                          0.13.5  py310hde88566_2          conda-forge/linux-64      12MB
  + svt-av1                               1.4.1  hcb278e6_0               conda-forge/linux-64       2MB
  + sympy                                1.11.1  pypyh9d50eac_103         conda-forge/noarch         5MB
  + sysroot_linux-64                       2.12  he073ed8_16              conda-forge/noarch        15MB
  + tbb                                2021.9.0  hf52228f_0               conda-forge/linux-64       2MB
  + tbb-devel                          2021.9.0  hf52228f_0               conda-forge/linux-64       1MB
  + tblib                                 1.7.0  pyhd8ed1ab_0             conda-forge/noarch        15kB
  + tenacity                              8.2.2  pyhd8ed1ab_0             conda-forge/noarch        22kB
  + tensorboard                          2.11.2  pyhd8ed1ab_0             conda-forge/noarch         6MB
  + tensorboard-data-server               0.6.1  py310h600f1e7_4          conda-forge/linux-64       4MB
  + tensorboard-plugin-wit                1.8.1  pyhd8ed1ab_0             conda-forge/noarch       685kB
  + tensorflow                           2.11.0  cpu_py310hd1aba9c_0      conda-forge/linux-64      31kB
  + tensorflow-base                      2.11.0  cpu_py310hc9b7e7f_0      conda-forge/linux-64     131MB
  + tensorflow-estimator                 2.11.0  cpu_py310hfed9998_0      conda-forge/linux-64     540kB
  + termcolor                             2.3.0  pyhd8ed1ab_0             conda-forge/noarch        12kB
  + terminado                            0.17.1  pyh41d4057_0             conda-forge/noarch        21kB
  + threadpoolctl                         3.1.0  pyh8a188c0_0             conda-forge/noarch        18kB
  + tiledb                               2.13.2  hd532e3d_0               conda-forge/linux-64       5MB
  + tinycss2                              1.2.1  pyhd8ed1ab_0             conda-forge/noarch        23kB
  + tk                                   8.6.12  h27826a3_0               conda-forge/linux-64       3MB
  + toml                                 0.10.2  pyhd8ed1ab_0             conda-forge/noarch        18kB
  + tomli                                 2.0.1  pyhd8ed1ab_0             conda-forge/noarch        16kB
  + toolz                                0.12.0  pyhd8ed1ab_0             conda-forge/noarch        49kB
  + tornado                                 6.1  py310h5764c6d_3          conda-forge/linux-64     673kB
  + tqdm                                 4.65.0  pyhd8ed1ab_1             conda-forge/noarch        88kB
  + traitlets                             5.9.0  pyhd8ed1ab_0             conda-forge/noarch        98kB
  + trollimage                           1.20.1  pyhd8ed1ab_0             conda-forge/noarch        55kB
  + trollsift                             0.5.0  pyhd8ed1ab_0             conda-forge/noarch        26kB
  + typing-extensions                     4.5.0  hd8ed1ab_0               conda-forge/noarch        10kB
  + typing_extensions                     4.5.0  pyha770c72_0             conda-forge/noarch        31kB
  + tzcode                                2023c  h0b41bf4_0               conda-forge/linux-64      69kB
  + tzdata                                2023c  h71feb2d_0               conda-forge/noarch       118kB
  + uc-micro-py                           1.0.1  pyhd8ed1ab_0             conda-forge/noarch         9kB
  + ucx                                  1.14.0  h8c404fb_1               conda-forge/linux-64      12MB
  + udunits2                             2.2.28  hc3e0081_0               conda-forge/linux-64     165kB
  + unicodedata2                         15.0.0  py310h5764c6d_0          conda-forge/linux-64     512kB
  + urllib3                             1.26.15  pyhd8ed1ab_0             conda-forge/noarch       113kB
  + wcwidth                               0.2.6  pyhd8ed1ab_0             conda-forge/noarch        29kB
  + webencodings                          0.5.1  py_1                     conda-forge/noarch        12kB
  + werkzeug                              2.2.3  pyhd8ed1ab_0             conda-forge/noarch       253kB
  + wheel                                0.40.0  pyhd8ed1ab_0             conda-forge/noarch        56kB
  + widgetsnbextension                    4.0.7  pyhd8ed1ab_0             conda-forge/noarch       848kB
  + wrapt                                1.15.0  py310h1fa729e_0          conda-forge/linux-64      54kB
  + x264                             1!164.3095  h166bdaf_2               conda-forge/linux-64     898kB
  + x265                                    3.5  h924138e_3               conda-forge/linux-64       3MB
  + xarray                             2023.4.1  pyhd8ed1ab_0             conda-forge/noarch       663kB
  + xcb-util                              0.4.0  h166bdaf_0               conda-forge/linux-64      21kB
  + xcb-util-image                        0.4.0  h166bdaf_0               conda-forge/linux-64      24kB
  + xcb-util-keysyms                      0.4.0  h166bdaf_0               conda-forge/linux-64      12kB
  + xcb-util-renderutil                   0.3.9  h166bdaf_0               conda-forge/linux-64      16kB
  + xcb-util-wm                           0.4.1  h166bdaf_0               conda-forge/linux-64      57kB
  + xerces-c                              3.2.4  h55805fa_0               conda-forge/linux-64       2MB
  + xgboost                               1.7.4  cpu_py310hd1aba9c_0      conda-forge/linux-64      14kB
  + xkeyboard-config                       2.38  h0b41bf4_0               conda-forge/linux-64     882kB
  + xlsxwriter                            3.1.2  pyhd8ed1ab_0             conda-forge/noarch       119kB
  + xorg-fixesproto                         5.0  h7f98852_1002            conda-forge/linux-64       9kB
  + xorg-inputproto                       2.3.2  h7f98852_1002            conda-forge/linux-64      20kB
  + xorg-kbproto                          1.0.7  h7f98852_1002            conda-forge/linux-64      27kB
  + xorg-libice                          1.0.10  h7f98852_0               conda-forge/linux-64      59kB
  + xorg-libsm                            1.2.3  hd9c2040_1000            conda-forge/linux-64      26kB
  + xorg-libx11                           1.8.4  h0b41bf4_0               conda-forge/linux-64     830kB
  + xorg-libxau                           1.0.9  h7f98852_0               conda-forge/linux-64      13kB
  + xorg-libxaw                          1.0.14  h7f98852_1               conda-forge/linux-64     382kB
  + xorg-libxdmcp                         1.1.3  h7f98852_0               conda-forge/linux-64      19kB
  + xorg-libxext                          1.3.4  h0b41bf4_2               conda-forge/linux-64      50kB
  + xorg-libxfixes                        5.0.3  h7f98852_1004            conda-forge/linux-64      18kB
  + xorg-libxi                           1.7.10  h7f98852_0               conda-forge/linux-64      47kB
  + xorg-libxmu                           1.1.3  h7f98852_0               conda-forge/linux-64      93kB
  + xorg-libxpm                          3.5.13  h7f98852_0               conda-forge/linux-64      64kB
  + xorg-libxrender                      0.9.10  h7f98852_1003            conda-forge/linux-64      33kB
  + xorg-libxt                            1.2.1  h7f98852_2               conda-forge/linux-64     384kB
  + xorg-renderproto                     0.11.1  h7f98852_1002            conda-forge/linux-64      10kB
  + xorg-xextproto                        7.3.0  h0b41bf4_1003            conda-forge/linux-64      30kB
  + xorg-xproto                          7.0.31  h7f98852_1007            conda-forge/linux-64      75kB
  + xyzservices                        2023.2.0  pyhd8ed1ab_0             conda-forge/noarch        36kB
  + xz                                    5.2.6  h166bdaf_0               conda-forge/linux-64     418kB
  + yaml                                  0.2.5  h7f98852_2               conda-forge/linux-64      89kB
  + yarl                                  1.9.2  py310h2372a71_0          conda-forge/linux-64      97kB
  + zarr                                 2.14.2  pyhd8ed1ab_0             conda-forge/noarch       156kB
  + zeromq                                4.3.4  h9c3ff4c_1               conda-forge/linux-64     360kB
  + zict                                  3.0.0  pyhd8ed1ab_0             conda-forge/noarch        36kB
  + zipp                                 3.15.0  pyhd8ed1ab_0             conda-forge/noarch        17kB
  + zlib                                 1.2.13  h166bdaf_4               conda-forge/linux-64      94kB
  + zstandard                            0.19.0  py310h5764c6d_0          conda-forge/linux-64     671kB
  + zstd                                  1.5.2  h3eb15da_6               conda-forge/linux-64     420kB

  Summary:

  Install: 543 packages

  Total download: 1GB

──────────────────────────────────────────────────────────────────────────────────────────────────────────

_libgcc_mutex                                        2.6kB @  13.4kB/s  0.2s
ca-certificates                                    154.1kB @ 681.8kB/s  0.2s
_py-xgboost-mutex                                    7.9kB @  29.6kB/s  0.3s
_openmp_mutex                                       23.6kB @  71.3kB/s  0.1s
libgcc-ng                                          771.1kB @   1.9MB/s  0.1s
xorg-renderproto                                     9.6kB @  23.6kB/s  0.1s
ld_impl_linux-64                                   704.7kB @   1.5MB/s  0.5s
xorg-kbproto                                        27.3kB @  57.1kB/s  0.1s
tzcode                                              68.6kB @ 119.6kB/s  0.1s
xorg-libice                                         59.4kB @  95.5kB/s  0.2s
re2                                                200.7kB @ 322.8kB/s  0.1s
nspr                                               226.8kB @ 284.5kB/s  0.2s
pcre                                               259.4kB @ 312.9kB/s  0.3s
libgcc-devel_linux-64                                2.4MB @   2.9MB/s  0.8s
openh264                                           718.8kB @ 847.9kB/s  0.2s
lz4-c                                              143.4kB @ 163.0kB/s  0.1s
libwebp-base                                       356.8kB @ 354.1kB/s  0.2s
libutf8proc                                        101.1kB @  99.4kB/s  0.2s
libpciaccess                                        39.8kB @  35.0kB/s  0.1s
libopus                                            260.7kB @ 226.8kB/s  0.1s
libunistring                                         1.4MB @   1.2MB/s  0.4s
libev                                              106.2kB @  76.0kB/s  0.3s
libcrc32c                                           20.4kB @  14.6kB/s  0.2s
libglu                                             422.6kB @ 285.7kB/s  0.3s
lerc                                               281.8kB @ 179.1kB/s  0.2s
libabseil                                            1.1MB @ 627.4kB/s  0.4s
libspatialindex                                      4.8MB @   2.7MB/s  0.9s
gmp                                                825.8kB @ 367.9kB/s  0.7s
freexl                                              49.6kB @  20.7kB/s  0.6s
c-ares                                             115.4kB @  45.1kB/s  0.3s
attr                                                71.0kB @  27.5kB/s  0.2s
xorg-fixesproto                                      9.1kB @   3.4kB/s  0.1s
gettext                                              4.3MB @   1.6MB/s  0.9s
libedit                                            123.9kB @  44.1kB/s  0.1s
libxcb                                             399.9kB @ 138.8kB/s  0.3s
libsqlite                                          810.5kB @ 242.6kB/s  0.5s
icu                                                 14.2MB @   4.1MB/s  2.0s
libdrm                                             305.2kB @  86.7kB/s  0.2s
expat                                              136.8kB @  37.8kB/s  0.1s
libprotobuf                                          2.2MB @ 605.6kB/s  0.8s
tk                                                   3.5MB @ 929.5kB/s  1.0s
glog                                               114.3kB @  30.3kB/s  0.1s
libflac                                            421.0kB @ 104.9kB/s  0.3s
xerces-c                                             1.8MB @ 450.1kB/s  0.5s
aws-c-sdkutils                                      52.4kB @  12.6kB/s  0.1s
pcre2                                                2.4MB @ 577.3kB/s  0.4s
libcap                                              99.0kB @  23.4kB/s  0.2s
rclone                                              27.8MB @   6.5MB/s  4.1s
xcb-util-keysyms                                    12.2kB @   2.9kB/s  0.1s
xorg-libx11                                        829.9kB @ 189.4kB/s  0.2s
blosc                                               40.3kB @   9.2kB/s  0.1s
krb5                                                 1.3MB @ 299.2kB/s  0.2s
brotli-bin                                          20.1kB @   4.4kB/s  0.1s
libcblas                                            12.8kB @   2.7kB/s  0.3s
libgrpc                                              5.3MB @ 949.9kB/s  1.2s
gnutls                                               2.3MB @ 407.1kB/s  0.9s
xorg-libxrender                                     32.9kB @   5.8kB/s  0.1s
xcb-util-image                                      24.3kB @   4.1kB/s  0.2s
libglib                                              2.7MB @ 432.4kB/s  0.7s
libcups                                              4.5MB @ 670.6kB/s  0.9s
boost-cpp                                           15.9MB @   2.3MB/s  2.6s
libkml                                             624.7kB @  89.6kB/s  0.8s
glib-tools                                         112.0kB @  15.8kB/s  0.2s
aws-c-event-stream                                  52.8kB @   7.3kB/s  0.2s
xorg-libxi                                          47.3kB @   6.5kB/s  0.2s
cfitsio                                            848.0kB @ 109.8kB/s  0.4s
pulseaudio-client                                  752.2kB @  94.3kB/s  0.2s
libclang13                                           9.5MB @   1.2MB/s  1.3s
freeglut                                           165.9kB @  20.3kB/s  0.2s
xorg-libxaw                                        382.1kB @  46.0kB/s  0.3s
aws-c-s3                                            75.3kB @   9.0kB/s  0.1s
pulseaudio                                          16.6kB @   1.9kB/s  0.2s
libnetcdf                                          811.6kB @  94.1kB/s  0.4s
font-ttf-dejavu-sans-mono                          397.4kB @  45.2kB/s  0.2s
font-ttf-ubuntu                                      2.0MB @ 211.2kB/s  0.5s
libllvm15                                           33.0MB @   3.5MB/s  4.7s
aws-sdk-cpp                                          4.2MB @ 439.6kB/s  0.9s
tzdata                                             117.6kB @  12.4kB/s  0.2s
postgresql                                           5.1MB @ 486.0kB/s  1.1s
binutils_linux-64                                   28.2kB @   2.6kB/s  0.1s
ucx                                                 11.7MB @   1.1MB/s  7.6s
pango                                              437.6kB @  38.6kB/s  0.3s
wheel                                               55.7kB @   4.8kB/s  0.2s
zipp                                                17.2kB @   1.5kB/s  0.1s
sysroot_linux-64                                    15.3MB @   1.3MB/s  2.4s
uc-micro-py                                          9.0kB @ 761.0 B/s  0.1s
xlsxwriter                                         119.3kB @  10.0kB/s  0.2s
toolz                                               49.1kB @   4.1kB/s  0.2s
threadpoolctl                                       18.3kB @   1.5kB/s  0.2s
tenacity                                            22.4kB @   1.8kB/s  0.1s
tblib                                               15.4kB @   1.3kB/s  0.1s
pytz                                               186.5kB @  15.1kB/s  0.2s
python-tzdata                                      143.1kB @  11.6kB/s  0.2s
pyparsing                                           81.3kB @   6.5kB/s  0.1s
pycparser                                          102.7kB @   8.1kB/s  0.2s
gxx_impl_linux-64                                   12.7MB @ 995.4kB/s  2.1s
pyshp                                              964.1kB @  75.4kB/s  0.4s
pure_eval                                           14.6kB @   1.1kB/s  0.1s
ply                                                 44.8kB @   3.5kB/s  0.1s
parso                                               71.0kB @   5.5kB/s  0.1s
pickleshare                                          9.3kB @ 725.0 B/s  0.1s
nest-asyncio                                         9.7kB @ 757.0 B/s  0.1s
mistune                                             74.5kB @   5.7kB/s  0.1s
locket                                               8.2kB @ 634.0 B/s  0.1s
idna                                                56.7kB @   4.3kB/s  0.1s
flit-core                                           46.3kB @   3.5kB/s  0.1s
decorator                                           12.1kB @ 913.0 B/s  0.1s
executing                                           25.0kB @   1.9kB/s  0.2s
keras                                              862.1kB @  64.4kB/s  0.5s
colorama                                            25.2kB @   1.9kB/s  0.2s
charset-normalizer                                  44.9kB @   3.4kB/s  0.1s
cached_property                                     11.1kB @ 823.0 B/s  0.1s
blinker                                             18.2kB @   1.4kB/s  0.1s
absl-py                                            102.0kB @   7.5kB/s  0.2s
tinycss2                                            23.2kB @   1.7kB/s  0.1s
matplotlib-inline                                   12.3kB @ 898.0 B/s  0.1s
comm                                                11.5kB @ 837.0 B/s  0.1s
munch                                               12.7kB @ 922.0 B/s  0.1s
astunparse                                          15.5kB @   1.1kB/s  0.1s
jupyterlab_pygments                                 17.4kB @   1.3kB/s  0.1s
pyasn1-modules                                      61.3kB @   4.4kB/s  0.1s
pyviz_comms                                         46.5kB @   3.3kB/s  0.2s
bleach                                             130.7kB @   9.2kB/s  0.2s
partd                                               20.5kB @   1.4kB/s  0.1s
click-plugins                                        9.0kB @ 631.0 B/s  0.1s
cached-property                                      4.1kB @ 290.0 B/s  0.1s
importlib_metadata                                   9.4kB @ 653.0 B/s  0.1s
platformdirs                                        17.9kB @   1.2kB/s  0.1s
wrapt                                               53.7kB @   3.7kB/s  0.1s
prompt-toolkit                                     269.4kB @  18.5kB/s  0.2s
pyzmq                                              450.8kB @  30.5kB/s  0.3s
psycopg2                                           174.6kB @  11.7kB/s  0.2s
tensorboard-data-server                              3.7MB @ 231.3kB/s  1.7s
msgpack-python                                      84.8kB @   5.1kB/s  0.3s
lxml                                                 1.4MB @  83.9kB/s  0.7s
gmpy2                                              220.0kB @  12.6kB/s  0.2s
ephem                                                1.4MB @  75.5kB/s  0.7s
basemap-data                                        25.3MB @   1.4MB/s  5.2s
cytoolz                                            397.8kB @  21.2kB/s  0.3s
cython                                               2.1MB @ 109.9kB/s  0.7s
sip                                                492.7kB @  25.9kB/s  0.2s
fonttools                                            2.1MB @ 110.8kB/s  0.5s
kaleido-core                                        62.1MB @   3.2MB/s 10.2s
gdal                                                 1.4MB @  71.6kB/s  0.5s
pyarrow                                              4.0MB @ 194.2kB/s  1.7s
gstreamer                                            2.0MB @  95.5kB/s  0.9s
brotlipy                                           350.7kB @  16.7kB/s  0.2s
libgoogle-cloud                                     36.6MB @   1.7MB/s 14.0s
cryptography                                         1.5MB @  70.7kB/s  0.5s
yarl                                                97.0kB @   4.5kB/s  1.7s
fiona                                              856.2kB @  40.0kB/s  0.2s
donfig                                              18.1kB @ 836.0 B/s  0.2s
opt_einsum                                          54.5kB @   2.5kB/s  0.1s
jinja2                                             101.4kB @   4.6kB/s  0.2s
lunarcalendar                                       20.0kB @ 909.0 B/s  0.1s
pyqt                                                 5.2MB @ 237.5kB/s  0.8s
oauthlib                                            91.9kB @   4.1kB/s  0.3s
fastparquet                                        441.9kB @  19.6kB/s  1.3s
geopandas-base                                     980.6kB @  43.6kB/s  0.5s
cmdstanpy                                           70.0kB @   3.1kB/s  0.2s
cfgrib                                              42.0kB @   1.9kB/s  0.1s
ipykernel                                          112.0kB @   4.9kB/s  0.1s
pillow                                              46.5MB @   2.0MB/s  7.7s
nbconvert-core                                     208.2kB @   9.2kB/s  0.1s
requests-oauthlib                                   22.2kB @ 976.0 B/s  0.1s
nbconvert-pandoc                                     6.8kB @ 295.0 B/s  0.1s
dask                                                 7.4kB @ 321.0 B/s  0.1s
holoviews                                            3.4MB @ 141.7kB/s  0.9s
colorcet                                             1.6MB @  68.0kB/s  1.2s
prophet                                            760.6kB @  31.0kB/s  0.5s
panel                                               14.2MB @ 562.8kB/s  2.5s
rasterio                                             7.3MB @ 288.9kB/s  1.5s
trollimage                                          55.3kB @   2.2kB/s  0.1s
bokeh                                                5.6MB @ 219.6kB/s  2.9s
rioxarray                                           47.3kB @   1.9kB/s  0.1s
joypy                                               11.9kB @ 464.0 B/s  0.1s
google-auth-oauthlib                                19.3kB @ 751.0 B/s  0.1s
cartopy                                              1.6MB @  62.4kB/s  0.5s
scikit-learn                                         7.6MB @ 292.7kB/s  1.5s
tensorflow                                          30.5kB @   1.2kB/s  0.5s
python_abi                                           5.7kB @ 215.0 B/s  0.2s
yaml                                                89.1kB @   3.4kB/s  0.1s
xorg-xextproto                                      30.3kB @   1.1kB/s  0.1s
xorg-inputproto                                     19.6kB @ 736.0 B/s  0.1s
x264                                               897.5kB @  33.5kB/s  0.2s
pthread-stubs                                        5.6kB @ 209.0 B/s  0.1s
statsmodels                                         11.7MB @ 434.9kB/s  1.2s
mpg123                                             485.5kB @  17.8kB/s  0.3s
openssl                                              2.6MB @  97.3kB/s  0.4s
libvpx                                               1.1MB @  41.9kB/s  0.2s
libsodium                                          375.0kB @  13.7kB/s  0.1s
libxgboost                                           2.6MB @  93.4kB/s  0.4s
libogg                                             210.6kB @   7.6kB/s  0.1s
libffi                                              58.3kB @   2.1kB/s  0.2s
libiconv                                             1.5MB @  52.1kB/s  0.3s
libaec                                              34.4kB @   1.2kB/s  0.1s
json-c                                             281.4kB @  10.1kB/s  0.1s
graphite2                                          104.7kB @   3.7kB/s  0.1s
giflib                                              77.4kB @   2.8kB/s  0.1s
metpy                                              323.2kB @  11.4kB/s  2.9s
fftw                                                 2.1MB @  72.3kB/s  0.5s
aom                                                  2.9MB @ 100.4kB/s  0.5s
mysql-common                                       759.5kB @  26.6kB/s  0.2s
libevent                                             1.2MB @  40.7kB/s  0.2s
xorg-libsm                                          26.4kB @ 917.0 B/s  0.1s
libvorbis                                          286.3kB @   9.9kB/s  0.2s
libbrotlienc                                       295.2kB @  10.2kB/s  0.3s
mpfr                                               631.0kB @  21.6kB/s  0.4s
libidn2                                            160.4kB @   5.5kB/s  0.3s
aws-c-compression                                   18.8kB @ 638.0 B/s  0.1s
dask-core                                          840.7kB @  28.6kB/s  8.0s
xcb-util-renderutil                                 15.7kB @ 530.0 B/s  0.1s
aws-checksums                                       50.0kB @   1.7kB/s  0.3s
mysql-libs                                           1.5MB @  50.3kB/s  0.9s
sqlite                                             820.2kB @  27.0kB/s  0.8s
freetype                                           625.7kB @  20.6kB/s  0.7s
libstdcxx-devel_linux-64                             8.5MB @ 281.0kB/s  4.4s
udunits2                                           164.6kB @   5.4kB/s  0.1s
xorg-libxfixes                                      18.1kB @ 595.0 B/s  0.1s
libxslt                                            257.5kB @   8.4kB/s  0.2s
libxkbcommon                                       563.2kB @  18.5kB/s  0.2s
openjpeg                                           352.0kB @  11.5kB/s  0.3s
libcurl                                            360.8kB @  11.7kB/s  0.4s
libsystemd0                                        380.6kB @  12.3kB/s  0.3s
tbb                                                  1.5MB @  49.1kB/s  0.6s
tbb-devel                                            1.0MB @  32.8kB/s  0.4s
libclang                                           133.3kB @   4.3kB/s  0.4s
kealib                                             164.1kB @   5.2kB/s  0.3s
proj                                                 2.9MB @  91.6kB/s  0.7s
pulseaudio-daemon                                  848.6kB @  27.0kB/s  0.2s
aws-crt-cpp                                        318.4kB @  10.1kB/s  0.2s
arrow-cpp                                           31.0kB @ 981.0 B/s  0.2s
kernel-headers_linux-64                            709.0kB @  22.4kB/s  0.2s
gcc_linux-64                                        30.4kB @ 955.0 B/s  0.2s
poppler-data                                         2.3MB @  73.3kB/s  0.6s
zict                                                36.3kB @   1.1kB/s  0.2s
webencodings                                        11.9kB @ 368.0 B/s  0.1s
tomli                                               15.9kB @ 491.0 B/s  0.1s
binutils_impl_linux-64                               5.4MB @ 165.6kB/s  1.2s
tensorboard-plugin-wit                             684.5kB @  20.9kB/s  0.3s
send2trash                                          17.5kB @ 535.0 B/s  0.1s
six                                                 14.3kB @ 434.0 B/s  0.1s
pyjwt                                               24.8kB @ 755.0 B/s  0.1s
pandoc                                              27.1MB @ 824.1kB/s  4.5s
ptyprocess                                          16.5kB @ 502.0 B/s  0.1s
packaging                                           46.1kB @   1.4kB/s  0.1s
pymeeus                                            519.4kB @  15.7kB/s  0.3s
mpmath                                             438.3kB @  13.2kB/s  0.2s
jupyterlab_widgets                                 172.8kB @   5.2kB/s  0.2s
ipython_genutils                                    21.6kB @ 646.0 B/s  0.1s
findlibs                                            11.1kB @ 331.0 B/s  0.1s
defusedxml                                          24.1kB @ 720.0 B/s  0.1s
cloudpickle                                         27.9kB @ 834.0 B/s  0.1s
pint                                               212.4kB @   6.3kB/s  0.6s
click                                               76.0kB @   2.3kB/s  0.2s
attrs                                               54.1kB @   1.6kB/s  0.1s
importlib_resources                                 31.0kB @ 923.0 B/s  0.1s
affine                                              18.7kB @ 556.0 B/s  0.1s
google-pasta                                        43.2kB @   1.3kB/s  0.1s
convertdate                                         38.9kB @   1.2kB/s  0.1s
pexpect                                             48.8kB @   1.4kB/s  0.1s
trollsift                                           25.8kB @ 761.0 B/s  0.3s
tqdm                                                88.2kB @   2.6kB/s  0.1s
backports.functools_lru_cache                        9.0kB @ 265.0 B/s  0.1s
holidays                                           293.8kB @   8.6kB/s  0.2s
wcwidth                                             29.1kB @ 853.0 B/s  0.1s
unicodedata2                                       512.2kB @  14.8kB/s  0.5s
tornado                                            672.6kB @  19.5kB/s  0.5s
protobuf                                           323.5kB @   9.3kB/s  0.2s
psutil                                             362.3kB @  10.4kB/s  0.2s
kiwisolver                                          77.4kB @   2.2kB/s  0.1s
frozenlist                                          53.6kB @   1.5kB/s  0.4s
cffi                                               237.0kB @   6.7kB/s  0.3s
shapely                                            422.2kB @  11.7kB/s  0.6s
cramjam                                              1.9MB @  53.0kB/s  1.1s
h5py                                                 1.1MB @  31.3kB/s  0.5s
plotly                                               5.1MB @ 138.7kB/s  3.0s
python-eccodes                                      93.6kB @   2.5kB/s  0.4s
gst-plugins-base                                     2.7MB @  70.8kB/s  1.4s
matplotlib                                           7.2kB @ 187.0 B/s  0.1s
stanio                                              11.9kB @ 308.0 B/s  0.2s
magics-python                                       27.2kB @ 701.0 B/s  0.2s
cmdstan                                             47.9MB @   1.2MB/s  7.0s
aiosignal                                           12.7kB @ 327.0 B/s  0.1s
zarr                                               155.6kB @   4.0kB/s  0.1s
nbformat                                           100.6kB @   2.6kB/s  0.1s
urllib3                                            112.5kB @   2.9kB/s  0.1s
ipywidgets                                         112.4kB @   2.9kB/s  0.2s
gcc_impl_linux-64                                   51.6MB @   1.3MB/s  7.6s
matplotlib-base                                      7.7MB @ 197.0kB/s  2.5s
pooch                                               50.9kB @   1.3kB/s  0.2s
dash-table                                           7.7kB @ 196.0 B/s  0.2s
nbconvert                                            7.8kB @ 196.0 B/s  0.2s
dash-bootstrap-components                          118.5kB @   3.0kB/s  0.6s
numcodecs                                          670.6kB @  16.8kB/s  3.9s
patsy                                              193.6kB @   4.8kB/s  0.2s
pyspectral                                           1.8MB @  44.0kB/s  0.8s
dash                                                 7.3MB @ 178.8kB/s  1.9s
regionmask                                          48.7kB @   1.2kB/s  0.1s
xgboost                                             14.2kB @ 346.0 B/s  1.3s
libgfortran-ng                                      22.9kB @ 555.0 B/s  0.1s
xorg-libxdmcp                                       19.1kB @ 463.0 B/s  0.1s
tensorboard                                          5.6MB @ 135.4kB/s  0.6s
libstdcxx-ng                                         3.8MB @  92.2kB/s  0.6s
pixman                                             642.5kB @  15.4kB/s  0.2s
libuuid                                             33.6kB @ 804.0 B/s  0.1s
libtasn1                                           116.9kB @   2.8kB/s  0.1s
ncurses                                              1.0MB @  24.5kB/s  0.2s
libnuma                                             41.1kB @ 979.0 B/s  0.1s
libdeflate                                          65.0kB @   1.5kB/s  0.1s
lame                                               508.3kB @  12.1kB/s  0.1s
x265                                                 3.4MB @  79.8kB/s  0.8s
gstreamer-orc                                      305.9kB @   7.3kB/s  0.2s
fribidi                                            114.4kB @   2.7kB/s  0.1s
aws-c-common                                       198.7kB @   4.7kB/s  0.1s
readline                                           281.5kB @   6.7kB/s  0.1s
zlib                                                94.1kB @   2.2kB/s  0.1s
zstd                                               419.6kB @   9.9kB/s  0.1s
aiohttp                                            453.5kB @  10.7kB/s  3.0s
libbrotlidec                                        34.2kB @ 808.0 B/s  0.1s
libzip                                              99.4kB @   2.3kB/s  0.3s
aws-c-cal                                           43.3kB @   1.0kB/s  0.3s
libthrift                                            3.6MB @  84.3kB/s  0.6s
nss                                                  2.0MB @  45.6kB/s  0.4s
orc                                                907.0kB @  21.1kB/s  0.4s
p11-kit                                              4.7MB @ 109.1kB/s  0.8s
aws-c-io                                           143.1kB @   3.3kB/s  0.2s
libsndfile                                         350.2kB @   8.1kB/s  0.2s
libgcrypt                                          719.6kB @  16.7kB/s  0.2s
curl                                                89.9kB @   2.1kB/s  0.1s
aws-c-http                                         191.6kB @   4.4kB/s  0.1s
dbus                                               618.6kB @  14.3kB/s  0.2s
font-ttf-source-code-pro                           700.8kB @  16.1kB/s  0.2s
fonts-conda-ecosystem                                3.7kB @  84.0 B/s  0.1s
libspatialite                                        4.1MB @  93.1kB/s  0.6s
cairo                                                1.6MB @  35.9kB/s  0.3s
eccodes                                              4.3MB @  96.2kB/s  1.0s
pip                                                  1.4MB @  30.8kB/s  0.4s
typing_extensions                                   31.3kB @ 706.0 B/s  0.1s
termcolor                                           11.8kB @ 266.0 B/s  0.1s
soupsieve                                           34.7kB @ 781.0 B/s  0.1s
pysocks                                             19.0kB @ 426.0 B/s  0.1s
pyasn1                                              54.3kB @   1.2kB/s  0.1s
pycodestyle                                         42.5kB @ 954.0 B/s  0.1s
mccabe                                              10.9kB @ 244.0 B/s  0.1s
gast                                                12.3kB @ 275.0 B/s  0.1s
entrypoints                                          9.2kB @ 205.0 B/s  0.1s
libdap4                                             11.9MB @ 264.5kB/s  1.8s
networkx                                             1.5MB @  32.4kB/s  0.5s
certifi                                            158.9kB @   3.5kB/s  0.2s
libgdal                                             10.2MB @ 226.8kB/s  1.4s
backcall                                            13.7kB @ 303.0 B/s  0.1s
asciitree                                            6.2kB @ 136.0 B/s  0.1s
appdirs                                             12.8kB @ 284.0 B/s  0.1s
python-geotiepoints                                357.2kB @   7.9kB/s  5.7s
cligj                                               10.3kB @ 226.0 B/s  0.0s
rsa                                                 29.9kB @ 660.0 B/s  0.1s
configobj                                           37.3kB @ 826.0 B/s  0.1s
asttokens                                           27.8kB @ 615.0 B/s  0.1s
autopep8                                            45.2kB @ 999.0 B/s  0.1s
pyrsistent                                         100.2kB @   2.2kB/s  0.1s
pyyaml                                             176.3kB @   3.9kB/s  0.1s
ipython                                            581.1kB @  12.8kB/s  0.3s
multidict                                           52.8kB @   1.2kB/s  0.3s
pyproj                                             446.8kB @   9.8kB/s  0.2s
argon2-cffi-bindings                                35.4kB @ 775.0 B/s  0.1s
jsonschema                                          70.5kB @   1.5kB/s  0.1s
zstandard                                          671.2kB @  14.6kB/s  0.4s
werkzeug                                           252.6kB @   5.5kB/s  0.2s
flask                                               83.4kB @   1.8kB/s  0.2s
numpy                                                6.7MB @ 144.3kB/s  1.0s
xarray                                             663.2kB @  14.3kB/s  0.3s
flask-compress                                      15.0kB @ 324.0 B/s  0.1s
dash-auth                                           10.3kB @ 221.0 B/s  0.1s
requests                                            56.9kB @   1.2kB/s  0.2s
pandas                                              12.1MB @ 260.0kB/s  1.5s
sqlalchemy                                           2.5MB @  53.9kB/s  1.4s
seaborn-base                                       231.9kB @   4.9kB/s  0.2s
geopandas                                            7.2kB @ 152.0 B/s  0.1s
pykrige                                            597.5kB @  12.7kB/s  0.7s
xorg-xproto                                         74.9kB @   1.6kB/s  0.1s
satpy                                              874.0kB @  18.4kB/s  0.5s
nettle                                               1.2MB @  25.0kB/s  0.4s
libudev1                                           118.5kB @   2.5kB/s  0.2s
svt-av1                                              2.5MB @  51.8kB/s  0.9s
owslib                                             137.9kB @   2.9kB/s  1.9s
jpeg                                               240.4kB @   5.0kB/s  0.1s
flatbuffers                                          1.5MB @  30.1kB/s  0.5s
s2n                                                360.6kB @   7.3kB/s  0.3s
magics                                              24.5MB @ 495.9kB/s  2.9s
libopenblas                                         10.6MB @ 209.6kB/s  2.5s
librttopo                                          241.9kB @   4.8kB/s  0.1s
jack                                               463.6kB @   9.1kB/s  0.3s
libtiff                                            406.7kB @   7.9kB/s  0.6s
perl                                                15.1MB @ 289.5kB/s  2.8s
parallel                                             1.9MB @  35.6kB/s  0.9s
xorg-libxt                                         383.8kB @   7.3kB/s  0.2s
libdb                                               24.4MB @ 465.7kB/s  4.4s
mathjax                                             22.3MB @ 424.7kB/s  5.4s
lcms2                                              240.8kB @   4.6kB/s  0.1s
fontconfig                                         272.0kB @   5.2kB/s  0.1s
xorg-libxmu                                         92.6kB @   1.8kB/s  0.1s
geotiff                                            258.9kB @   4.9kB/s  0.1s
aws-c-auth                                          94.7kB @   1.8kB/s  0.2s
widgetsnbextension                                 848.4kB @  16.0kB/s  0.3s
sortedcontainers                                    26.3kB @ 494.0 B/s  0.1s
python-fastjsonschema                              225.2kB @   4.2kB/s  0.2s
tiledb                                               5.1MB @  95.9kB/s  1.0s
prometheus_client                                   52.4kB @ 978.0 B/s  0.1s
pandocfilters                                       11.6kB @ 217.0 B/s  0.1s
joblib                                             210.0kB @   3.9kB/s  0.1s
fasteners                                           20.0kB @ 372.0 B/s  0.1s
backports                                            6.0kB @ 110.0 B/s  0.1s
cachetools                                          14.6kB @ 271.0 B/s  0.2s
pyu2f                                               31.9kB @ 592.0 B/s  0.1s
markdown-it-py                                      64.4kB @   1.2kB/s  0.1s
ffmpeg                                               9.6MB @ 178.3kB/s  1.5s
pyct-core                                           13.7kB @ 254.0 B/s  0.2s
stack_data                                          26.2kB @ 484.0 B/s  0.1s
prompt_toolkit                                       6.4kB @ 118.0 B/s  0.1s
mdit-py-plugins                                     41.2kB @ 762.0 B/s  0.1s
contourpy                                          215.7kB @   4.0kB/s  0.1s
docutils                                           780.3kB @  14.4kB/s  0.3s
debugpy                                              2.0MB @  35.9kB/s  0.4s
poppler                                             15.6MB @ 285.0kB/s  2.0s
pyorbital                                           58.3kB @   1.1kB/s  0.3s
pyopenssl                                          128.1kB @   2.3kB/s  0.2s
pyct                                                 2.7kB @  48.0 B/s  0.1s
nbclient                                            64.1kB @   1.2kB/s  0.4s
dash-core-components                                 7.6kB @ 137.0 B/s  0.3s
pyresample                                           2.6MB @  46.3kB/s  1.4s
libllvm14                                           37.0MB @ 633.1kB/s  9.3s
libgfortran5                                         1.8MB @  31.2kB/s  0.6s
xorg-libxau                                         13.4kB @ 226.0 B/s  0.2s
ossuuid                                             56.9kB @ 958.0 B/s  0.1s
libtool                                            411.8kB @   6.9kB/s  0.3s
libexpat                                            78.0kB @   1.3kB/s  0.1s
cdo                                                 30.9MB @ 516.9kB/s  4.6s
gflags                                             116.5kB @   2.0kB/s  0.1s
libssh2                                            239.4kB @   4.0kB/s  0.1s
alsa-lib                                           592.3kB @   9.9kB/s  0.1s
libgpg-error                                       257.6kB @   4.2kB/s  1.4s
xcb-util-wm                                         56.7kB @ 926.0 B/s  1.4s
liblapack                                           12.8kB @ 208.0 B/s  0.1s
xorg-libxpm                                         64.5kB @   1.0kB/s  0.1s
aws-c-mqtt                                         143.6kB @   2.3kB/s  0.1s
libhwloc                                             2.6MB @  41.6kB/s  0.5s
fonts-conda-forge                                    4.1kB @  66.0 B/s  0.1s
gxx_linux-64                                        28.6kB @ 462.0 B/s  0.1s
qt-main                                             52.5MB @ 846.9kB/s  7.6s
traitlets                                           98.4kB @   1.6kB/s  0.4s
python-flatbuffers                                  34.1kB @ 547.0 B/s  0.4s
pkgutil-resolve-name                                 8.7kB @ 139.0 B/s  0.1s
param                                              102.6kB @   1.6kB/s  0.1s
dataclasses                                          9.9kB @ 157.0 B/s  0.1s
linkify-it-py                                       22.4kB @ 358.0 B/s  0.2s
python-dateutil                                    246.0kB @   3.9kB/s  0.3s
simplejson                                         108.6kB @   1.7kB/s  0.2s
lz4                                                 36.9kB @ 585.0 B/s  0.1s
brotli-python                                      361.5kB @   5.7kB/s  0.2s
pykdtree                                            67.8kB @   1.1kB/s  0.3s
netcdf4                                            490.3kB @   7.7kB/s  0.2s
snuggs                                               8.1kB @ 127.0 B/s  0.1s
argon2-cffi                                         15.7kB @ 245.0 B/s  0.1s
jupyter_bokeh                                      541.9kB @   8.5kB/s  0.1s
libarrow                                            26.9MB @ 416.2kB/s  2.8s
notebook                                             6.6MB @ 102.4kB/s  0.6s
google-auth                                        102.1kB @   1.6kB/s  0.2s
xz                                                 418.4kB @   6.4kB/s  0.1s
make                                               518.9kB @   8.0kB/s  0.2s
libnsl                                              31.2kB @ 479.0 B/s  0.1s
tensorflow-estimator                               539.5kB @   8.3kB/s  0.6s
zeromq                                             359.7kB @   5.5kB/s  0.1s
geos                                                 1.7MB @  25.9kB/s  0.2s
hdf4                                               973.8kB @  14.9kB/s  0.2s
libpq                                                2.5MB @  37.3kB/s  0.3s
hdf5                                                 3.3MB @  50.1kB/s  0.4s
font-ttf-inconsolata                                96.5kB @   1.5kB/s  0.1s
harfbuzz                                             1.3MB @  19.5kB/s  0.2s
toml                                                18.4kB @ 276.0 B/s  0.1s
pyflakes                                            57.4kB @ 859.0 B/s  0.1s
itsdangerous                                        16.4kB @ 245.0 B/s  0.1s
importlib-metadata                                  25.5kB @ 380.0 B/s  0.3s
jedi                                               804.4kB @  11.9kB/s  0.1s
async-timeout                                        9.3kB @ 137.0 B/s  0.1s
greenlet                                           191.6kB @   2.8kB/s  0.1s
libnghttp2                                         622.4kB @   9.2kB/s  2.1s
cftime                                             245.5kB @   3.6kB/s  0.1s
jupyter_client                                      92.9kB @   1.4kB/s  0.1s
jupyter_core                                        90.5kB @   1.3kB/s  0.2s
dash-html-components                                 7.9kB @ 116.0 B/s  0.1s
folium                                              72.9kB @   1.1kB/s  0.2s
seaborn                                              6.3kB @  93.0 B/s  0.1s
libbrotlicommon                                     67.2kB @ 988.0 B/s  0.1s
snappy                                              38.9kB @ 571.0 B/s  0.1s
libpng                                             282.6kB @   4.2kB/s  0.1s
xorg-libxext                                        50.1kB @ 736.0 B/s  0.0s
portaudio                                          135.2kB @   2.0kB/s  0.2s
jasper                                             725.6kB @  10.6kB/s  0.4s
python-kaleido                                      18.3kB @ 267.0 B/s  0.1s
mdurl                                               13.7kB @ 199.0 B/s  0.1s
typing-extensions                                    9.7kB @ 140.0 B/s  0.1s
markdown                                            70.9kB @   1.0kB/s  0.1s
glib                                               484.0kB @   7.0kB/s  0.1s
basemap                                            153.1kB @   2.2kB/s  0.4s
branca                                              27.8kB @ 400.0 B/s  0.1s
py-xgboost                                         213.3kB @   3.0kB/s  0.5s
libgomp                                            421.1kB @   6.0kB/s  0.1s
libsanitizer                                         3.9MB @  55.4kB/s  0.5s
libblas                                             12.9kB @ 182.0 B/s  0.1s
mpc                                                116.3kB @   1.6kB/s  0.2s
ncview                                             551.1kB @   7.8kB/s  0.2s
xyzservices                                         35.7kB @ 500.0 B/s  0.1s
fsspec                                             111.5kB @   1.6kB/s  0.1s
flake8                                             109.4kB @   1.5kB/s  0.1s
grpcio                                             746.7kB @  10.4kB/s  0.2s
python                                              25.9MB @ 360.8kB/s  3.6s
keras-preprocessing                                 35.2kB @ 489.0 B/s  0.0s
libzlib                                             65.5kB @ 910.0 B/s  0.1s
libxml2                                            713.9kB @   9.9kB/s  0.2s
libva                                              186.7kB @   2.6kB/s  0.1s
pygments                                           840.7kB @  11.6kB/s  0.2s
beautifulsoup4                                     115.0kB @   1.6kB/s  0.0s
pyqt5-sip                                           85.4kB @   1.2kB/s  0.1s
sympy                                                4.8MB @  65.6kB/s  1.2s
hvplot                                               3.2MB @  43.9kB/s  0.4s
keyutils                                           117.8kB @   1.6kB/s  0.1s
parquet-cpp                                          3.1kB @  42.0 B/s  0.1s
brotli                                              18.9kB @ 258.0 B/s  0.1s
mapclassify                                         38.8kB @ 531.0 B/s  0.1s
markupsafe                                          23.4kB @ 320.0 B/s  0.1s
xcb-util                                            20.7kB @ 283.0 B/s  0.1s
cycler                                              10.3kB @ 140.0 B/s  0.1s
distributed                                        763.5kB @  10.4kB/s  0.1s
terminado                                           20.8kB @ 283.0 B/s  0.1s
munkres                                             12.5kB @ 169.0 B/s  0.0s
bzip2                                              495.7kB @   6.7kB/s  0.4s
rtree                                               50.8kB @ 688.0 B/s  0.1s
xkeyboard-config                                   882.0kB @  11.9kB/s  0.2s
setuptools                                         580.3kB @   7.7kB/s  1.8s
basemap-data-hires                                  84.6MB @ 935.3kB/s 27.9s
tensorflow-base                                    130.7MB @   1.3MB/s 47.1s
scipy                                               24.7MB @ 221.7kB/s 56.3s

Downloading and Extracting Packages

Preparing transaction: done
Verifying transaction: done
Executing transaction: done
Installing pip dependencies: - Ran pip subprocess with arguments:
['/opt/conda/envs/stations/bin/python', '-m', 'pip', 'install', '-U', '-r', '/home/scratch/condaenv.rxu3a0ti.requirements.txt', '--exists-action=b']
Pip subprocess output:
Collecting anyio==3.6.2 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 1))
  Downloading anyio-3.6.2-py3-none-any.whl (80 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 80.6/80.6 kB 1.7 MB/s eta 0:00:00
Collecting bidict==0.22.1 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 2))
  Downloading bidict-0.22.1-py3-none-any.whl (35 kB)
Collecting cdsapi==0.5.1 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 3))
  Downloading cdsapi-0.5.1.tar.gz (12 kB)
  Preparing metadata (setup.py): started
  Preparing metadata (setup.py): finished with status 'done'
Collecting eumdac==2.0.1 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 4))
  Downloading eumdac-2.0.1-py3-none-any.whl (49 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 49.5/49.5 kB 1.1 MB/s eta 0:00:00
Collecting fastapi==0.92.0 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 5))
  Downloading fastapi-0.92.0-py3-none-any.whl (56 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.2/56.2 kB 3.8 MB/s eta 0:00:00
Collecting fastapi-socketio==0.0.10 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 6))
  Downloading fastapi_socketio-0.0.10-py3-none-any.whl (7.4 kB)
Collecting h11==0.14.0 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 7))
  Downloading h11-0.14.0-py3-none-any.whl (58 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.3/58.3 kB 3.5 MB/s eta 0:00:00
Collecting httptools==0.5.0 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 8))
  Downloading httptools-0.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 414.1/414.1 kB 5.0 MB/s eta 0:00:00
Collecting jdcal==1.4.1 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 9))
  Downloading jdcal-1.4.1-py2.py3-none-any.whl (9.5 kB)
Collecting markdown2==2.4.8 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 10))
  Downloading markdown2-2.4.8-py2.py3-none-any.whl (38 kB)
Collecting nicegui==1.1.11 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 11))
  Downloading nicegui-1.1.11-py3-none-any.whl (3.3 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/3.3 MB 9.5 MB/s eta 0:00:00
Collecting orjson==3.8.7 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 12))
  Downloading orjson-3.8.7-cp310-cp310-manylinux_2_28_x86_64.whl (140 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 140.9/140.9 kB 5.2 MB/s eta 0:00:00
Collecting pscript==0.7.7 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 13))
  Downloading pscript-0.7.7-py3-none-any.whl (126 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 126.7/126.7 kB 2.0 MB/s eta 0:00:00
Collecting pydantic==1.10.6 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 14))
  Downloading pydantic-1.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 11.8 MB/s eta 0:00:00
Collecting python-dotenv==1.0.0 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 15))
  Downloading python_dotenv-1.0.0-py3-none-any.whl (19 kB)
Collecting python-engineio==4.4.0 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 16))
  Downloading python_engineio-4.4.0-py3-none-any.whl (53 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 53.4/53.4 kB 3.1 MB/s eta 0:00:00
Collecting python-multipart==0.0.6 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 17))
  Downloading python_multipart-0.0.6-py3-none-any.whl (45 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.7/45.7 kB 2.1 MB/s eta 0:00:00
Collecting python-socketio==5.8.0 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 18))
  Downloading python_socketio-5.8.0-py3-none-any.whl (56 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 57.0/57.0 kB 3.5 MB/s eta 0:00:00
Collecting pytz-deprecation-shim==0.1.0.post0 (from -r /home/scratch/condaenv.rxu3a0ti.requirements.txt (line 19))
  Downloading pytz_deprecation_shim-0.1.0.post0-py2.py3-none-any.whl (15 kB)

Pip subprocess error:
ERROR: Could not find a version that satisfies the requirement rbf==2022.6.12+13.g53e6882 (from versions: 2.0.2, 2.0.3, 2.0.6, 2.0.7, 2.0.8, 2.0.9, 2.0.9.1, 2.0.9.2, 2.1.0, 2.1.1)
ERROR: No matching distribution found for rbf==2022.6.12+13.g53e6882

failed

CondaEnvException: Pip failed
guidocioni commented 6 months ago

I think you can just remove the pip part altogether, those packages shouldn't be important.

Anyway I decided to create a new environment from scratch with the dependencies I need, which successfully installed also the latest basemap version. I'll just need to move the production pipeline to this environment once I have some time.

thank you anyway for the help @molinav !!