如何下载目录中的产品?
How to download a product in a directory?
我正在编写一个简单的脚本,以使用 Sentinelsat 的 Python API
获取一些 SENTINEL 产品
然后我想将一些产品下载到与脚本不同的目录中。
我不知道该怎么做。
我的脚本
api = SentinelAPI('xxxxxx', 'xxxx','https://scihub.copernicus.eu/dhus')
footprint = geojson_to_wkt(read_geojson('search_polygon.geojson'))
products = api.query(footprint,
platformname = "Sentinel-1",
beginposition = ["2019-{}-{}T00:00:00.000Z".format(month_start,day_start),"2019-{}-{}T00:00:00.000Z".format(mont_stop,day_stop)],producttype='GRD')
gdf = api.to_geodataframe(products)
[api.download(item) for item in gdf["uuid"]]
我想在不同的目录中下载产品。例如
./数据
就这么简单只要加上磁盘名://你的directory/file
with open("D://map/dimo.json") as obj:
import json
json.dump("sss",obj)
但是应该创建文件
您可以设置下载数据的目录api.download
directory = 'data'
[api.download(item, directory_path= directory) for item in gdf["uuid"]]
我正在编写一个简单的脚本,以使用 Sentinelsat 的 Python API
获取一些 SENTINEL 产品然后我想将一些产品下载到与脚本不同的目录中。
我不知道该怎么做。
我的脚本
api = SentinelAPI('xxxxxx', 'xxxx','https://scihub.copernicus.eu/dhus')
footprint = geojson_to_wkt(read_geojson('search_polygon.geojson'))
products = api.query(footprint,
platformname = "Sentinel-1",
beginposition = ["2019-{}-{}T00:00:00.000Z".format(month_start,day_start),"2019-{}-{}T00:00:00.000Z".format(mont_stop,day_stop)],producttype='GRD')
gdf = api.to_geodataframe(products)
[api.download(item) for item in gdf["uuid"]]
我想在不同的目录中下载产品。例如
./数据
就这么简单只要加上磁盘名://你的directory/file
with open("D://map/dimo.json") as obj:
import json
json.dump("sss",obj)
但是应该创建文件
您可以设置下载数据的目录api.download
directory = 'data'
[api.download(item, directory_path= directory) for item in gdf["uuid"]]