oafuncs 0.0.81__py2.py3-none-any.whl → 0.0.83__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. oafuncs/data_store/OAFuncs.png +0 -0
  2. oafuncs/oa_cmap.py +1 -0
  3. oafuncs/oa_data.py +107 -28
  4. oafuncs/oa_down/__init__.py +5 -4
  5. oafuncs/oa_down/hycom_3hourly.py +152 -35
  6. oafuncs/oa_down/user_agent.py +34 -0
  7. oafuncs/oa_draw.py +165 -103
  8. oafuncs/oa_file.py +66 -53
  9. oafuncs/oa_help.py +19 -16
  10. oafuncs/oa_nc.py +82 -114
  11. oafuncs-0.0.83.dist-info/METADATA +91 -0
  12. oafuncs-0.0.83.dist-info/RECORD +26 -0
  13. oafuncs/oa_down/test.py +0 -151
  14. oafuncs/oa_s/__init__.py +0 -23
  15. oafuncs/oa_s/oa_cmap.py +0 -163
  16. oafuncs/oa_s/oa_data.py +0 -187
  17. oafuncs/oa_s/oa_draw.py +0 -451
  18. oafuncs/oa_s/oa_file.py +0 -332
  19. oafuncs/oa_s/oa_help.py +0 -39
  20. oafuncs/oa_s/oa_nc.py +0 -410
  21. oafuncs/oa_s/oa_python.py +0 -107
  22. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/__init__.py" +0 -26
  23. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_cmap.py" +0 -163
  24. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_data.py" +0 -187
  25. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/__init__.py" +0 -20
  26. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/hycom_3hourly.py" +0 -1176
  27. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/literature.py" +0 -332
  28. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/test_ua.py" +0 -151
  29. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_draw.py" +0 -451
  30. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_file.py" +0 -332
  31. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_help.py" +0 -39
  32. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_nc.py" +0 -410
  33. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_python.py" +0 -107
  34. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/__init__.py" +0 -21
  35. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/meteorological.py" +0 -168
  36. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/ocean.py" +0 -158
  37. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/scientific.py" +0 -139
  38. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_tool/__init__.py" +0 -18
  39. oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_tool/email.py" +0 -114
  40. oafuncs-0.0.81.dist-info/METADATA +0 -918
  41. oafuncs-0.0.81.dist-info/RECORD +0 -51
  42. {oafuncs-0.0.81.dist-info → oafuncs-0.0.83.dist-info}/LICENSE.txt +0 -0
  43. {oafuncs-0.0.81.dist-info → oafuncs-0.0.83.dist-info}/WHEEL +0 -0
  44. {oafuncs-0.0.81.dist-info → oafuncs-0.0.83.dist-info}/top_level.txt +0 -0
