Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions accessing-nisar/asf-search.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,24 @@ A list of accepted `processingLevel` constants for data from all missions hosted
Refer to the [Searching page of the ASF Data Search Manual](https://docs.asf.alaska.edu/asf_search/searching/)
for more details on available search filters and their possible values.

### Search for Provisional data
### Search by data maturity

To search for Provisional products utilize the following Python code:
Filter NISAR data by validation/calibration status by using the `dataMaturity` parameter in your search. You can specify either 'PROVISIONAL' for [calibrated NISAR PROVISIONAL](#nisar-provisional-data-july) data or `BETA` for [pre-calibrated NISAR BETA](nisar-sample-data-feb) data.

To search for PROVISIONAL products, utilize the following Python code:

```python
import asf_search as asf

results = asf.search(dataset='NISAR', dataMaturity='PROVISIONAL')
```

To search for Beta products, replace `PROVISIONAL` with `BETA`.
To search for BETA products, replace `PROVISIONAL` with `BETA`, as shown below.
```python
import asf_search as asf

results = asf.search(dataset='NISAR', dataMaturity='BETA')
```

## Download data

Expand Down
Loading