In [ ]:
from birdy import WPSClient

Emu Example


In [ ]:
emu = WPSClient("https://bovec.dkrz.de/ows/proxy/emu")

In [ ]:
emu.binaryoperatorfornumbers?

In [ ]:
result = emu.binaryoperatorfornumbers(1, 1, operator='add')

In [ ]:
result.get()

Cordex Subsetter with C4CDS


In [ ]:
cp4cds = WPSClient('http://cp4cds-cn1.dkrz.de/wps', progress=True) # async mode

In [ ]:
result = cp4cds.cordex_subsetter(year=2000, model='MOHC-HadRM3P', variable='tas', country='France')

In [ ]:
result.get()

In [ ]:
from IPython.display import Image

In [ ]:
Image(result.get().preview)