{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "d0bcd295-46dd-4f10-80a1-df859ebe1a34", "metadata": { "tags": [] }, "outputs": [], "source": [ "import xarray as xr\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import xesmf as xe" ] }, { "cell_type": "code", "execution_count": 2, "id": "7df9a03d-3d1d-444f-9efb-4e4a48e9765f", "metadata": {}, "outputs": [], "source": [ "### dr4292\n", "import iris" ] }, { "cell_type": "markdown", "id": "8ebfe053-a78c-4933-865a-f354aaaa6c04", "metadata": {}, "source": [ "\"targetgrid\" is the N48 grid" ] }, { "cell_type": "markdown", "id": "14c3fea8-9b45-4fb8-92a6-1ef69f6d41a1", "metadata": {}, "source": [ "\"era_clima_hour\" is the climatology calculated from ERA-I files on 241x480 grid, used here to downscale to N48 grid" ] }, { "cell_type": "code", "execution_count": 3, "id": "66aadec7-0fec-4c0b-99f5-a344f9897390", "metadata": { "tags": [] }, "outputs": [], "source": [ "targetgrid = xr.open_dataset('/g/data/w40/pf4000/UM/um_experiments/n48/era_n48_tuv.nc')" ] }, { "cell_type": "code", "execution_count": 4, "id": "21518aaa-9c2f-405d-8f9b-61a685977aec", "metadata": { "tags": [] }, "outputs": [], "source": [ "era_clima_hour = xr.open_dataset('/g/data/w40/pf4000/UM/um_experiments/clima_erai/ta_ERAI_climate.nc')" ] }, { "cell_type": "code", "execution_count": 5, "id": "c7792ed4-de0d-42a9-9b9e-d9d655240b2d", "metadata": { "tags": [] }, "outputs": [], "source": [ "hhrT = era_clima_hour.ta.sel(lev=60, method='nearest') #same as above for highres data" ] }, { "cell_type": "code", "execution_count": 6, "id": "2b8e6a57-daef-4073-89ef-26323cc35274", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/g/data/hh5/public/apps/cms_conda/envs/analysis3-23.01/lib/python3.9/site-packages/iris/fileformats/cf.py:584: UserWarning: Missing CF-netCDF formula term variable 'hyam', referenced by netCDF variable 'lev'\n", " warnings.warn(\n", "/g/data/hh5/public/apps/cms_conda/envs/analysis3-23.01/lib/python3.9/site-packages/iris/fileformats/cf.py:584: UserWarning: Missing CF-netCDF formula term variable 'hybm', referenced by netCDF variable 'lev'\n", " warnings.warn(\n", "/g/data/hh5/public/apps/cms_conda/envs/analysis3-23.01/lib/python3.9/site-packages/iris/fileformats/cf.py:584: UserWarning: Missing CF-netCDF formula term variable 'aps', referenced by netCDF variable 'lev'\n", " warnings.warn(\n", "/g/data/hh5/public/apps/cms_conda/envs/analysis3-23.01/lib/python3.9/site-packages/iris/fileformats/_nc_load_rules/helpers.py:660: UserWarning: Ignoring netCDF variable 'lev' invalid units 'level'\n", " warnings.warn(msg)\n", "/g/data/hh5/public/apps/cms_conda/envs/analysis3-23.01/lib/python3.9/site-packages/iris/analysis/cartography.py:412: UserWarning: Using DEFAULT_SPHERICAL_EARTH_RADIUS.\n", " warnings.warn(\"Using DEFAULT_SPHERICAL_EARTH_RADIUS.\")\n" ] }, { "data": { "text/html": [ "
<xarray.DataArray (lat: 241, lon: 480)>\n", "array([[2.23107665e-08, 2.23107665e-08, 2.23107665e-08, ...,\n", " 2.23107665e-08, 2.23107665e-08, 2.23107665e-08],\n", " [1.78480398e-07, 1.78480398e-07, 1.78480398e-07, ...,\n", " 1.78480398e-07, 1.78480398e-07, 1.78480398e-07],\n", " [3.56930214e-07, 3.56930214e-07, 3.56930214e-07, ...,\n", " 3.56930214e-07, 3.56930214e-07, 3.56930214e-07],\n", " ...,\n", " [3.56930214e-07, 3.56930214e-07, 3.56930214e-07, ...,\n", " 3.56930214e-07, 3.56930214e-07, 3.56930214e-07],\n", " [1.78480398e-07, 1.78480398e-07, 1.78480398e-07, ...,\n", " 1.78480398e-07, 1.78480398e-07, 1.78480398e-07],\n", " [2.23107665e-08, 2.23107665e-08, 2.23107665e-08, ...,\n", " 2.23107665e-08, 2.23107665e-08, 2.23107665e-08]])\n", "Dimensions without coordinates: lat, lon
<xarray.Dataset>\n", "Dimensions: (longitude: 96, latitude: 73, hybrid: 1, t: 1,\n", " longitude_1: 96, latitude_1: 72)\n", "Coordinates:\n", " * longitude (longitude) float32 0.0 3.75 7.5 11.25 ... 348.8 352.5 356.2\n", " * latitude (latitude) float32 -90.0 -87.5 -85.0 -82.5 ... 85.0 87.5 90.0\n", " * hybrid (hybrid) float32 60.0\n", " * t (t) datetime64[ns] 1988-11-01\n", " * longitude_1 (longitude_1) float32 1.875 5.625 9.375 ... 350.6 354.4 358.1\n", " * latitude_1 (latitude_1) float32 -88.75 -86.25 -83.75 ... 83.75 86.25 88.75\n", "Data variables:\n", " T (t, hybrid, latitude, longitude) float32 ...\n", " U (t, hybrid, latitude, longitude_1) float32 ...\n", " V (t, hybrid, latitude_1, longitude) float32 ...\n", "Attributes:\n", " history: Fri May 22 15:33:09 BST 2020 - XCONV V1.94 03-May-2018
<xarray.DataArray (latitude: 73, longitude: 96)>\n", "array([[1.23943683e-06, 1.23943683e-06, 1.23943683e-06, ...,\n", " 1.23943683e-06, 1.23943683e-06, 1.23943683e-06],\n", " [9.91198529e-06, 9.91198529e-06, 9.91198529e-06, ...,\n", " 9.91198529e-06, 9.91198529e-06, 9.91198529e-06],\n", " [1.98051801e-05, 1.98051801e-05, 1.98051801e-05, ...,\n", " 1.98051801e-05, 1.98051801e-05, 1.98051801e-05],\n", " ...,\n", " [1.98051801e-05, 1.98051801e-05, 1.98051801e-05, ...,\n", " 1.98051801e-05, 1.98051801e-05, 1.98051801e-05],\n", " [9.91198529e-06, 9.91198529e-06, 9.91198529e-06, ...,\n", " 9.91198529e-06, 9.91198529e-06, 9.91198529e-06],\n", " [1.23943683e-06, 1.23943683e-06, 1.23943683e-06, ...,\n", " 1.23943683e-06, 1.23943683e-06, 1.23943683e-06]])\n", "Dimensions without coordinates: latitude, longitude
<xarray.DataArray 'ta' (lat: 241, lon: 480)>\n", "array([[247.12662, 247.12662, 247.12662, ..., 247.12662, 247.12662, 247.12662],\n", " [246.78316, 246.77962, 246.77637, ..., 246.79301, 246.78947, 246.78632],\n", " [246.63676, 246.63649, 246.63593, ..., 246.63731, 246.63751, 246.63722],\n", " ...,\n", " [248.33058, 248.3356 , 248.34175, ..., 248.31961, 248.32268, 248.32622],\n", " [249.1894 , 249.19536, 249.20233, ..., 249.17192, 249.1776 , 249.18317],\n", " [250.28491, 250.28491, 250.28491, ..., 250.28491, 250.28491, 250.28491]],\n", " dtype=float32)\n", "Coordinates:\n", " * lon (lon) float64 -180.0 -179.2 -178.5 -177.8 ... 177.8 178.5 179.2\n", " * lat (lat) float64 90.0 89.25 88.5 87.75 ... -87.75 -88.5 -89.25 -90.0\n", "Attributes:\n", " standard_name: air_temperature\n", " long_name: Temperature \n", " units: K\n", " code: 130\n", " table: 128\n", " MD5: d41d8cd98f00b204e9800998ecf8427e