There are use cases when we would like to store the results of a search for future use. One of such use cases is for when we are testing the same set of files or datasets, or in case CMR is down. This will look like:
results = earthaccess.search_data(params)
earthaccess.save(results, "query.json")
# later on...
results = earthaccess.load("query.json")
The query will also have the original query to CMR to compare integrity.
There are use cases when we would like to store the results of a search for future use. One of such use cases is for when we are testing the same set of files or datasets, or in case CMR is down. This will look like:
The query will also have the original query to CMR to compare integrity.