blaylockbk / goes2go

Download and process GOES-16 and GOES-17 data from NOAA's archive on AWS using Python.
https://goes2go.readthedocs.io/
MIT License
205 stars 38 forks source link

Cannot use "bands" argument when downloading data. #83

Open scottthomaswx opened 11 months ago

scottthomaswx commented 11 months ago

Am attempting to download specific bands of GOES16 Satellite data via goes2go. Neither a list or individual band selections work. Instead the error "TypeError: goes2go.data.goes_timerange() got multiple values for keyword argument 'bands'" is raised.

Examples: DS = GCONUS.timerange(start='2023-08-24 21:00', end='2023-08-25 03:00', bands = [2,8,9,10,13]) VIS = GCONUS.timerange(start='2023-08-24 21:00', end='2023-08-25 03:00', bands = 2)