figure.image (image, x, y, dw, dh, dilate=False, **kwargs)

hello
i want to draw an image with right coordonates

i try a lot of different combination but none is right

here is my data

z=

[[-95.66084788 -95.78553616 -94.03990025 …, -95.66084788 -95.16209476

-94.78802993]

[-95.78553616 -95.78553616 -95.16209476 …, -96.28428928 -95.16209476

-95.03740648]

[-95.28678304 -95.66084788 -95.66084788 …, -93.79052369 -95.28678304

-95.66084788]

…,

[-96.40897756 -95.28678304 -94.66334165 …, -94.9127182 -95.41147132

-94.28927681]

[-95.28678304 -95.5361596 -97.90523691 …, -93.91521197 -95.03740648

-95.5361596 ]

[-95.28678304 -96.28428928 -95.28678304 …, -94.28927681 -96.53366584

-96.78304239]]

x.min(), x.max(),y.min(),y.max()

601028571 621000000 2014-01-07 12:00:06 2014-01-07 12:09:58

so i try :

p = figure(plot_width=700, plot_height=700, y_axis_type=“datetime”,x_range=[x.min(), x.max()],y_range=[y.min(),y.max()])

p.image(image=[z.values],x=[0], y=[0], dw=[x.min(),x.max()], dh=[y.min(),y.max()],palette=“Spectral11” )

but it doesn’t work

i don’t understand what is dw and dh ???

thanks for your help