oafuncs 0.0.97.3__py3-none-any.whl → 0.0.97.4__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.
- oafuncs/oa_nc.py +1 -1
- {oafuncs-0.0.97.3.dist-info → oafuncs-0.0.97.4.dist-info}/METADATA +78 -7
- {oafuncs-0.0.97.3.dist-info → oafuncs-0.0.97.4.dist-info}/RECORD +9 -9
- /oafuncs/{data_store → _data}/OAFuncs.png +0 -0
- /oafuncs/{data_store → _data}/hycom_3hourly.png +0 -0
- /oafuncs/{_nc_script → _script}/plot_dataset.py +0 -0
- {oafuncs-0.0.97.3.dist-info → oafuncs-0.0.97.4.dist-info}/LICENSE.txt +0 -0
- {oafuncs-0.0.97.3.dist-info → oafuncs-0.0.97.4.dist-info}/WHEEL +0 -0
- {oafuncs-0.0.97.3.dist-info → oafuncs-0.0.97.4.dist-info}/top_level.txt +0 -0
oafuncs/oa_nc.py
CHANGED
@@ -20,7 +20,7 @@ import numpy as np
|
|
20
20
|
import xarray as xr
|
21
21
|
from rich import print
|
22
22
|
|
23
|
-
from .
|
23
|
+
from ._script.plot_dataset import func_plot_dataset
|
24
24
|
|
25
25
|
__all__ = ["get_var", "extract", "save", "merge", "modify", "rename", "check", "convert_longitude", "isel", "draw"]
|
26
26
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: oafuncs
|
3
|
-
Version: 0.0.97.
|
3
|
+
Version: 0.0.97.4
|
4
4
|
Summary: Oceanic and Atmospheric Functions
|
5
5
|
Home-page: https://github.com/Industry-Pays/OAFuncs
|
6
6
|
Author: Kun Liu
|
@@ -86,17 +86,88 @@ oafuncs.oa_help.use('query')
|
|
86
86
|
```
|
87
87
|
|
88
88
|
```shell
|
89
|
-
# 此小板块于
|
89
|
+
# 此小板块于2025/03/16更新,仅为示例,不代表最新情况
|
90
90
|
函数数量:
|
91
|
-
|
91
|
+
62
|
92
92
|
函数列表:
|
93
|
-
[
|
93
|
+
[
|
94
|
+
'MidpointNormalize',
|
95
|
+
'ParallelExecutor',
|
96
|
+
'add_cartopy',
|
97
|
+
'add_gridlines',
|
98
|
+
'add_lonlat_unit',
|
99
|
+
'check',
|
100
|
+
'clear_folder',
|
101
|
+
'contour',
|
102
|
+
'contourf',
|
103
|
+
'convert_longitude',
|
104
|
+
'copy_file',
|
105
|
+
'create',
|
106
|
+
'create_rgbtxt',
|
107
|
+
'data_record',
|
108
|
+
'download',
|
109
|
+
'download5doi',
|
110
|
+
'downloader',
|
111
|
+
'draw',
|
112
|
+
'draw_time_range',
|
113
|
+
'ending_record',
|
114
|
+
'ensure_list',
|
115
|
+
'extract',
|
116
|
+
'fig_minus',
|
117
|
+
'file_size',
|
118
|
+
'find_file',
|
119
|
+
'get',
|
120
|
+
'get_days',
|
121
|
+
'get_time_list',
|
122
|
+
'get_ua',
|
123
|
+
'get_var',
|
124
|
+
'gif',
|
125
|
+
'header_record',
|
126
|
+
'how_to_use',
|
127
|
+
'install_lib',
|
128
|
+
'interp_2d',
|
129
|
+
'interp_along_dim',
|
130
|
+
'isel',
|
131
|
+
'link_file',
|
132
|
+
'log',
|
133
|
+
'make_dir',
|
134
|
+
'make_folder',
|
135
|
+
'mask_shapefile',
|
136
|
+
'mean_size',
|
137
|
+
'merge',
|
138
|
+
'modify',
|
139
|
+
'query',
|
140
|
+
'quiver',
|
141
|
+
'remove',
|
142
|
+
'remove_empty_folder',
|
143
|
+
'rename',
|
144
|
+
'rename_file',
|
145
|
+
'save',
|
146
|
+
'send',
|
147
|
+
'show',
|
148
|
+
'sign_in_love_ocean',
|
149
|
+
'sign_in_meteorological_home',
|
150
|
+
'sign_in_scientific_research',
|
151
|
+
'tail_record',
|
152
|
+
'test',
|
153
|
+
'to_color',
|
154
|
+
'upgrade_lib',
|
155
|
+
'use'
|
156
|
+
]
|
157
|
+
同名函数:
|
158
|
+
----------------------------------------
|
94
159
|
模块全路径:
|
95
160
|
oafuncs.oa_help.query
|
96
|
-
函数提示:
|
97
161
|
|
98
|
-
|
99
|
-
|
162
|
+
Help on function query in module oafuncs.oa_help:
|
163
|
+
|
164
|
+
query()
|
165
|
+
Description:
|
166
|
+
Show the number of functions and the list of functions in the module.
|
167
|
+
Example:
|
168
|
+
query()
|
169
|
+
|
170
|
+
----------------------------------------
|
100
171
|
```
|
101
172
|
|
102
173
|
## Structure
|
@@ -4,11 +4,11 @@ oafuncs/oa_data.py,sha256=32elvoBHibTunDXAK9ptQ-e-xrXxKM4GrPiMqWNv_lE,12169
|
|
4
4
|
oafuncs/oa_draw.py,sha256=QypQp4vJIrbAyFddEVxd9K9Q4d85PRYqYQi9xDUmSZw,11150
|
5
5
|
oafuncs/oa_file.py,sha256=ThMmJ6-pu7U6ssSh44Nd-cCxxJ1Mgd0izzKnDox9LM0,14572
|
6
6
|
oafuncs/oa_help.py,sha256=loyzTbjU_0VpSIBvAEUA_tqxG8MVsO0xFE_2hgQ3zMw,4188
|
7
|
-
oafuncs/oa_nc.py,sha256=
|
7
|
+
oafuncs/oa_nc.py,sha256=7qxmx36ADkd8EGpTzAuFueMiZ2ewp5Sf-eAuRu5n7Xo,20115
|
8
8
|
oafuncs/oa_python.py,sha256=Q-6UGGw_dJff7Ef8i87fsLPoGeHV5jBzfb-7HP4THR0,4018
|
9
|
-
oafuncs/
|
10
|
-
oafuncs/
|
11
|
-
oafuncs/
|
9
|
+
oafuncs/_data/OAFuncs.png,sha256=y1_x-mUP3gFjcy6m8FqfvQO_HgjzPhQKfXjnSHjslZE,3436152
|
10
|
+
oafuncs/_data/hycom_3hourly.png,sha256=azt_uPcXtl_8CSKRLLPCIf5pPrcxMiOzvoFQnwb0zUo,12411415
|
11
|
+
oafuncs/_script/plot_dataset.py,sha256=4PEMXI7NUgLMKwo-33y_AUrmUYS7BzmInCDyFalaZSk,13136
|
12
12
|
oafuncs/oa_down/User_Agent-list.txt,sha256=pazxSip8_lphEBOPHG902zmIBUg8sBKXgmqp_g6j_E4,661062
|
13
13
|
oafuncs/oa_down/__init__.py,sha256=kRX5eTUCbAiz3zTaQM1501paOYS_3fizDN4Pa0mtNUA,585
|
14
14
|
oafuncs/oa_down/hycom_3hourly.py,sha256=lCdbYQd7o_2jMgwmbrClNo5omrj5b5cnWnp6lnXMloQ,65307
|
@@ -30,8 +30,8 @@ oafuncs/oa_tool/__init__.py,sha256=WPrWq_vWWcUVQ32tsjA4jPQiV0LCxhxS0l4vmX43xDg,5
|
|
30
30
|
oafuncs/oa_tool/email.py,sha256=4lJxV_KUzhxgLYfVwYTqp0qxRugD7fvsZkXDe5WkUKo,3052
|
31
31
|
oafuncs/oa_tool/parallel.py,sha256=kYbiIFDB7EoxasmXGSomaEDVUsg9Rfvdgbw93lBOY7o,3770
|
32
32
|
oafuncs/oa_tool/time.py,sha256=n8Ir5QFxJGZlEsOI3frxyQcN92wIvmS7-2SPQHYCg_c,486
|
33
|
-
oafuncs-0.0.97.
|
34
|
-
oafuncs-0.0.97.
|
35
|
-
oafuncs-0.0.97.
|
36
|
-
oafuncs-0.0.97.
|
37
|
-
oafuncs-0.0.97.
|
33
|
+
oafuncs-0.0.97.4.dist-info/LICENSE.txt,sha256=rMtLpVg8sKiSlwClfR9w_Dd_5WubTQgoOzE2PDFxzs4,1074
|
34
|
+
oafuncs-0.0.97.4.dist-info/METADATA,sha256=MOPvUW8n0GkRBxhl-n8-SAGMfT9AZ4TqtD1XNqOZwxc,4158
|
35
|
+
oafuncs-0.0.97.4.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
36
|
+
oafuncs-0.0.97.4.dist-info/top_level.txt,sha256=bgC35QkXbN4EmPHEveg_xGIZ5i9NNPYWqtJqaKqTPsQ,8
|
37
|
+
oafuncs-0.0.97.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|