I plotted a geographic map with datashader. Everything works fine, however the geographic projection seems to be incorrect. The lengths and aspect ratios do not match, probably because no geographical projection is set? My Code looks like this:
agg = ds.Canvas().points(df, 'lon',"lat")
karte=ds.tf.set_background(ds.tf.shade(agg, cmap=cc.fire,how="log"), "black")
utils.export_image(img=karte,filename='output', fmt=".png", background=None)
