Add Example BOM DATA

This commit is contained in:
2026-02-20 11:00:22 +10:00
parent 9c7db092e7
commit 6d7834786e
4 changed files with 7728 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@@ -25,7 +25,7 @@
"name": "Plotbox Current File", "name": "Plotbox Current File",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}\\plot_box.py", "program": "${workspaceFolder}\\plotbox.py",
"args": ["${file}"], "args": ["${file}"],
"console": "integratedTerminal" "console": "integratedTerminal"
} }

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
# Plotbox
A quick MatPlotLib data visualization tool
Rainfall Data `IDCJAC0009_040976_1800_Data.csv` obtained from BOM (https://www.bom.gov.au/jsp/ncc/cdio/weatherData/av?p_nccObsCode=136&p_display_type=dailyDataFile&p_startYear=2025&p_c=-335807484&p_stn_num=040976) on the 2026-02-20

View File

@@ -88,3 +88,6 @@ def main():
do_plot(None) do_plot(None)
plt.show() plt.show()
if __name__ == "__main__":
main()