本文目的- 介绍了如何从nc文件中,提取风速数据;
- 介绍如何将风速数据转换成时间序列;
- 简单的时间序列的趋势拆解(首发)。
+ [2 W9 T3 b( j0 S0 m! B- D0 A4 J; B! `) J& t! G1 ?# @5 S
代码链接代码我已经放在Github上面了,免费分享使用,https://github.com/yuanzhoulvpi2 ... ree/main/python_GIS。
( ]" L; B+ A B8 F5 O* \1 d
过程介绍
; U6 r' P$ S7 y+ u( L2 @2 t3 i# Y- s: x
' W' | f3 C4 y0 J7 K0 a1. 导入包( H+ p! g9 e8 q/ W. p$ Y6 A! r5 f
* I" j6 W ?4 O, q: g- |0 G
[Python] 纯文本查看 复制代码 # 基础的数据处理工具
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt # 可视化
import datetime # 处理python时间函数
import netCDF4 as nc # 处理nc数据
from netCDF4 import num2date # 处理nc数据
import geopandas as gpd # 处理网格数据,shp之类的
import rasterio # 处理tiff文件
from shapely.geometry import Point # gis的一些逻辑判断
from cartopy import crs as ccrs # 设置投影坐标系等
from tqdm import tqdm # 打印进度条
from joblib import Parallel, delayed # 并行
import platform # 检测系统
tqdm.pandas()
# matplotlib 显示中文的问题
if platform.system() == 'Darwin':
plt.rcParams["font.family"] = 'Arial Unicode MS'
elif platform.system() == 'Windows':
plt.rcParams["font.family"] = 'SimHei'
else:
pass
1 S3 U+ ~- U1 O4 w4 G: z, z5 N
$ d" d5 x0 j$ o2 f; s. \1 g5 x. ~: h0 c& Q- u. H
2.导入数据 处理数据
! s4 k" `6 ], N1 d$ d8 d& Y' I A
. u' `/ `5 G( z! i) u0 F6 u+ J[Python] 纯文本查看 复制代码 # 导入数据
nc_data = nc.Dataset("./数据集/GIS实践3/2016_2020.nc")
# 处理数据
raw_latitude = np.array(nc_data.variables['latitude'])
raw_longitude = np.array(nc_data.variables['longitude'])
raw_time = np.array(nc_data.variables['time'])
raw_u10 = np.array(nc_data.variables['u10'])
raw_v10 = np.array(nc_data.variables['v10'])
# 提取缺失值,并且将缺失值替换
missing_u10_value = nc_data.variables['u10'].missing_value
missing_v10_value = nc_data.variables['v10'].missing_value
raw_v10[raw_v10 == missing_v10_value] = np.nan
raw_u10[raw_u10 == missing_u10_value] = np.nan
# 处理时间
def cftime2datetime(cftime, units, format='%Y-%m-%d %H:%M:%S'):
"""
将nc文件里面的时间格式 从cftime 转换到 datetime格式
:param cftime:
:param units:
:param format:
:return:
"""
return datetime.datetime.strptime(num2date(times=cftime, units=units).strftime(format), format)
clean_time_data = pd.Series([cftime2datetime(i, units=str(nc_data.variables['time'].units)) for i in tqdm(raw_time)])
clean_time_data[:4] 2 j/ ]" A) B6 F8 G0 u' s
+ [6 ]6 ^4 O, \7 ~3. 计算风速数据+ Y) f/ T5 G. J. V# |5 \9 b+ t7 F+ ]
, V( |" V4 C$ F
% `/ v3 q" }0 ?3 l5 Z
[Python] 纯文本查看 复制代码 windspeed_mean = pd.Series([np.sqrt(raw_v10[i,:, :] ** 2 + raw_u10[i, :, :]**2).mean() for i in tqdm(range(clean_time_data.shape[0]))])
time_windspeed = pd.DataFrame({'time':clean_time_data,'mean_ws':windspeed_mean})
time_windspeed
8 p% w- ?, f9 [* e6 m d9 }+ |
0 ~1 h# A6 B1 w G7 v/ @# W, n. N( c R8 L z: T/ x: U% C" ]
$ @! p7 j# I4 t6 j: p' W; j4 ?4. 年度数据可视化9 {. Y- s1 o; }& S$ D' p
/ |) |: j: X5 k+ c8 Z$ S
) k9 X- ~3 F0 Y& [, \ _/ y[Python] 纯文本查看 复制代码 year_data = time_windspeed.groupby(time_windspeed.time.dt.year).agg(
mean_ws = ('mean_ws', 'mean')
).reset_index()
# year_data
with plt.style.context('fivethirtyeight') as style:
fig, ax = plt.subplots(figsize=(10,3), dpi=300)
ax.plot(year_data['time'], year_data['mean_ws'], '-o',linewidth=3, ms=6)
ax.set_xticks(year_data['time'])
#
#
for i in range(year_data.shape[0]):
ax.text(year_data.iloc[/size][/font][i][font=新宋体][size=3]['time']+0.1, year_data.iloc[/size][/font][i][font=新宋体][size=3]['mean_ws'], str(np.around(year_data.iloc[/size][/font][i][font=新宋体][size=3]['mean_ws'], 2)),
bbox=dict(boxstyle='round', facecolor='white', alpha=0.5))
#
for i in ['top', 'right']:
ax.spines[/size][/font][i][font=新宋体][size=3].set_visible(False)
ax.set_title("各年平均风速")
ax.set_ylabel("$Wind Speed / m.s^{-1}$")
6 U1 p" g* X& q/ V6 z) K$ T1 M R7 {) x$ ^# L& @6 \
6 }" f7 k% w* b, Z. r; V8 J/ l, }8 ^3 n6 C5 X7 ]0 V
5. 月维度数据可视化
3 f1 c7 e) d, Q# P1 H8 Y" r[Python] 纯文本查看 复制代码 month_data = time_windspeed.groupby(time_windspeed.time.dt.month).agg(
mean_ws = ('mean_ws', 'mean')
).reset_index()
with plt.style.context('fivethirtyeight') as style:
fig, ax = plt.subplots(figsize=(10,3), dpi=300)
ax.plot(month_data['time'], month_data['mean_ws'], '-o',linewidth=3, ms=6)
ax.set_xticks(month_data['time'])
_ = ax.set_xticklabels(labels=[f'{i}月' for i in month_data['time']])
for i in range(month_data.shape[0]):
ax.text(month_data.iloc[/size][/font][i][font=新宋体][size=3]['time'], month_data.iloc[/size][/font][i][font=新宋体][size=3]['mean_ws']+0.05, str(np.around(month_data.iloc[/size][/font][i][font=新宋体][size=3]['mean_ws'], 2)),
bbox=dict(boxstyle='round', facecolor='white', alpha=0.5))
for i in ['top', 'right']:
ax.spines[/size][/font][i][font=新宋体][size=3].set_visible(False)
ax.set_title("各月平均风速")
ax.set_ylabel("$Wind Speed / m.s^{-1}$")
fig.savefig("month_plot.png") : j$ B: O$ I; }/ y$ o. h
4 h$ D1 R" f4 A2 b2 T! X/ @# @; J- N7 Z$ f2 S: g5 D2 O8 |0 y8 h% n8 r3 p
5 {- ?# d$ t' K u- E1 Q4 a5 @6.天维度数据可视化: ^9 h7 q9 r$ W8 [
- 计算天数据
# s' W" O0 i& i9 ]8 k( [
) B2 p) S' S' u/ I: @
[Python] 纯文本查看 复制代码 day_data = time_windspeed.groupby(time_windspeed.time.apply(lambda x: x.strftime('%Y-%m-%d'))).agg(
mean_ws = ('mean_ws', 'mean')
).reset_index()
day_data['time'] = pd.to_datetime(day_data['time'])
day_data = day_data.set_index('time')
day_data.head()- 可视化
4 t; Q1 T2 d6 D; W/ |; V. e% d! v3 D+ r, d
[Python] 纯文本查看 复制代码 # day_data.dtypes
fig, ax = plt.subplots(figsize=(20,4), dpi=300)
ax.plot(day_data.index, day_data['mean_ws'], '-o')
# ax.xaxis.set_ticks_position('none')
# ax.tick_params(axis="x", labelbottom=False)
ax.set_title("每天平均风速")
ax.set_ylabel("$Wind Speed / m.s^{-1}$")
ax.set_xlabel("date")
fig.savefig('day_plot.png') 1 B3 N" c- [- g6 k
5 m1 Y" }4 c/ ?/ H. r; |/ u# A
0 l7 X; m3 I4 m; `! F/ p
0 F' i, U/ L! |0 z1.天维度数据做趋势拆解4 T J a0 O: T! S# E2 _: t
|! a- k8 L' s! _6 J[Python] 纯文本查看 复制代码 # 导入包
from statsmodels.tsa.seasonal import seasonal_decompose
from dateutil.parser import parse
# 乘法模型
result_mul = seasonal_decompose(day_data['mean_ws'], model="multilicative", extrapolate_trend='freq')
result_add = seasonal_decompose(day_data['mean_ws'], model="additive", extrapolate_trend='freq')
font = {'family': 'serif',
'color': 'darkred',
'weight': 'normal',
'size': 16,
}
# 画图
with plt.style.context('classic'):
fig, ax = plt.subplots(ncols=2, nrows=4, figsize=(22, 15), sharex=True, dpi=300)
def plot_decompose(result, ax, index, title, fontdict=font):
ax[0, index].set_title(title, fontdict=fontdict)
result.observed.plot(ax=ax[0, index])
ax[0, index].set_ylabel("Observed")
result.trend.plot(ax=ax[1, index])
ax[1, index].set_ylabel("Trend")
result.seasonal.plot(ax=ax[2, index])
ax[2, index].set_ylabel("Seasonal")
result.resid.plot(ax=ax[3, index])
ax[3, index].set_ylabel("Resid")
plot_decompose(result=result_add, ax=ax, index=0, title="Additive Decompose", fontdict=font)
plot_decompose(result=result_mul, ax=ax, index=1, title="Multiplicative Decompose", fontdict=font)
fig.savefig('decompose.png')
6 G, h$ c, @: G5 X( |' Q: v C3 f
+ H! j* Z2 V( j) C/ ^. x V, } , b2 ]' v% G$ w( G' `
/ U+ w1 y, v! i% W3 S A! V2 |, G
$ M) c; l) R& c4 W" z; f+ Z7 ^
7 z8 j) g( t, y7 z* W1 ]! v1 y
|