Skip to content

Commit

Permalink
Update indexing for hrrr and get kerchunk flow working
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiannucci committed Jul 16, 2023
1 parent 0fe65bd commit 1369c4c
Show file tree
Hide file tree
Showing 9 changed files with 1,382 additions and 494 deletions.
11 changes: 8 additions & 3 deletions examples/split_messages.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@

use std::env;
use std::process;

pub fn main() {
println!("Hello, world!");
}
let args: Vec<String> = env::args().collect();
if args.len() < 2 {
println!("You must specify a grib2 file to read");
process::exit(0);
}
}
583 changes: 106 additions & 477 deletions python/examples/hrrr.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions python/examples/hrrr/hrrr_kerchunk.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion python/examples/kerchunk_gefs_wave.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
"source": [
"from dask.distributed import Client, progress\n",
"\n",
"client = Client()\n",
"client = Client(processes=False)\n",
"futures = client.map(gen_json, files, retries=1)\n",
"progress(futures)"
]
Expand Down
Loading

0 comments on commit 1369c4c

Please sign in to comment.