Skip to content

Commit

Permalink
Merge pull request #226 from neutrinoceros/clobber
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros authored Oct 2, 2023
2 parents f4ab531 + 57825b0 commit bcb49d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/source/PPVCube.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
}
],
"source": [
"cube.write_fits(\"cube.fits\", clobber=True, length_unit=\"kpc\")"
"cube.write_fits(\"cube.fits\", overwrite=True, length_unit=\"kpc\")"
]
},
{
Expand Down Expand Up @@ -313,7 +313,7 @@
"source": [
"sky_scale = (1.0, \"arcsec/kpc\")\n",
"sky_center = (30., 45.) # RA, Dec in degrees\n",
"cube.write_fits(\"cube_sky.fits\", clobber=True, sky_scale=sky_scale, sky_center=sky_center)"
"cube.write_fits(\"cube_sky.fits\", overwrite=True, sky_scale=sky_scale, sky_center=sky_center)"
]
},
{
Expand Down Expand Up @@ -574,7 +574,7 @@
"source": [
"cube2 = PPVCube(ds, L, \"density\", (-150.,150.,50,\"km/s\"), dims=200, thermal_broad=True, \n",
" atomic_weight=12.0, method=\"sum\")\n",
"cube2.write_fits(\"cube2.fits\", clobber=True, length_unit=\"kpc\")"
"cube2.write_fits(\"cube2.fits\", overwrite=True, length_unit=\"kpc\")"
]
},
{
Expand Down

0 comments on commit bcb49d6

Please sign in to comment.