Luis López
Luis López
ACK Not merging yet. @chuckwondo
Hi @nikki-t the code looks good to me, there are some failing tests due a print statement which I'm not opposed to, @mfisher87do you know if there is a way...
Ahh right @chuckwondo cc @nikki-t
Hi @abarciauskas-bgse I like the `earthaccess.login(strategy="IAM")` idea, I'm not sure if the s3fs session issue is related to this. I just ran this code in the Openscapes hub and it...
Hi @maawoo, I think this could be resolved if we let users pass the proxy settings to requests, in the meantime you can manually get a session modify it and...
Token regeneration is not automatic, actually is not part of the top level API. It could be automatic if we encounter an expired token, as of now one can do...
Hi Doug! thanks for reporting this. We do use `search-after` for granule search since those results will be in the thousands/millions. https://github.com/nsidc/earthaccess/blob/8fe60974ce0f6e5d6f8fbec679afb96f12f1506f/earthaccess/search.py#L645 That being said, it would be good practice...
Yeah, this is mainly because earthaccess has only parsers for `umm_json`. Initially I wanted to write parsers for `json`, `iso19115` and `echo10` but I've always run into irregularities with the...
@mfisher87 I'm leaning towards just supporting `umm_json` for now and when the time comes we can map CMR responses to the proper results parsers. This brings me to 2 related...
We do not necessarily need the stac items as such, just the way the response is handled. eg. ```python results = earthaccess.search_data(**params) ``` Right now, `results` is a list of...