資源簡介
本程序下載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
評論
共有 條評論