@@ -1,163 +0,0 @@
1
- #!/usr/bin/env python
2
- # coding=utf-8
3
- """
4
- Author: Liu Kun && 16031215@qq.com
5
- Date: 2024-09-17 16:55:11
6
- LastEditors: Liu Kun && 16031215@qq.com
7
- LastEditTime: 2024-11-21 13:14:24
8
- FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_cmap.py
9
- Description:
10
- EditPlatform: vscode
11
- ComputerInfo: XPS 15 9510
12
- SystemInfo: Windows 11
13
- Python Version: 3.11
14
- """
15
-
16
- import matplotlib as mpl
17
- import matplotlib.pyplot as plt
18
- import numpy as np
19
-
20
- __all__ = ["show", "cmap2colors", "create_cmap", "create_cmap_rgbtxt", "choose_cmap"]
21
-
22
- # ** 将cmap用填色图可视化(官网摘抄函数)
23
- def show(colormaps: list):
24
- """
25
- Helper function to plot data with associated colormap.
26
- example:
27
- cmap = ListedColormap(["darkorange", "gold", "lawngreen", "lightseagreen"])
28
- show([cmap])
29
- """
30
- np.random.seed(19680801)
31
- data = np.random.randn(30, 30)
32
- n = len(colormaps)
33
- fig, axs = plt.subplots(1, n, figsize=(n * 2 + 2, 3), constrained_layout=True, squeeze=False)
34
- for [ax, cmap] in zip(axs.flat, colormaps):
35
- psm = ax.pcolormesh(data, cmap=cmap, rasterized=True, vmin=-4, vmax=4)
36
- fig.colorbar(psm, ax=ax)
37
- plt.show()
38
-
39
-
40
- # ** 将cmap转为list,即多个颜色的列表
41
- def cmap2colors(cmap, n=256):
42
- """
43
- cmap : cmap名称
44
- n : 提取颜色数量
45
- return : 提取的颜色列表
46
- example : out_colors = cmap2colors('viridis', 256)
47
- """
48
- c_map = mpl.colormaps.get_cmap(cmap)
49
- out_colors = [c_map(i) for i in np.linspace(0, 1, n)]
50
- return out_colors
51
-
52
-
53
- # ** 自制cmap,多色,可带位置
54
- def create_cmap(colors: list, nodes=None, under=None, over=None): # 利用颜色快速配色
55
- """
56
- func : 自制cmap,自动确定颜色位置(等比例)
57
- description : colors可以是颜色名称,也可以是十六进制颜色代码
58
- param {*} colors 颜色
59
- param {*} nodes 颜色位置,默认不提供,等间距
60
- return {*} cmap
61
- example : cmap = create_cmap(['#C2B7F3','#B3BBF2','#B0CBF1','#ACDCF0','#A8EEED'])
62
- cmap = create_cmap(['aliceblue','skyblue','deepskyblue'],[0.0,0.5,1.0])
63
- """
64
- if nodes is None: # 采取自动分配比例
65
- cmap_color = mpl.colors.LinearSegmentedColormap.from_list("mycmap", colors)
66
- else: # 按照提供比例分配
67
- cmap_color = mpl.colors.LinearSegmentedColormap.from_list("mycmap", list(zip(nodes, colors)))
68
- if under is not None:
69
- cmap_color.set_under(under)
70
- if over is not None:
71
- cmap_color.set_over(over)
72
- return cmap_color
73
-
74
-
75
- # ** 根据RGB的txt文档制作色卡(利用Grads调色盘)
76
- def create_cmap_rgbtxt(rgbtxt_file,split_mark=','): # 根据RGB的txt文档制作色卡/根据rgb值制作
77
- """
78
- func : 根据RGB的txt文档制作色卡
79
- description : rgbtxt_file='E:/python/colorbar/test.txt'
80
- param {*} rgbtxt_file txt文件路径
81
- return {*} camp
82
- example : cmap=create_cmap_rgbtxt(path,split_mark=',') #
83
-
84
- txt example : 251,251,253
85
- 225,125,25
86
- 250,205,255
87
- """
88
- with open(rgbtxt_file) as fid:
89
- data = fid.readlines()
90
- n = len(data)
91
- rgb = np.zeros((n, 3))
92
- for i in np.arange(n):
93
- rgb[i][0] = data[i].split(split_mark)[0]
94
- rgb[i][1] = data[i].split(split_mark)[1]
95
- rgb[i][2] = data[i].split(split_mark)[2]
96
- max_rgb = np.max(rgb)
97
- if max_rgb > 2: # 如果rgb值大于2,则认为是0-255的值,需要归一化
98
- rgb = rgb / 255.0
99
- icmap = mpl.colors.ListedColormap(rgb, name="my_color")
100
- return icmap
101
-
102
-
103
- def choose_cmap(cmap_name=None, query=False):
104
- """
105
- description: Choosing a colormap from the list of available colormaps or a custom colormap
106
- param {*} cmap_name:
107
- param {*} query:
108
- return {*}
109
- """
110
-
111
- my_cmap_dict = {
112
- "diverging_1": create_cmap(["#4e00b3", "#0000FF", "#00c0ff", "#a1d3ff", "#DCDCDC", "#FFD39B", "#FF8247", "#FF0000", "#FF5F9E"]),
113
- "cold_1": create_cmap(["#4e00b3", "#0000FF", "#00c0ff", "#a1d3ff", "#DCDCDC"]),
114
- "warm_1": create_cmap(["#DCDCDC", "#FFD39B", "#FF8247", "#FF0000", "#FF5F9E"]),
115
- # "land_1": create_custom(["#3E6436", "#678A59", "#91A176", "#B8A87D", "#D9CBB2"], under="#A6CEE3", over="#FFFFFF"), # 陆地颜色从深绿到浅棕,表示从植被到沙地的递减
116
- # "ocean_1": create_custom(["#126697", "#2D88B3", "#4EA1C9", "#78B9D8", "#A6CEE3"], under="#8470FF", over="#3E6436"), # 海洋颜色从深蓝到浅蓝,表示从深海到浅海的递减
117
- # "ocean_land_1": create_custom(
118
- # [
119
- # "#126697", # 深蓝(深海)
120
- # "#2D88B3", # 蓝
121
- # "#4EA1C9", # 蓝绿
122
- # "#78B9D8", # 浅蓝(浅海)
123
- # "#A6CEE3", # 浅蓝(近岸)
124
- # "#AAAAAA", # 灰色(0值,海平面)
125
- # "#D9CBB2", # 沙质土壤色(陆地开始)
126
- # "#B8A87D", # 浅棕
127
- # "#91A176", # 浅绿
128
- # "#678A59", # 中绿
129
- # "#3E6436", # 深绿(高山)
130
- # ]
131
- # ),
132
- "colorful_1": create_cmap(["#6d00db", "#9800cb", "#F2003C", "#ff4500", "#ff7f00", "#FE28A2", "#FFC0CB", "#DDA0DD", "#40E0D0", "#1a66f2", "#00f7fb", "#8fff88", "#E3FF00"]),
133
- }
134
- if query:
135
- for key, _ in my_cmap_dict.items():
136
- print(key)
137
-
138
- if cmap_name in my_cmap_dict:
139
- return my_cmap_dict[cmap_name]
140
- else:
141
- try:
142
- return mpl.colormaps.get_cmap(cmap_name)
143
- except ValueError:
144
- raise ValueError(f"Unknown cmap name: {cmap_name}")
145
-
146
-
147
- if __name__ == "__main__":
148
- # ** 测试自制cmap
149
- colors = ["#C2B7F3", "#B3BBF2", "#B0CBF1", "#ACDCF0", "#A8EEED"]
150
- nodes = [0.0, 0.2, 0.4, 0.6, 1.0]
151
- c_map = create_cmap(colors, nodes)
152
- show([c_map])
153
-
154
- # ** 测试自制diverging型cmap
155
- diverging_cmap = create_cmap(["#4e00b3", "#0000FF", "#00c0ff", "#a1d3ff", "#DCDCDC", "#FFD39B", "#FF8247", "#FF0000", "#FF5F9E"])
156
- show([diverging_cmap])
157
-
158
- # ** 测试根据RGB的txt文档制作色卡
159
- file_path = "E:/python/colorbar/test.txt"
160
- cmap_rgb = create_cmap_rgbtxt(file_path)
161
-
162
- # ** 测试将cmap转为list
163
- out_colors = cmap2colors("viridis", 256)
@@ -1,187 +0,0 @@
1
- #!/usr/bin/env python
2
- # coding=utf-8
3
- '''
4
- Author: Liu Kun && 16031215@qq.com
5
- Date: 2024-09-17 17:12:47
6
- LastEditors: Liu Kun && 16031215@qq.com
7
- LastEditTime: 2024-11-21 13:13:20
8
- FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_data.py
9
- Description:
10
- EditPlatform: vscode
11
- ComputerInfo: XPS 15 9510
12
- SystemInfo: Windows 11
13
- Python Version: 3.11
14
- '''
15
-
16
-
17
- import multiprocessing as mp
18
- from concurrent.futures import ThreadPoolExecutor
19
-
20
- import numpy as np
21
- from scipy.interpolate import griddata
22
-
23
- __all__ = ['interp_2d', 'interp_2d_parallel']
24
-
25
- # ** 高维插值函数,插值最后两个维度
26
-
27
-
28
- def interp_2d(target_x, target_y, origin_x, origin_y, data, method='linear'):
29
- """
30
- 高维插值函数,默认插值最后两个维度,传输数据前请确保数据的维度正确
31
- 参数:
32
- target_y (array-like): 目标经度网格 1D 或 2D
33
- target_x (array-like): 目标纬度网格 1D 或 2D
34
- origin_y (array-like): 初始经度网格 1D 或 2D
35
- origin_x (array-like): 初始纬度网格 1D 或 2D
36
- data (array-like): 数据 (*, lat, lon) 2D, 3D, 4D
37
- method (str, optional): 插值方法,可选 'linear', 'nearest', 'cubic' 等,默认为 'linear'
38
- 返回:
39
- array-like: 插值结果
40
- """
41
-
42
- # 确保目标网格和初始网格都是二维的
43
- if len(target_y.shape) == 1:
44
- target_x, target_y = np.meshgrid(target_x, target_y)
45
- if len(origin_y.shape) == 1:
46
- origin_x, origin_y = np.meshgrid(origin_x, origin_y)
47
-
48
- dims = data.shape
49
- len_dims = len(dims)
50
- # print(dims[-2:])
51
- # 根据经纬度网格判断输入数据的形状是否匹配
52
-
53
- if origin_x.shape != dims[-2:] or origin_y.shape != dims[-2:]:
54
- print(origin_x.shape, dims[-2:])
55
- raise ValueError('Shape of data does not match shape of origin_x or origin_y.')
56
-
57
- # 将目标网格展平成一维数组
58
- target_points = np.column_stack((np.ravel(target_y), np.ravel(target_x)))
59
-
60
- # 将初始网格展平成一维数组
61
- origin_points = np.column_stack((np.ravel(origin_y), np.ravel(origin_x)))
62
-
63
- # 进行插值
64
- if len_dims == 2:
65
- interpolated_data = griddata(origin_points, np.ravel(data), target_points, method=method)
66
- interpolated_data = np.reshape(interpolated_data, target_y.shape)
67
- elif len_dims == 3:
68
- interpolated_data = []
69
- for i in range(dims[0]):
70
- dt = griddata(origin_points, np.ravel(data[i, :, :]), target_points, method=method)
71
- interpolated_data.append(np.reshape(dt, target_y.shape))
72
- print(f'Interpolating {i+1}/{dims[0]}...')
73
- interpolated_data = np.array(interpolated_data)
74
- elif len_dims == 4:
75
- interpolated_data = []
76
- for i in range(dims[0]):
77
- interpolated_data.append([])
78
- for j in range(dims[1]):
79
- dt = griddata(origin_points, np.ravel(data[i, j, :, :]), target_points, method=method)
80
- interpolated_data[i].append(np.reshape(dt, target_y.shape))
81
- print(f'\rInterpolating {i*dims[1]+j+1}/{dims[0]*dims[1]}...', end='')
82
- print('\n')
83
- interpolated_data = np.array(interpolated_data)
84
-
85
- return interpolated_data
86
-
87
-
88
- # ** 高维插值函数,插值最后两个维度,使用多线程进行插值
89
- # 在本地电脑上可以提速三倍左右,超算上暂时无法加速
90
- def interp_2d_parallel(target_x, target_y, origin_x, origin_y, data, method='linear'):
91
- '''
92
- param {*} target_x 目标经度网格 1D 或 2D
93
- param {*} target_y 目标纬度网格 1D 或 2D
94
- param {*} origin_x 初始经度网格 1D 或 2D
95
- param {*} origin_y 初始纬度网格 1D 或 2D
96
- param {*} data 数据 (*, lat, lon) 2D, 3D, 4D
97
- param {*} method 插值方法,可选 'linear', 'nearest', 'cubic' 等,默认为 'linear'
98
- return {*} 插值结果
99
- description : 高维插值函数,默认插值最后两个维度,传输数据前请确保数据的维度正确
100
- example : interpolated_data = interp_2d_parallel(target_x, target_y, origin_x, origin_y, data, method='linear')
101
- '''
102
- def interp_single2d(target_y, target_x, origin_y, origin_x, data, method='linear'):
103
- target_points = np.column_stack((np.ravel(target_y), np.ravel(target_x)))
104
- origin_points = np.column_stack((np.ravel(origin_y), np.ravel(origin_x)))
105
-
106
- dt = griddata(origin_points, np.ravel(data[:, :]), target_points, method=method)
107
- return np.reshape(dt, target_y.shape)
108
-
109
- def interp_single3d(i, target_y, target_x, origin_y, origin_x, data, method='linear'):
110
- target_points = np.column_stack((np.ravel(target_y), np.ravel(target_x)))
111
- origin_points = np.column_stack((np.ravel(origin_y), np.ravel(origin_x)))
112
-
113
- dt = griddata(origin_points, np.ravel(data[i, :, :]), target_points, method=method)
114
- return np.reshape(dt, target_y.shape)
115
-
116
- def interp_single4d(i, j, target_y, target_x, origin_y, origin_x, data, method='linear'):
117
- target_points = np.column_stack((np.ravel(target_y), np.ravel(target_x)))
118
- origin_points = np.column_stack((np.ravel(origin_y), np.ravel(origin_x)))
119
-
120
- dt = griddata(origin_points, np.ravel(data[i, j, :, :]), target_points, method=method)
121
- return np.reshape(dt, target_y.shape)
122
-
123
- if len(target_y.shape) == 1:
124
- target_x, target_y = np.meshgrid(target_x, target_y)
125
- if len(origin_y.shape) == 1:
126
- origin_x, origin_y = np.meshgrid(origin_x, origin_y)
127
-
128
- dims = data.shape
129
- len_dims = len(dims)
130
-
131
- if origin_x.shape != dims[-2:] or origin_y.shape != dims[-2:]:
132
- raise ValueError('数据形状与 origin_x 或 origin_y 的形状不匹配.')
133
-
134
- interpolated_data = []
135
-
136
- # 使用多线程进行插值
137
- with ThreadPoolExecutor(max_workers=mp.cpu_count()-2) as executor:
138
- print(f'Using {mp.cpu_count()-2} threads...')
139
- if len_dims == 2:
140
- interpolated_data = list(executor.map(interp_single2d, [target_y], [target_x], [origin_y], [origin_x], [data], [method]))
141
- elif len_dims == 3:
142
- interpolated_data = list(executor.map(interp_single3d, [i for i in range(dims[0])], [target_y]*dims[0], [target_x]*dims[0], [origin_y]*dims[0], [origin_x]*dims[0], [data]*dims[0], [method]*dims[0]))
143
- elif len_dims == 4:
144
- interpolated_data = list(executor.map(interp_single4d, [i for i in range(dims[0]) for j in range(dims[1])], [j for i in range(dims[0]) for j in range(dims[1])], [target_y]*dims[0]*dims[1], [target_x]*dims[0]*dims[1], [origin_y]*dims[0]*dims[1], [origin_x]*dims[0]*dims[1], [data]*dims[0]*dims[1], [method]*dims[0]*dims[1]))
145
- interpolated_data = np.array(interpolated_data).reshape(dims[0], dims[1], target_y.shape[0], target_x.shape[1])
146
-
147
- interpolated_data = np.array(interpolated_data)
148
-
149
- return interpolated_data
150
-
151
-
152
- if __name__ == '__main__':
153
- import time
154
-
155
- import matplotlib.pyplot as plt
156
-
157
- # 测试数据
158
- origin_x = np.linspace(0, 10, 11)
159
- origin_y = np.linspace(0, 10, 11)
160
- target_x = np.linspace(0, 10, 101)
161
- target_y = np.linspace(0, 10, 101)
162
- data = np.random.rand(11, 11)
163
-
164
- # 高维插值
165
- origin_x = np.linspace(0, 10, 11)
166
- origin_y = np.linspace(0, 10, 11)
167
- target_x = np.linspace(0, 10, 101)
168
- target_y = np.linspace(0, 10, 101)
169
- data = np.random.rand(10, 10, 11, 11)
170
-
171
- start = time.time()
172
- interpolated_data = interp_2d(target_x, target_y, origin_x, origin_y, data)
173
- print(f'Interpolation time: {time.time()-start:.2f}s')
174
-
175
- print(interpolated_data.shape)
176
-
177
- # 高维插值多线程
178
- start = time.time()
179
- interpolated_data = interp_2d_parallel(target_x, target_y, origin_x, origin_y, data)
180
- print(f'Interpolation time: {time.time()-start:.2f}s')
181
-
182
- print(interpolated_data.shape)
183
- print(interpolated_data[0, 0, :, :].shape)
184
- plt.figure()
185
- plt.contourf(target_x, target_y, interpolated_data[0, 0, :, :])
186
- plt.colorbar()
187
- plt.show()
@@ -1,20 +0,0 @@
1
- #!/usr/bin/env python
2
- # coding=utf-8
3
- '''
4
- Author: Liu Kun && 16031215@qq.com
5
- Date: 2024-09-17 16:09:20
6
- LastEditors: Liu Kun && 16031215@qq.com
7
- LastEditTime: 2024-12-01 19:49:40
8
- FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_down\\__init__.py
9
- Description:
10
- EditPlatform: vscode
11
- ComputerInfo: XPS 15 9510
12
- SystemInfo: Windows 11
13
- Python Version: 3.11
14
- '''
15
-
16
- # from .love_ocean import sign as love_ocean
17
- # from .meteorological_home import sign as meteorological_home
18
-
19
- from .hycom_3hourly import *
20
- from .literature import *