Skip to content

Commit

Permalink
headings
Browse files Browse the repository at this point in the history
  • Loading branch information
kwinkunks committed Sep 11, 2022
1 parent f6ccb01 commit 3f6d4a4
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions docs/userguide_src/Read_and_write_ZMAP_files.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"id": "771a0ec0",
"metadata": {},
"source": [
"## Read and write ZMAP files\n",
"# Read and write ZMAP files\n",
"\n",
"The venerable ZMAP format looks like this:\n",
"\n",
Expand Down Expand Up @@ -530,17 +530,29 @@
"id": "16c8e7b4",
"metadata": {},
"source": [
"### Transform the surface\n",
"## Transform the surface\n",
"\n",
"The units are feet; let's transform them to metres and save a new file."
]
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 1,
"id": "3d8d3f45",
"metadata": {},
"outputs": [],
"outputs": [
{
"ename": "NameError",
"evalue": "name 'z' is not defined",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
"Input \u001b[0;32mIn [1]\u001b[0m, in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0m z_m \u001b[38;5;241m=\u001b[39m \u001b[38;5;241m0.3048\u001b[39m \u001b[38;5;241m*\u001b[39m \u001b[43mz\u001b[49m\n",
"\u001b[0;31mNameError\u001b[0m: name 'z' is not defined"
]
}
],
"source": [
"z_m = 0.3048 * z"
]
Expand Down

0 comments on commit 3f6d4a4

Please sign in to comment.