前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >GEE python本地环境配置“[WinError 10060]“错误解决方案

GEE python本地环境配置“[WinError 10060]“错误解决方案

作者头像
Twcat_tree
发布2022-12-02 15:37:28
6040
发布2022-12-02 15:37:28
举报
文章被收录于专栏:二猫の家

title: GEE python本地环境配置"[WinError 10060]"错误 date: 2018-12-10 categories: GEE tags: python


WinError10060错误

首先参考GEE官方文档进行GEE的Python环境配置

由于某些众所周知的原因,访问GEE云端需要设置网络代理,但是有些时候会发现设置全局代理后仍然不能正常运行

# Import the Earth Engine Python Package

import ee

# Initialize the Earth Engine object, using the authentication credentials.

ee.Initialize()

# Print the information for an image asset.

image = ee.Image(‘srtm90_v4’)

print(image.getInfo())

运行至ee.Initialize()出现以下错误:

Exception has occurred: TimeoutError

[WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond

解决方案:

代码语言:javascript
复制
# Import the Earth Engine Python Package
import ee
import os
# update the proxy settings
# os.environ['HTTP_PROXY'] = 'my_proxy_id:proxy_port'
# os.environ['HTTPS_PROXY'] = 'my_proxy_id:proxy_port'
os.environ['HTTP_PROXY'] = 'http://127.0.0.1:1080'
os.environ['HTTPS_PROXY'] = 'http://127.0.0.1:1080'

# Initialize the Earth Engine object, using the authentication credentials. ee.Initialize()

# Print the information for an image asset. image = ee.Image(‘srtm90_v4’) print(image.getInfo())

需要在代码中设置网络代理地址及端口 e.g. 如果代理地址为 http://127.0.0.1:1080,则需要添加下面两行代码 os.environ[‘HTTP_PROXY’] = ‘http://127.0.0.1:1080’ os.environ[‘HTTPS_PROXY’] = ‘http://127.0.0.1:1080’ 根据自己电脑的代理方式进行设置

代码正常运行输出图像信息如下:

{'type': 'Image', 'bands': [{'id': 'elevation', 'data_type': {'type': 'PixelType', 'precision': 'int', 'min': -32768, 'max': 32767}, 'dimensions': [432000, 144000], 'crs': 'EPSG:4326', 'crs_transform': [0.000833333333333, 0.0, -180.0, 0.0, -0.000833333333333, 60.0]}], 'version': 1494271934303000, 'id': 'srtm90_v4', 'properties': {'system:time_start': 950227200000, 'system:time_end': 951177600000, 'system:asset_size': 18827626666}}

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-11-27,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • WinError10060错误
  • 解决方案:
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档