remo-rcm / pyremo

python tools for remo postprocessing and maintenance
https://pyremo.readthedocs.io
MIT License
3 stars 2 forks source link

remo data analysis and comparison to observations #6

Open larsbuntemeyer opened 3 years ago

larsbuntemeyer commented 3 years ago

How to compare to gridded observations

How to handle masks?

When to do the regridding?

Height correction

How does the heigh correction work correctly, e.g., what is height1 and height2 exactly? is my documentation here correct?

def height_correction(height1, height2):
    """Returns height correction in [K].

    Citation: trocken - adiabatischer Gradient, ludwig fragen.... link?

    Parameters
    ------------

    height1: array like
        topography of model data [m]
    height2: array like
        topography of *true* data [m], e.g., observations

    Returns
    --------

    height correction: array like
        temperature height correction due to different topographies
    """
    return (height2 - height1) * 0.0065

see ecmwf report page 11

larsbuntemeyer commented 3 years ago

@KatharinaBuelow just to let you know about my questions here.

larsbuntemeyer commented 3 years ago
larsbuntemeyer commented 3 years ago

we need bounds in remo output for conservative remapping, where do we get those?

larsbuntemeyer commented 3 years ago

prototype notebook here: https://nbviewer.jupyter.org/github/remo-rcm/pyremo/blob/master/notebooks/remo-dataset.ipynb

larsbuntemeyer commented 3 years ago

ludwigs prototype: /pf/g/g300100/remo-dataset.ipynb

ludwiglierhammer commented 3 years ago

Ich hab folgende Änderungen vorgenommen: