import yt12# Load the dataset3ds = yt.load("IsolatedGalaxy/galaxy0030/galaxy0030")45# Create a projection and save it with the default colormap ('cmyt.arbre')6p = yt.ProjectionPlot(ds, "z", ("gas", "density"), width=(100, "kpc"))7p.save()89# Change the colormap to 'cmyt.dusk' and save again. We must specify10# a different filename here or it will save it over the top of11# our first projection.12p.set_cmap(field=("gas", "density"), cmap="cmyt.dusk")13p.save("proj_with_dusk_cmap.png")1415# Change the colormap to 'hot' and save again.16p.set_cmap(field=("gas", "density"), cmap="hot")17p.save("proj_with_hot_cmap.png")181920