Skip to content

Commit

Permalink
FixSemicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderJuestel committed Feb 20, 2024
1 parent 7125b79 commit 253b74d
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 22 deletions.
4 changes: 2 additions & 2 deletions docs/source/notebooks/02_Processing_Data_Type_I_Raster.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
}
],
"source": [
"show(data);"
"show(data)"
]
},
{
Expand Down Expand Up @@ -1144,7 +1144,7 @@
}
],
"source": [
"show(raster);"
"show(raster)"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@
}
],
"source": [
"show(raster);"
"show(raster)"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@
}
],
"source": [
"show(raster);"
"show(raster)"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@
}
],
"source": [
"show(raster);"
"show(raster)"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2673,7 +2673,7 @@
}
],
"source": [
"show(raster);"
"show(raster)"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1699,7 +1699,7 @@
}
],
"source": [
"show(raster);"
"show(raster)"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@
}
],
"source": [
"show(raster);"
"show(raster)"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3182,16 +3182,8 @@
}
],
"source": [
"show(raster);"
"show(raster)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "a0849807-b7b6-4f61-878e-74d0f8eb7657",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down
10 changes: 5 additions & 5 deletions docs/source/notebooks/14_Refining_Polygon_Mask.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -862,11 +862,11 @@
"source": [
"fig, ax = plt.subplots(3,2, figsize=(8,8))\n",
"\n",
"ax[0][0].hist(hd['HD'][hd.area==10000].values, bins=25);\n",
"ax[0][1].hist(hd['HD'][hd.area==40000].values, bins=25);\n",
"ax[1][0].hist(hd['HD'][hd.area==160000].values, bins=25);\n",
"ax[1][1].hist(hd['HD'][hd.area==640000].values, bins=25);\n",
"ax[2][0].hist(hd['HD'][hd.area==2560000].values, bins=25);\n",
"ax[0][0].hist(hd['HD'][hd.area==10000].values, bins=25)\n",
"ax[0][1].hist(hd['HD'][hd.area==40000].values, bins=25)\n",
"ax[1][0].hist(hd['HD'][hd.area==160000].values, bins=25)\n",
"ax[1][1].hist(hd['HD'][hd.area==640000].values, bins=25)\n",
"ax[2][0].hist(hd['HD'][hd.area==2560000].values, bins=25)\n",
"\n",
"plt.tight_layout()"
]
Expand Down

0 comments on commit 253b74d

Please sign in to comment.