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
Copy file name to clipboardExpand all lines: docs/user/environment/1-atm-models/reanalysis.rst
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,27 @@ ERA5 data can be downloaded from the
46
46
processed by RocketPy. It is recommended that you download only the \
47
47
necessary data.
48
48
49
+
MERRA-2
50
+
-------
51
+
52
+
The Modern-Era Retrospective analysis for Research and Applications, Version 2 (MERRA-2) is a NASA atmospheric reanalysis for the satellite era using the Goddard Earth Observing System, Version 5 (GEOS-5) with its Atmospheric Data Assimilation System (ADAS).
53
+
54
+
You can download these files from the `NASA GES DISC <https://disc.gsfc.nasa.gov/>`_.
55
+
56
+
To use MERRA-2 data in RocketPy, you generally need the **Assimilated Meteorological Fields** collection (specifically the 3D Pressure Level data, usually named ``inst3_3d_asm_Np``). Note that MERRA-2 files typically use the ``.nc4`` extension (NetCDF-4), which is fully supported by RocketPy.
57
+
58
+
You can load these files using the ``dictionary="MERRA2"`` argument:
59
+
60
+
.. code-block:: python
61
+
62
+
env.set_atmospheric_model(
63
+
type="Reanalysis",
64
+
file="MERRA2_400.inst3_3d_asm_Np.20230620.nc4",
65
+
dictionary="MERRA2"
66
+
)
67
+
68
+
RocketPy automatically handles the unit conversion for MERRA-2's surface geopotential (energy) to geometric height (meters).
0 commit comments