当前位置: 首页>>代码示例>>Python>>正文


Python SentinelAPI._trigger_offline_retrieval方法代码示例

本文整理汇总了Python中sentinelsat.SentinelAPI._trigger_offline_retrieval方法的典型用法代码示例。如果您正苦于以下问题:Python SentinelAPI._trigger_offline_retrieval方法的具体用法?Python SentinelAPI._trigger_offline_retrieval怎么用?Python SentinelAPI._trigger_offline_retrieval使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sentinelsat.SentinelAPI的用法示例。


在下文中一共展示了SentinelAPI._trigger_offline_retrieval方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_trigger_lta_failed

# 需要导入模块: from sentinelsat import SentinelAPI [as 别名]
# 或者: from sentinelsat.SentinelAPI import _trigger_offline_retrieval [as 别名]
def test_trigger_lta_failed(http_status_code):
    api = SentinelAPI("mock_user", "mock_password")
    request_url = "https://scihub.copernicus.eu/apihub/odata/v1/Products('8df46c9e-a20c-43db-a19a-4240c2ed3b8b')/$value"

    with requests_mock.mock() as rqst:
        rqst.get(
            request_url,
            status_code=http_status_code
        )
        with pytest.raises(SentinelAPILTAError) as excinfo:
            api._trigger_offline_retrieval(request_url)
开发者ID:valgur,项目名称:sentinelsat,代码行数:13,代码来源:test_mod.py

示例2: test_trigger_lta_accepted

# 需要导入模块: from sentinelsat import SentinelAPI [as 别名]
# 或者: from sentinelsat.SentinelAPI import _trigger_offline_retrieval [as 别名]
def test_trigger_lta_accepted():
    api = SentinelAPI("mock_user", "mock_password")

    request_url = "https://scihub.copernicus.eu/apihub/odata/v1/Products('8df46c9e-a20c-43db-a19a-4240c2ed3b8b')/$value"

    with requests_mock.mock() as rqst:
        rqst.get(
            request_url,
            text="Mock trigger accepted", status_code=202
        )
        assert api._trigger_offline_retrieval(request_url) == 202
开发者ID:valgur,项目名称:sentinelsat,代码行数:13,代码来源:test_mod.py


注:本文中的sentinelsat.SentinelAPI._trigger_offline_retrieval方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。