# Querying the SWOT Dataset
As input to the query, we _require_ either a "SWOT Feature ID". As of now, this identifier is built using information in the SWORD database of example SWOT data. More information on how this Feature ID is generated can be found in the associated Jupyter notebook _Create SWOT Database.ipynb_. In the future, there will be a standardized way of generating SWOT Feature IDs, thus it will require updating our present SWOT database.
Furthermore, at this moment, CMR does not support OR'ing multiple spatial parameters. This is necessary to the success of querying CMR for SWOT data, thus it is actively being looked into by developers at CMR. For questions/updates regarding this, a good contact is Lewis McGibbney (lewis.j.mcgibbney@jpl.nasa.gov). For now, you can extract information from the API call returns a string that might look as follows:
```
"point=-121.9770366732242,39.18799113833964&point=-121.9767090807306,39.18785702031573"
```
which can directly be used to query CMR (see the first example below), however this isn't technically the correct query as these results are AND'd together rather than OR'd. To remedy this, I've included a single line in the Lambda function:
```
TO_JSON = False # Modify to "True" once CMR JSON POST support is available.
```
that can be changed to "True" once support for this feature has been integrated, and this will automatically format results appropriately. For example, the above list of points will become:
```
{
"condition":
{
"or":
[
{"point": [-121.9770366732242,39.18799113833964]},
{"point": [-121.9767090807306,39.18785702031573]}
]
}
}
```
which appropriately OR's geometries. This can then be queried via:
```
curl -XPOST -H "Content-Type: application/json" https://cmr.earthdata.nasa.gov/search/collections -d @data.json
```
where _data.json_ is the above response.
***
Optionally, you can include a parameter "exact = True" that tells us you want to search for _exactly_ the Feature ID you've entered. You may also include "exact=False" to search for _partial_ matches, however it defaults to this search option automatically.
Below are some examples I've put together to display how you can interact with the SWOT portion of the Feature Translation Service.
Querying an _exact_ SWOT Feature ID:
```python
import requests
import json
###################
# Mimicing a user querying exact matches with SWOT Feature ID "7541140001000000"
SWOT_FEATURE_ID = "7541140001000000"
EXACT = True
###################
# Query Feature Translation Service and parse JSON response
r = requests.get("https://g6zl7z2x7j.execute-api.us-west-2.amazonaws.com/prod/swot/{}?exact={}".format(SWOT_FEATURE_ID, EXACT))
# Load response from FTS
response = json.loads(r.text)
# Print all elements in HUC database that exactly match HUC "180500030105"
print(json.dumps(response, indent = 4))
```
```
{
"status": "200 OK",
"hits": 1,
"time": "1.09 ms.",
"search on": {
"parameter": "SWOT Feature ID",
"exact": true
},
"results": {
"7541140001000000": "point=-83.62575151546879,9.252305471126416"
}
}
```
```
{
"status": "200 OK",
"hits": 10,
"time": "1.613 ms.",
"search on": {
"parameter": "SWOT Feature ID",
"exact": false
},
"results": {
"75411400010000": "point=-83.62575151546879,9.252305471126416&point=-83.62575352733344,9.252576533363468&point=-83.62564640094489,9.252848395107943&point=-83.62553927444125,9.253120256862395&point=-83.62543214782254,9.253392118626815&point=-83.62527045178793,9.253664380130763&point=-83.62510875554258,9.253936641627057&point=-83.62489208736692,9.254155090331341&point=-83.62467461434254,9.254265113998752&point=-83.62440257170697,9.25437553719889"
}
}
```
```
Click to expand output:
***
Querying by _partial_ SWOT Feature ID:
```python
###################
# Mimicing a user querying partial matches with SWOT Feature ID "75411400010000"
SWOT_FEATURE_ID = "75411400010000"
EXACT = False
###################
# Query Feature Translation Service and parse JSON response
r = requests.get("https://g6zl7z2x7j.execute-api.us-west-2.amazonaws.com/prod/swot/{}?exact={}".format(SWOT_FEATURE_ID, EXACT))
# Load response from FTS
response = json.loads(r.text)
# Print all elements in HUC database that exactly match HUC "180500030105"
print(json.dumps(response, indent = 4))
```
Click to expand output:
***
Finally, we can use this output from the Feature Translation Service to query CMR for us. This can be seen below:
Query CMR via SWOT Feature ID string:
```python
from bs4 import BeautifulSoup
import requests
import json
###################
# Mimicing a user querying exact matches with SWOT Feature ID "75411400010000"
COLLECTION_ID = "C1522341104-NSIDC_ECS" # SMAP/Sentinel-1 L2 Radiometer/Radar 30-Second Scene 3 km EASE-Grid Soil Moisture V002
SWOT_FEATURE_ID = "75411400010000"
EXACT = False
###################
# Query Feature Translation Service and parse JSON response
r = requests.get("https://g6zl7z2x7j.execute-api.us-west-2.amazonaws.com/prod/swot/{}?exact={}".format(SWOT_FEATURE_ID, EXACT))
# Load response from FTS
response = json.loads(r.text)
geo_list = response['results'][SWOT_FEATURE_ID]
#print(geo_list)
# Query CMR
# --------- #
#cmr_response = requests.get("https://cmr.earthdata.nasa.gov/search/granules.json?{}&echo_collection_id=C1522341104-NSIDC_ECS&pretty=True".format(polygon))
cmr_response = requests.get("https://cmr.earthdata.nasa.gov/search/granules?{}&echo_collection_id={}&pretty=True".format(geo_list, COLLECTION_ID))
# --------- #
# Make it look nice
soup = BeautifulSoup(cmr_response.text, features = 'lxml')
print(soup.prettify())
```
Click to expand output: