Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev data optimize #41

Merged
merged 7 commits into from
Jan 5, 2025
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