Display generated .cal in jupyter

jupyter
Jeff Moe 2022-09-08 13:55:57 -06:00
parent 428c9f951f
commit e08194fff4
1 changed files with 6 additions and 1 deletions

View File

@ -183,7 +183,12 @@
"outputs": [],
"source": [
" # Store calibration\n",
" store_calibration(pix_catalog, f\"{fname}.cal\")"
" store_calibration(pix_catalog, f\"{fname}.cal\")\n",
" fnamecat = open(fname + \".cal\", \"r\")\n",
" # Print first 1500 bytes\n",
" print(fnamecat.read(1500), \"\\n...\")\n",
" # Print all:\n",
" #print(fnamecat.read())"
]
},
{