91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 2KB
    文件類型: .py
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-06-02
  • 語言: Python
  • 標簽: python??

資源簡介

本程序下載noaa氣象數(shù)據,使用網址為國內鏡像網站,編輯時間

資源截圖

代碼片段和文件信息

#本程序下載noaa氣象數(shù)據,使用網址為國內鏡像網站,編輯時間2019.03.14,LJX

import?urllib.request??#?url?request
import?os??#?regular?expression
import?re??#?dirs
import?requests


#?根據網絡地址和文件保存地址下載文件
def?download(url?path):
????r?=?requests.get(url)
????print(path)
????with?open(path?“wb“)?as?f:
????????f.write(r.content)
????f.close()


url?=?“https://www1.ncdc.noaa.gov/pub/data/noaa/“??#?parent?url
Station_ID?=?“580280“??#?站點號
year_start?=?“1973“??#?數(shù)據起始時間
year_end?=?“2003“
#?時間差,然后根據時間差建立年份數(shù)組
year_sub?=?int(year_end)?-?int(year_start)?+?1

#?建立數(shù)據年份數(shù)組
years?=?[]
for?i?in?range(year_sub):
????years.append(str(i?+?int(year_start)).zfill(4))

for?i?in?years:
????#?file_names.append(Station_ID+“-99999-“+i+“.gz“)?????#file_names?=?[]
????#?urls.append(url+i+“/“+file_names)???????????????????#ur

評論

共有 條評論