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
HI @jgliss
I have used regrid function : model_ukesm_regrid = modeldata_ukesm_isop.regrid(modeldata_noresm_isop)
instead of this one try:
coldata = pya.colocation.colocate_gridded_gridded(modeldata_noresm_isop,
modeldata_ukesm_isop,
start=1980,
ts_type='monthly')
stats = coldata.calc_statistics()
except Exception as e:
print('Colocating failed. Reason: {}'.format(repr(e)))
is there any way I can make coldata.plot_scatter with the separate files.
Thanks
The text was updated successfully, but these errors were encountered:
jrieksta
changed the title
pyaerocom
pyaerocom coldata.scatter plot
Oct 22, 2019
jrieksta
changed the title
pyaerocom coldata.scatter plot
pyaerocom .plot_scatter plot
Oct 22, 2019
jrieksta
changed the title
pyaerocom .plot_scatter plot
pyaerocom .plot_scatter
Oct 22, 2019
@jrieksta Not sure if I understand. Did the colocation routine work? Or does it throw an error? The colocation routine should take care of regridding automatically.
HI @jgliss
I have used regrid function :
model_ukesm_regrid = modeldata_ukesm_isop.regrid(modeldata_noresm_isop)
instead of this one
try:
coldata = pya.colocation.colocate_gridded_gridded(modeldata_noresm_isop,
modeldata_ukesm_isop,
start=1980,
ts_type='monthly')
stats = coldata.calc_statistics()
except Exception as e:
print('Colocating failed. Reason: {}'.format(repr(e)))
is there any way I can make coldata.plot_scatter with the separate files.
Thanks
The text was updated successfully, but these errors were encountered: