Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [0.5.4] - 2025-01-05
### Changed
* fixed streamlit crash
* added toml for install
* fixed accounted for nan in monthly aggregates

# [0.5.1] - 2023-02-18
### Changed
* created download_utils
Expand Down
4 changes: 2 additions & 2 deletions noaaplotter/scripts/download_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def main():
dest="output_file",
type=str,
required=True,
default="data/data.csv",
help="csv file to save results",
default="data/parquet.csv",
help="parquet file to save results",
)

parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion noaaplotter/scripts/plot_daily.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def main():
parser = argparse.ArgumentParser(description='Parse arguments.')

parser.add_argument('-infile', dest='infile', type=str, required=True,
default='data/temp.csv',
default='data/temp.parquet',
help='input file with climate data')

parser.add_argument('-t', dest='token', type=str, required=False,
Expand Down
Loading
Loading