Using goes_latest for RadC data #20
-
Hello, I'm trying to use the goes_latest tool for downloading RadC band 2. This tool worked well for the MCMIPC data, but seems to get stuck when I use the Rad product name: C = goes_latest(product='ABI-L1b-RadC'). Is this function intended to work for this product? Is there a way to specify the band? It seems that the issue may relate to the number of files it's trying to download (code from the multiprocessing lib seems to be unhappy?). I'm not particularly experienced with python, so hoping there is a simple solution I'm missing... Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @Tscan08, looks like you found a use case that goes2go didn't handle. I made a quick update (1c35666) in the master branch to accept a "bands" argument to specify the ABI channel you want when requesting the from goes2go.data import goes_latest
ds = goes_latest(product='ABI-L1b-RadC', bands=2, return_as='xarray') As you pointed out, I also see that the downloading of multiple files is unhappy. It looks like I need to update those functions. I'll try to fix some of these issues when I have some free time. Thanks for reporting this! |
Beta Was this translation helpful? Give feedback.
Hi @Tscan08, looks like you found a use case that goes2go didn't handle. I made a quick update (1c35666) in the master branch to accept a "bands" argument to specify the ABI channel you want when requesting the
L1b-Rad
product. Try this,As you pointed out, I also see that the downloading of multiple files is unhappy. It looks like I need to update those functions. I'll try to fix some of these issues when I have some free time. Thanks for reporting this!