Skip to content

Commit

Permalink
Fixed unit tests. Unit tests are a little brittle for two reasons:
Browse files Browse the repository at this point in the history
1) smallest_online_products.yaml can change from call to call if an
offline product becomes available.
2) dhus and apihub have the same product but different md5 hashes.
  • Loading branch information
gbaier committed Jun 19, 2019
1 parent 39f5868 commit 8b7b999
Show file tree
Hide file tree
Showing 15 changed files with 4,841 additions and 3,973 deletions.
12 changes: 8 additions & 4 deletions sentinelsat/sentinel.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,6 @@ def is_online(self, id):
"""
url = urljoin(self.api_url, u"odata/v1/Products('{}')/Online/$value".format(id))
with self.session.get(url, auth=self.session.auth, timeout=self.timeout) as r:
self.logger.info('respnse')
self.logger.info(r)
if r.status_code == 200:
return r.text == 'true'
else:
Expand Down Expand Up @@ -495,6 +493,14 @@ def download(self, id, directory_path='.', checksum=True):
# We assume that the product has been downloaded and is complete
return product_info

# An incomplete download triggers the retrieval from the LTA if the product is not online
if not product_info['Online']:
self.logger.warning(
'Product %s is not online. Triggering retrieval from long term archive.',
product_info['id'])
self._trigger_offline_retrieval(product_info['url'])
return product_info

# Use a temporary file for downloading
temp_path = path + '.incomplete'

Expand Down Expand Up @@ -676,9 +682,7 @@ def download_all(self, products, directory_path='.', max_attempts=10, checksum=T

# Block until download queue is empty. Not all products might have been retrieved
# from the LTA by then. The results of all tasks are analyzed later.
self.logger.info('waiting for joining %d', dl_queue.qsize())
dl_queue.join()
self.logger.info('waiting for joining done %d', dl_queue.qsize())
stop_event.set()

for task in dl_tasks:
Expand Down
24 changes: 12 additions & 12 deletions tests/fixtures/odata_response_full.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
1f62a176-c980-41dc-b3a1-c735d660c910:
Acquisition Type: NOMINAL
Carrier rocket: Soyuz
Creation Date: 2019-04-22 17:13:25.951000
Creation Date: 2015-11-17 16:56:01.826000
Cycle number: 50
Date: 2015-06-03 09:26:24.921000
Filename: S1A_WV_OCN__2SSH_20150603T092625_20150603T093332_006207_008194_521E.SAFE
Expand Down Expand Up @@ -38,7 +38,7 @@
Mission type: Earth observation
Mode: WV
NSSDC identifier: 0000-000A
Online: true
Online: false
Operator: European Space Agency
Orbit number (start): 6207
Orbit number (stop): 6207
Expand Down Expand Up @@ -67,14 +67,14 @@
footprint: POLYGON((-47.310867 42.260288,-47.558411 42.298096,-47.508129 42.476940,-47.259823
42.439095,-47.310867 42.260288))
id: 1f62a176-c980-41dc-b3a1-c735d660c910
md5: EAE42F27C917E1B6C9154A5BE44A4EB6
md5: B3935469F6F643C123B11CD6C58954A1
size: 130006
title: S1A_WV_OCN__2SSH_20150603T092625_20150603T093332_006207_008194_521E
url: https://scihub.copernicus.eu/apihub/odata/v1/Products('1f62a176-c980-41dc-b3a1-c735d660c910')/$value
url: https://scihub.copernicus.eu/dhus/odata/v1/Products('1f62a176-c980-41dc-b3a1-c735d660c910')/$value
5618ce1b-923b-4df2-81d9-50b53e5aded9:
Acquisition Type: NOMINAL
Carrier rocket: Soyuz
Creation Date: 2019-04-22 17:13:26.870000
Creation Date: 2019-02-22 17:58:24.039000
Cycle number: 49
Date: 2015-05-26 08:16:40.873000
Filename: S1A_WV_OCN__2SSV_20150526T081641_20150526T082418_006090_007E3E_104C.SAFE
Expand Down Expand Up @@ -111,7 +111,7 @@
Mission type: Earth observation
Mode: WV
NSSDC identifier: 0000-000A
Online: true
Online: false
Operator: European Space Agency
Orbit number (start): 6090
Orbit number (stop): 6090
Expand Down Expand Up @@ -140,14 +140,14 @@
footprint: POLYGON((147.846664 3.979146,148.030945 4.018075,148.068436 3.837322,147.884155
3.798364,147.846664 3.979146))
id: 5618ce1b-923b-4df2-81d9-50b53e5aded9
md5: 001E1F3E1978AF61E4E3E011DE31599C
md5: 1803272DBB9E120D73DF958274DD3D07
size: 130222
title: S1A_WV_OCN__2SSV_20150526T081641_20150526T082418_006090_007E3E_104C
url: https://scihub.copernicus.eu/apihub/odata/v1/Products('5618ce1b-923b-4df2-81d9-50b53e5aded9')/$value
url: https://scihub.copernicus.eu/dhus/odata/v1/Products('5618ce1b-923b-4df2-81d9-50b53e5aded9')/$value
d8340134-878f-4891-ba4f-4df54f1e3ab4:
Acquisition Type: NOMINAL
Carrier rocket: Soyuz
Creation Date: 2019-04-22 17:43:54.887000
Creation Date: 2015-11-17 23:28:01.852000
Cycle number: 49
Date: 2015-05-26 21:10:28.984000
Filename: S1A_WV_OCN__2SSV_20150526T211029_20150526T211737_006097_007E78_134A.SAFE
Expand Down Expand Up @@ -184,7 +184,7 @@ d8340134-878f-4891-ba4f-4df54f1e3ab4:
Mission type: Earth observation
Mode: WV
NSSDC identifier: 0000-000A
Online: true
Online: false
Operator: European Space Agency
Orbit number (start): 6097
Orbit number (stop): 6097
Expand Down Expand Up @@ -213,7 +213,7 @@ d8340134-878f-4891-ba4f-4df54f1e3ab4:
footprint: POLYGON((-32.055458 -53.931976,-31.748390 -53.867435,-31.646017 -54.039661,-31.954405
-54.104462,-32.055458 -53.931976))
id: d8340134-878f-4891-ba4f-4df54f1e3ab4
md5: B1D1440F27BF5EB09F2F27A6E49025CB
md5: 170834E488F889E538F50EEADB763B29
size: 130102
title: S1A_WV_OCN__2SSV_20150526T211029_20150526T211737_006097_007E78_134A
url: https://scihub.copernicus.eu/apihub/odata/v1/Products('d8340134-878f-4891-ba4f-4df54f1e3ab4')/$value
url: https://scihub.copernicus.eu/dhus/odata/v1/Products('d8340134-878f-4891-ba4f-4df54f1e3ab4')/$value
24 changes: 12 additions & 12 deletions tests/fixtures/odata_response_short.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
1f62a176-c980-41dc-b3a1-c735d660c910:
Creation Date: 2019-04-22 17:13:25.951000
Creation Date: 2015-11-17 16:56:01.826000
Ingestion Date: 2015-11-17 16:56:01.826000
Online: true
Online: false
date: 2015-06-03 09:26:24.921000
footprint: POLYGON((-47.310867 42.260288,-47.558411 42.298096,-47.508129 42.476940,-47.259823
42.439095,-47.310867 42.260288))
id: 1f62a176-c980-41dc-b3a1-c735d660c910
md5: EAE42F27C917E1B6C9154A5BE44A4EB6
md5: B3935469F6F643C123B11CD6C58954A1
size: 130006
title: S1A_WV_OCN__2SSH_20150603T092625_20150603T093332_006207_008194_521E
url: https://scihub.copernicus.eu/apihub/odata/v1/Products('1f62a176-c980-41dc-b3a1-c735d660c910')/$value
url: https://scihub.copernicus.eu/dhus/odata/v1/Products('1f62a176-c980-41dc-b3a1-c735d660c910')/$value
5618ce1b-923b-4df2-81d9-50b53e5aded9:
Creation Date: 2019-04-22 17:13:26.870000
Creation Date: 2019-02-22 17:58:24.039000
Ingestion Date: 2015-11-18 08:53:00.497000
Online: true
Online: false
date: 2015-05-26 08:16:40.873000
footprint: POLYGON((147.846664 3.979146,148.030945 4.018075,148.068436 3.837322,147.884155
3.798364,147.846664 3.979146))
id: 5618ce1b-923b-4df2-81d9-50b53e5aded9
md5: 001E1F3E1978AF61E4E3E011DE31599C
md5: 1803272DBB9E120D73DF958274DD3D07
size: 130222
title: S1A_WV_OCN__2SSV_20150526T081641_20150526T082418_006090_007E3E_104C
url: https://scihub.copernicus.eu/apihub/odata/v1/Products('5618ce1b-923b-4df2-81d9-50b53e5aded9')/$value
url: https://scihub.copernicus.eu/dhus/odata/v1/Products('5618ce1b-923b-4df2-81d9-50b53e5aded9')/$value
d8340134-878f-4891-ba4f-4df54f1e3ab4:
Creation Date: 2019-04-22 17:43:54.887000
Creation Date: 2015-11-17 23:28:01.852000
Ingestion Date: 2015-11-17 23:28:01.852000
Online: true
Online: false
date: 2015-05-26 21:10:28.984000
footprint: POLYGON((-32.055458 -53.931976,-31.748390 -53.867435,-31.646017 -54.039661,-31.954405
-54.104462,-32.055458 -53.931976))
id: d8340134-878f-4891-ba4f-4df54f1e3ab4
md5: B1D1440F27BF5EB09F2F27A6E49025CB
md5: 170834E488F889E538F50EEADB763B29
size: 130102
title: S1A_WV_OCN__2SSV_20150526T211029_20150526T211737_006097_007E78_134A
url: https://scihub.copernicus.eu/apihub/odata/v1/Products('d8340134-878f-4891-ba4f-4df54f1e3ab4')/$value
url: https://scihub.copernicus.eu/dhus/odata/v1/Products('d8340134-878f-4891-ba4f-4df54f1e3ab4')/$value
Binary file not shown.
Binary file not shown.
16 changes: 7 additions & 9 deletions tests/fixtures/vcr_cassettes/smallest_online_products.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,13 @@ interactions:
uri: https://scihub.copernicus.eu/apihub/odata/v1/Products?$format=json&$top=3&$orderby=ContentLength&$filter=Online%20eq%20true
response:
body:
string: '{"d":{"results":[{"__metadata":{"id":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')","uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')","type":"DHuS.Product","content_type":"application/octet-stream","media_src":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/$value","edit_media":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/$value"},"Id":"5618ce1b-923b-4df2-81d9-50b53e5aded9","Name":"S1A_WV_OCN__2SSV_20150526T081641_20150526T082418_006090_007E3E_104C","ContentType":"application/octet-stream","ContentLength":"130222","ChildrenNumber":"0","Value":null,"CreationDate":"\/Date(1560916058957)\/","IngestionDate":"\/Date(1447836780497)\/","EvictionDate":null,"Online":true,"ContentDate":{"__metadata":{"type":"DHuS.TimeRange"},"Start":"\/Date(1432628200873)\/","End":"\/Date(1432628658591)\/"},"Checksum":{"__metadata":{"type":"DHuS.Checksum"},"Algorithm":"MD5","Value":"23D5FF9AA42EE49D803D4A90E61ACE3E"},"ContentGeometry":"<gml:Polygon
string: '{"d":{"results":[{"__metadata":{"id":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''1f62a176-c980-41dc-b3a1-c735d660c910'')","uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''1f62a176-c980-41dc-b3a1-c735d660c910'')","type":"DHuS.Product","content_type":"application/octet-stream","media_src":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''1f62a176-c980-41dc-b3a1-c735d660c910'')/$value","edit_media":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''1f62a176-c980-41dc-b3a1-c735d660c910'')/$value"},"Id":"1f62a176-c980-41dc-b3a1-c735d660c910","Name":"S1A_WV_OCN__2SSH_20150603T092625_20150603T093332_006207_008194_521E","ContentType":"application/octet-stream","ContentLength":"130006","ChildrenNumber":"0","Value":null,"CreationDate":"\/Date(1560925272977)\/","IngestionDate":"\/Date(1447779361826)\/","EvictionDate":null,"Online":true,"ContentDate":{"__metadata":{"type":"DHuS.TimeRange"},"Start":"\/Date(1433323584921)\/","End":"\/Date(1433324013345)\/"},"Checksum":{"__metadata":{"type":"DHuS.Checksum"},"Algorithm":"MD5","Value":"C1A1C06D1A70C47F79A17C491AF01DDE"},"ContentGeometry":"<gml:Polygon
srsName=\"http://www.opengis.net/gml/srs/epsg.xml#4326\" xmlns:gml=\"http://www.opengis.net/gml\"> <gml:outerBoundaryIs> <gml:LinearRing> <gml:coordinates>42.260288,-47.310867
42.298096,-47.558411 42.476940,-47.508129 42.439095,-47.259823 42.260288,-47.310867</gml:coordinates> </gml:LinearRing> </gml:outerBoundaryIs></gml:Polygon>","Products":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''1f62a176-c980-41dc-b3a1-c735d660c910'')/Products"}},"Nodes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''1f62a176-c980-41dc-b3a1-c735d660c910'')/Nodes"}},"Attributes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''1f62a176-c980-41dc-b3a1-c735d660c910'')/Attributes"}},"Class":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''1f62a176-c980-41dc-b3a1-c735d660c910'')/Class"}}},{"__metadata":{"id":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''d8340134-878f-4891-ba4f-4df54f1e3ab4'')","uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''d8340134-878f-4891-ba4f-4df54f1e3ab4'')","type":"DHuS.Product","content_type":"application/octet-stream","media_src":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''d8340134-878f-4891-ba4f-4df54f1e3ab4'')/$value","edit_media":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''d8340134-878f-4891-ba4f-4df54f1e3ab4'')/$value"},"Id":"d8340134-878f-4891-ba4f-4df54f1e3ab4","Name":"S1A_WV_OCN__2SSV_20150526T211029_20150526T211737_006097_007E78_134A","ContentType":"application/octet-stream","ContentLength":"130102","ChildrenNumber":"0","Value":null,"CreationDate":"\/Date(1560925273569)\/","IngestionDate":"\/Date(1447802881852)\/","EvictionDate":null,"Online":true,"ContentDate":{"__metadata":{"type":"DHuS.TimeRange"},"Start":"\/Date(1432674628984)\/","End":"\/Date(1432675057408)\/"},"Checksum":{"__metadata":{"type":"DHuS.Checksum"},"Algorithm":"MD5","Value":"3B466F27B39DA997B2F5583C373B5FE7"},"ContentGeometry":"<gml:Polygon
srsName=\"http://www.opengis.net/gml/srs/epsg.xml#4326\" xmlns:gml=\"http://www.opengis.net/gml\"> <gml:outerBoundaryIs> <gml:LinearRing> <gml:coordinates>-53.931976,-32.055458
-53.867435,-31.748390 -54.039661,-31.646017 -54.104462,-31.954405 -53.931976,-32.055458</gml:coordinates> </gml:LinearRing> </gml:outerBoundaryIs></gml:Polygon>","Products":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''d8340134-878f-4891-ba4f-4df54f1e3ab4'')/Products"}},"Nodes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''d8340134-878f-4891-ba4f-4df54f1e3ab4'')/Nodes"}},"Attributes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''d8340134-878f-4891-ba4f-4df54f1e3ab4'')/Attributes"}},"Class":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''d8340134-878f-4891-ba4f-4df54f1e3ab4'')/Class"}}},{"__metadata":{"id":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')","uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')","type":"DHuS.Product","content_type":"application/octet-stream","media_src":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/$value","edit_media":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/$value"},"Id":"5618ce1b-923b-4df2-81d9-50b53e5aded9","Name":"S1A_WV_OCN__2SSV_20150526T081641_20150526T082418_006090_007E3E_104C","ContentType":"application/octet-stream","ContentLength":"130222","ChildrenNumber":"0","Value":null,"CreationDate":"\/Date(1560916058957)\/","IngestionDate":"\/Date(1447836780497)\/","EvictionDate":null,"Online":true,"ContentDate":{"__metadata":{"type":"DHuS.TimeRange"},"Start":"\/Date(1432628200873)\/","End":"\/Date(1432628658591)\/"},"Checksum":{"__metadata":{"type":"DHuS.Checksum"},"Algorithm":"MD5","Value":"23D5FF9AA42EE49D803D4A90E61ACE3E"},"ContentGeometry":"<gml:Polygon
srsName=\"http://www.opengis.net/gml/srs/epsg.xml#4326\" xmlns:gml=\"http://www.opengis.net/gml\"> <gml:outerBoundaryIs> <gml:LinearRing> <gml:coordinates>3.979146,147.846664
4.018075,148.030945 3.837322,148.068436 3.798364,147.884155 3.979146,147.846664</gml:coordinates> </gml:LinearRing> </gml:outerBoundaryIs></gml:Polygon>","Products":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/Products"}},"Nodes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/Nodes"}},"Attributes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/Attributes"}},"Class":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/Class"}}},{"__metadata":{"id":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''fb30069b-1081-44b9-8e65-314b989dc7fb'')","uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''fb30069b-1081-44b9-8e65-314b989dc7fb'')","type":"DHuS.Product","content_type":"application/octet-stream","media_src":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''fb30069b-1081-44b9-8e65-314b989dc7fb'')/$value","edit_media":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''fb30069b-1081-44b9-8e65-314b989dc7fb'')/$value"},"Id":"fb30069b-1081-44b9-8e65-314b989dc7fb","Name":"S3B_SR_1_SRA_BS_20181123T034407_20181123T034411_20181218T182902_0003_018_047______LN3_O_NT_003","ContentType":"application/octet-stream","ContentLength":"294143","ChildrenNumber":"0","Value":null,"CreationDate":"\/Date(1545160200495)\/","IngestionDate":"\/Date(1545159511440)\/","EvictionDate":null,"Online":true,"ContentDate":{"__metadata":{"type":"DHuS.TimeRange"},"Start":"\/Date(1542944646870)\/","End":"\/Date(1542944650741)\/"},"Checksum":{"__metadata":{"type":"DHuS.Checksum"},"Algorithm":"MD5","Value":"2C48A9E7D54D056423A630D5EAA11EA2"},"ContentGeometry":"<gml:Polygon
srsName=\"http://www.opengis.net/gml/srs/epsg.xml#4326\" xmlns:gml=\"http://www.opengis.net/gml\">\n <gml:outerBoundaryIs>\n <gml:LinearRing>\n <gml:coordinates>68.2514,-108.283
68.3574,-108.417 68.4633,-108.553 68.4625,-108.557 68.3566,-108.422 68.2506,-108.287
68.2514,-108.283</gml:coordinates>\n </gml:LinearRing>\n </gml:outerBoundaryIs>\n</gml:Polygon>","Products":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''fb30069b-1081-44b9-8e65-314b989dc7fb'')/Products"}},"Nodes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''fb30069b-1081-44b9-8e65-314b989dc7fb'')/Nodes"}},"Attributes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''fb30069b-1081-44b9-8e65-314b989dc7fb'')/Attributes"}},"Class":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''fb30069b-1081-44b9-8e65-314b989dc7fb'')/Class"}}},{"__metadata":{"id":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''791810f5-034b-4f0c-96b2-70865a3fcbac'')","uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''791810f5-034b-4f0c-96b2-70865a3fcbac'')","type":"DHuS.Product","content_type":"application/octet-stream","media_src":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''791810f5-034b-4f0c-96b2-70865a3fcbac'')/$value","edit_media":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''791810f5-034b-4f0c-96b2-70865a3fcbac'')/$value"},"Id":"791810f5-034b-4f0c-96b2-70865a3fcbac","Name":"S3B_SR_1_SRA_BS_20181123T034448_20181123T034708_20181218T182901_0139_018_047______LN3_O_NT_003","ContentType":"application/octet-stream","ContentLength":"297224","ChildrenNumber":"0","Value":null,"CreationDate":"\/Date(1545159359732)\/","IngestionDate":"\/Date(1545159030551)\/","EvictionDate":null,"Online":true,"ContentDate":{"__metadata":{"type":"DHuS.TimeRange"},"Start":"\/Date(1542944688484)\/","End":"\/Date(1542944828134)\/"},"Checksum":{"__metadata":{"type":"DHuS.Checksum"},"Algorithm":"MD5","Value":"78BE0E00C606FFDA6C0BB392F4BEAD0C"},"ContentGeometry":"<gml:Polygon
srsName=\"http://www.opengis.net/gml/srs/epsg.xml#4326\" xmlns:gml=\"http://www.opengis.net/gml\">\n <gml:outerBoundaryIs>\n <gml:LinearRing>\n <gml:coordinates>70.485,-111.427
72.3134,-114.614 74.0844,-118.464 75.7768,-123.19 77.3592,-129.079 77.358,-129.085
75.7757,-123.196 74.0834,-118.469 72.3125,-114.619 70.4842,-111.432 70.485,-111.427</gml:coordinates>\n </gml:LinearRing>\n </gml:outerBoundaryIs>\n</gml:Polygon>","Products":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''791810f5-034b-4f0c-96b2-70865a3fcbac'')/Products"}},"Nodes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''791810f5-034b-4f0c-96b2-70865a3fcbac'')/Nodes"}},"Attributes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''791810f5-034b-4f0c-96b2-70865a3fcbac'')/Attributes"}},"Class":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''791810f5-034b-4f0c-96b2-70865a3fcbac'')/Class"}}}]}}'
4.018075,148.030945 3.837322,148.068436 3.798364,147.884155 3.979146,147.846664</gml:coordinates> </gml:LinearRing> </gml:outerBoundaryIs></gml:Polygon>","Products":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/Products"}},"Nodes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/Nodes"}},"Attributes":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/Attributes"}},"Class":{"__deferred":{"uri":"https://scihub.copernicus.eu/apihub/odata/v1/Products(''5618ce1b-923b-4df2-81d9-50b53e5aded9'')/Class"}}}]}}'
headers:
Content-Type:
- application/json
Expand All @@ -35,7 +33,7 @@ interactions:
Vary:
- Accept-Encoding
content-length:
- '6250'
- '6085'
status:
code: 200
message: OK
Expand Down
Loading

0 comments on commit 8b7b999

Please sign in to comment.