You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Often the problem is in the installation of wrf-python. Check that your computer does not have an Apple Silicon CPU (Apple Intel should be fine) and that the Python version is compatible with the wrf-python Conda package.
8
+
9
+
Runtime issues
10
+
--------------
11
+
* Pairing (:meth:`~melodies_monet.driver.analysis.pair_models`) takes too long:
12
+
* ``analysis.pair_models()`` is one of the most expensive functions in MELODIES MONET, and you might be running out of memory. If you have access to more RAM, try it with that. A Time Chunking functionality is being developed to deal with this issue. Check :doc:`/users_guide/time_chunking`.
13
+
* The plots are not produced. The error message references ``leg.legendHandles``:
14
+
* You are probably using Matplotlib 3.9+ with pandas 1.x. Downgrade Matplotlib to 3.8 (upgrading pandas should also work, but you might run into some incompatibilities for some specific functionalities, especially those related to downloading observational data with MONETIO. Check :doc:`/getting_started/installation`).
15
+
* NaN does not exist, or pandas not detecting NaN values, etc:
16
+
* In NumPy 2.x, ``np.NaN`` has been completely replaced by ``np.nan``. ``np.NaN`` is required by some versions of MONETIO. There are two solutions: (i) downgrading NumPy to previous versions (``'numpy<2'``) or (ii) upgrading MONETIO (``'monetio>=0.2.7'``). If you go with option (ii), you might need to use the _develop_ branch of MONETIO (this should make it into _stable_ soon).
17
+
* Failure downoloading maps:
18
+
* MELODIES-MONET uses Cartopy for mapping. Cartopy downloads shapefiles automatically to create the maps, and if you are offline or working on a machine with download restrictions, this might fail. Check :doc:`/appendix/machine-specific-install`. This is the situation for *NOAA HPC Hera*, and the solution discussed there should work.
Copy file name to clipboardexpand all lines: docs/develop/datasets.rst
+55
Original file line number
Diff line number
Diff line change
@@ -21,3 +21,58 @@ While a part of the MONETIO repository,
21
21
the private MELODIES MONET readers are designated with prefix ``_mm``.
22
22
23
23
Support for additional models is also under developed.
24
+
25
+
Standard variables are required to be computed in each model reader for each capability including surface, aircraft, and satellite as specified in the table below.
26
+
27
+
.. list-table:: Required Variables for Model Readers
0 commit comments