q1165600785

Results 14 comments of q1165600785

``` import netCDF4 as nf def nf_read(): path_obs=r'./mom6_run_directories/jbrangge3/INPUT/forcing_obc_segment_001.nc' ds = nf.Dataset(path_obs) # print(ds) # variable_names = ds.variables.keys() # 变量名,类似于该数据的属性 # print(len(variable_names), variable_names) print(ds.variables['time']) print(ds.variables['time'][:]) print(ds.variables['time'][0]) if __name__ == '__main__': nf_read()...

> ``` > netCDF4 as nf > > def nf_read(): > path_obs=r'./mom6_run_directories/jbrangge3/INPUT/forcing_obc_segment_001.nc' > ds = nf.Dataset(path_obs) > # print(ds) > # variable_names = ds.variables.keys() # 变量名,类似于该数据的属性 > # print(len(variable_names), variable_names)...

@manishvenu Hello, teacher. If you have time, could you help me find out what the problem is? I only know that there is a problem with the time, but I...

I think it can be achieved, but the workload may be a bit heavy

Does the author have any plans? Implementation of Matlab Based Functions in Python Version of OceanMesh. I really need the Python version of the grid generation program

Thank you for your selfless dedication and hard work, big shot

Thank you for your response, I hope to contribute my own efforts in the future use

> 谢谢你的提示! 我马上就要有一本介绍新功能的示例笔记本了。 > > @navidcy – 我有事要跟你讲。我们想在示例笔记本中演示的新功能是 a) 潮汐、b) 旋转网格和 c) 用户可以输入自己的网格 > > 使用现有的 Tasman 示例,我们可以添加几行来生成潮汐力以单击 a。要单击 b 和 c,我正在创建一个示例旋转网格供用户输入。用户输入的网格和生成此工具箱网格之间只有一个小差异 - 因此我们在现有笔记本中添加一条注释建议来解释这一点,而不是创建 2 个单独的笔记本笔记本。 > > 这对你有用吗?当我有的时候,我会上传笔记本供大家评论。 Yes,...

@ashjbarnes Doctor, I submitted this PR. I just added the download function, but it does not match the set_up era5 function. Can I modify the set_up era5 function or must...