from netCDF4 import Dataset
nc_obj = Dataset ( "2.nc" )
# 查看nc文件有些啥东西
print ( nc_obj )
<class 'netCDF4._netCDF4.Dataset'>
root group (NETCDF3_64BIT_OFFSET data model, file format NETCDF3):Conventions: CF-1.6history: 2019-12-01 10:46:48 GMT by grib_to_netcdf-2.14.1: grib_to_netcdf /data/data03/scratch/a4/47/_mars-atls05-a562cefde8a29a7288fa0b8b7f9413f7-H8cgHC.grib -o /data/data01/scratch/77/2a/_grib2netcdf-atls12-95e2cf679cd58ee9b4db4dd119a05a8d-xCPWwr.nc -utimedimensions(sizes): longitude(411), latitude(181), time(249)variables(dimensions): float32 [4mlongitude[0m(longitude), float32 [4mlatitude[0m(latitude), int32 [4mtime[0m(time), int16 [4mu10[0m(time,latitude,longitude), int16 [4mv10[0m(time,latitude,longitude), int16 [4mt2m[0m(time,latitude,longitude), int16 [4md2m[0m(time,latitude,longitude), int16 [4mal[0m(time,latitude,longitude), int16 [4mfg10[0m(time,latitude,longitude), int16 [4mbld[0m(time,latitude,longitude), int16 [4mblh[0m(time,latitude,longitude)groups:
# 查看nc文件中的变量
print ( nc_obj.variables.keys() )
odict_keys(['longitude', 'latitude', 'time', 'u10', 'v10', 't2m', 'd2m', 'al', 'fg10', 'bld', 'blh'])

这里我们就发现nc_obj.variables类似于python中的字典结构,所以选取变量就简单多了

# 查看每个变量的信息
for i in nc_obj.variables.keys ():print("---------------------------------")print ( nc_obj.variables[i] )
---------------------------------
<class 'netCDF4._netCDF4.Variable'>
float32 longitude(longitude)units: degrees_eastlong_name: longitude
unlimited dimensions:
current shape = (411,)
filling on, default _FillValue of 9.969209968386869e+36 used---------------------------------
<class 'netCDF4._netCDF4.Variable'>
float32 latitude(latitude)units: degrees_northlong_name: latitude
unlimited dimensions:
current shape = (181,)
filling on, default _FillValue of 9.969209968386869e+36 used---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int32 time(time)units: hours since 1900-01-01 00:00:00.0long_name: timecalendar: gregorian
unlimited dimensions: time
current shape = (249,)
filling on, default _FillValue of -2147483647 used---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int16 u10(time, latitude, longitude)scale_factor: 0.0009272951431673736add_offset: -1.7788449952278338_FillValue: -32767missing_value: -32767units: m s**-1long_name: 10 metre U wind component
unlimited dimensions: time
current shape = (249, 181, 411)
filling on
---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int16 v10(time, latitude, longitude)scale_factor: 0.0010392589789417878add_offset: 0.7994910516628728_FillValue: -32767missing_value: -32767units: m s**-1long_name: 10 metre V wind component
unlimited dimensions: time
current shape = (249, 181, 411)
filling on
---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int16 t2m(time, latitude, longitude)scale_factor: 0.001968216609007461add_offset: 259.7936554790978_FillValue: -32767missing_value: -32767units: Klong_name: 2 metre temperature
unlimited dimensions: time
current shape = (249, 181, 411)
filling on
---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int16 d2m(time, latitude, longitude)scale_factor: 0.002020472251113585add_offset: 239.82672566475335_FillValue: -32767missing_value: -32767units: Klong_name: 2 metre dewpoint temperature
unlimited dimensions: time
current shape = (249, 181, 411)
filling on
---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int16 al(time, latitude, longitude)scale_factor: 6.4676328535098725e-06add_offset: 0.28191839132090235_FillValue: -32767missing_value: -32767units: (0 - 1)long_name: Albedostandard_name: surface_albedo
unlimited dimensions: time
current shape = (249, 181, 411)
filling on
---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int16 fg10(time, latitude, longitude)scale_factor: 0.0006845262936044095add_offset: 22.73808793886049_FillValue: -32767missing_value: -32767units: m s**-1long_name: 10 metre wind gust since previous post-processing
unlimited dimensions: time
current shape = (249, 181, 411)
filling on
---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int16 bld(time, latitude, longitude)scale_factor: 87.75322623464827add_offset: 2875361.3594556083_FillValue: -32767missing_value: -32767units: J m**-2long_name: Boundary layer dissipationstandard_name: kinetic_energy_dissipation_in_atmosphere_boundary_layer
unlimited dimensions: time
current shape = (249, 181, 411)
filling on
---------------------------------
<class 'netCDF4._netCDF4.Variable'>
int16 blh(time, latitude, longitude)scale_factor: 0.1570381308592232add_offset: 5152.502007763336_FillValue: -32767missing_value: -32767units: mlong_name: Boundary layer height
unlimited dimensions: time
current shape = (249, 181, 411)
filling on
# 查看每个变量的所有属性
for i in nc_obj.variables.keys ():print ( nc_obj.variables[i].ncattrs () )
print ( '---------------------------------------' )
['units', 'long_name']
['units', 'long_name']
['units', 'long_name', 'calendar']
['scale_factor', 'add_offset', '_FillValue', 'missing_value', 'units', 'long_name']
['scale_factor', 'add_offset', '_FillValue', 'missing_value', 'units', 'long_name']
['scale_factor', 'add_offset', '_FillValue', 'missing_value', 'units', 'long_name']
['scale_factor', 'add_offset', '_FillValue', 'missing_value', 'units', 'long_name']
['scale_factor', 'add_offset', '_FillValue', 'missing_value', 'units', 'long_name', 'standard_name']
['scale_factor', 'add_offset', '_FillValue', 'missing_value', 'units', 'long_name']
['scale_factor', 'add_offset', '_FillValue', 'missing_value', 'units', 'long_name', 'standard_name']
['scale_factor', 'add_offset', '_FillValue', 'missing_value', 'units', 'long_name']
---------------------------------------
# 查看每个变量的单位
for i in nc_obj.variables.keys ():print ( nc_obj.variables[i].units )
degrees_east
degrees_north
hours since 1900-01-01 00:00:00.0
m s**-1
m s**-1
K
K
(0 - 1)
m s**-1
J m**-2
m
# 查看每个变量的维数
for i in nc_obj.variables.keys ():print ( nc_obj.variables[i].ndim )
1
1
1
3
3
3
3
3
3
3
3
# 查看每个变量的形状(维度)
for i in nc_obj.variables.keys ():print ( nc_obj.variables[i].shape )
(411,)
(181,)
(249,)
(249, 181, 411)
(249, 181, 411)
(249, 181, 411)
(249, 181, 411)
(249, 181, 411)
(249, 181, 411)
(249, 181, 411)
(249, 181, 411)
#取出变量blh  10 metre U wind component(10米U风分量)
u10=nc_obj['u10'][:]
#print(u10)
import numpy as np
np.max(u10),np.min(u10)
(23.986977852820807, -20.62426418981837)
# 读取数据值
print ( "读取数据值" )
for i in nc_obj.variables.keys ():print ( '--------------------------------------------------------------------------------------------------------------' )print ( nc_obj.variables[i][:5] )
读取数据值
--------------------------------------------------------------------------------------------------------------
[-180.   -179.25 -178.5  -177.75 -177.  ]
--------------------------------------------------------------------------------------------------------------
[45.   44.25 43.5  42.75 42.  ]
--------------------------------------------------------------------------------------------------------------
[1048224       0       0       0       0]
--------------------------------------------------------------------------------------------------------------
[[[ 1.43330538  1.71705769  2.04624747 ...  4.2355913   4.506361494.75673117][ 1.15326225  1.4286689   1.80515073 ...  4.35706697  4.170680644.23466401][ 0.90011067  1.11802503  1.46576071 ...  4.15306204  3.707033073.77101644]...[ 3.95740276  3.97873055  4.00005834 ...  3.73763381  3.715378733.69219635][ 5.48002139  5.48929434  5.50042188 ...  3.63934053  3.685705283.73207004][ 1.57425424  1.57425424  1.57425424 ...  1.57425424  1.574254241.57425424]][[-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ]...[-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ]][[-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ]...[-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ]][[-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ]...[-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ]][[-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ]...[-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ][-1.778845   -1.778845   -1.778845   ... -1.778845   -1.778845-1.778845  ]]]
--------------------------------------------------------------------------------------------------------------
[[[ 7.71368104  7.07141899  6.28989624 ...  0.47836003  1.659997491.97489296][ 7.42996334  6.8178398   6.22857996 ...  1.25260797  1.617387871.50203012][ 7.1192249   6.54971098  5.99994298 ...  1.65064416  1.755609311.65687971]...[ 1.71715673  1.81276856  1.90630186 ... -2.03352892 -1.97636968-1.91817118][-0.29173088 -0.24496422 -0.19715831 ... -4.00708173 -3.95511878-3.90107731][-5.88190492 -5.88190492 -5.88190492 ... -5.88190492 -5.88190492-5.88190492]][[ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105]...[ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105]][[ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105]...[ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105]][[ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105]...[ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105]][[ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105]...[ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105][ 0.79949105  0.79949105  0.79949105 ...  0.79949105  0.799491050.79949105]]]
--------------------------------------------------------------------------------------------------------------
[[[287.71674451 287.55338253 287.31719654 ... 298.4513979  298.93164275298.32936847][288.24619478 288.04346847 287.99229484 ... 299.40598295 298.54587229296.91815716][289.0787504  288.74809001 288.76383575 ... 298.57539554 297.1012013295.42231254]...[210.20640623 210.29300776 210.37960929 ... 206.41758926 206.42546213206.43530321][209.65530558 209.69663813 209.7399389  ... 209.16521965 209.14160105209.11995066][211.01927969 211.01927969 211.01927969 ... 211.01927969 211.01927969211.01927969]][[259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548]...[259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548]][[259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548]...[259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548]][[259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548]...[259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548]][[259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548]...[259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548][259.79365548 259.79365548 259.79365548 ... 259.79365548 259.79365548259.79365548]]]
--------------------------------------------------------------------------------------------------------------
[[[286.98656848 286.97646612 286.80674645 ... 292.86412226 293.18739782293.72282296][287.56644401 287.44319521 287.50785032 ... 294.20571583 294.82802128294.75528428][288.46757464 288.13419672 288.25542505 ... 296.15345108 295.95948575295.05835512]...[208.36797271 208.44070972 208.51142624 ... 203.09454014 203.07231494203.04604881][206.20606741 206.24445638 206.27880441 ... 205.11097145 205.08874625205.06854153][206.927376   206.927376   206.927376   ... 206.927376   206.927376206.927376  ]][[239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566]...[239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566]][[239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566]...[239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566]][[239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566]...[239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566]][[239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566]...[239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566][239.82672566 239.82672566 239.82672566 ... 239.82672566 239.82672566239.82672566]]]
--------------------------------------------------------------------------------------------------------------
[[[0.06999993 0.06999993 0.06999993 ... 0.14873043 0.1362479  0.1005401 ][0.06999993 0.06999993 0.06999993 ... 0.14163543 0.13052404 0.10588236][0.06999993 0.06999993 0.06999993 ... 0.13123548 0.11375994 0.10171074]...[0.4785603  0.47855383 0.4785409  ... 0.47932995 0.47932348 0.47931055][0.47885781 0.47885134 0.47884488 ... 0.47922    0.47920706 0.47920706][0.47930408 0.47930408 0.47930408 ... 0.47930408 0.47930408 0.47930408]][[0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839]...[0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839]][[0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839]...[0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839]][[0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839]...[0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839]][[0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839]...[0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839][0.28191839 0.28191839 0.28191839 ... 0.28191839 0.28191839 0.28191839]]]
--------------------------------------------------------------------------------------------------------------
[[[-- -- -- ... -- -- --][-- -- -- ... -- -- --][-- -- -- ... -- -- --]...[-- -- -- ... -- -- --][-- -- -- ... -- -- --][-- -- -- ... -- -- --]][[22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049]...[22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049]][[22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049]...[22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049]][[22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049]...[22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049]][[22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049]...[22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049][22.73808793886049 22.73808793886049 22.73808793886049 ...22.73808793886049 22.73808793886049 22.73808793886049]]]
--------------------------------------------------------------------------------------------------------------
[[[-- -- -- ... -- -- --][-- -- -- ... -- -- --][-- -- -- ... -- -- --]...[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]][[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]...[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]][[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]...[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]][[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]...[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]][[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]...[2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083][2875361.3594556083 2875361.3594556083 2875361.3594556083 ...2875361.3594556083 2875361.3594556083 2875361.3594556083]]]
--------------------------------------------------------------------------------------------------------------
[[[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]...[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]][[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]...[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]][[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]...[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]][[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]...[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]][[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]...[5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776][5152.50200776 5152.50200776 5152.50200776 ... 5152.502007765152.50200776 5152.50200776]]]

初探netCDF4——ECMWF学习笔记相关推荐

  1. ASP.Net学习笔记014--ViewState初探3

    ASP.Net学习笔记014--ViewState初探3 为什么禁用了viewstate,还能修改label2的值 因为:viewstate只是记录label2的值,并不影响给label2进行设置 - ...

  2. ASP.Net学习笔记013--ViewState初探2

    ASP.Net学习笔记013--ViewState初探2 上课讲的viewstate,由于需要跟后台服务器进行传值,需要封装很多隐藏列,比如100条数据,就会有100个viewstate 如果用在一些 ...

  3. SilverLight学习笔记--Silverlight之数据绑定初探

    数据绑定(Data Binding)是用户界面UI和业务对象或其它数据提供者(data provider)的连接.用户界面对象称为目标,数据提供者成为数据源.   数据绑定帮助隔离应用程序的用户界面层 ...

  4. Webpack4 学习笔记一初探Webpack

    前言 此内容是个人学习笔记,以便日后翻阅.非教程,如有错误还请指出 Webpack 打包文件 支持JS模块化 模式: production(0配置默认), development(生产环境) 更详细的 ...

  5. 利用计算机技术实现对文本篇章,自然语言处理NLP学习笔记一:概念与模型初探...

    前言 先来看一些demo,来一些直观的了解. 自然语言处理: 可以做中文分词,词性分析,文本摘要等,为后面的知识图谱做准备. 知识图谱: 还有2个实际应用的例子,加深对NLP的理解 九歌机器人: 微软 ...

  6. qml学习笔记(二):可视化元素基类Item详解(上半场anchors等等)

    原博主博客地址:http://blog.csdn.net/qq21497936 本文章博客地址:http://blog.csdn.net/qq21497936/article/details/7851 ...

  7. js/jquery学习笔记

    javascript简介 JavaScript是一种基于对象和事件驱动并具有相对安全性的客户端脚本语言. 不同于服务器端脚本语言,例如PHP与ASP,JavaScript是客户端脚本语言,也就是说Ja ...

  8. OpenCV学习笔记(四十一)——再看基础数据结构core OpenCV学习笔记(四十二)——Mat数据操作之普通青年、文艺青年、暴力青年 OpenCV学习笔记(四十三)——存取像素值操作汇总co

    OpenCV学习笔记(四十一)--再看基础数据结构core 记得我在OpenCV学习笔记(四)--新版本的数据结构core里面讲过新版本的数据结构了,可是我再看这部分的时候,我发现我当时实在是看得太马 ...

  9. OpenCV学习笔记(二十一)——绘图函数core OpenCV学习笔记(二十二)——粒子滤波跟踪方法 OpenCV学习笔记(二十三)——OpenCV的GUI之凤凰涅槃Qt OpenCV学习笔记(二十

    OpenCV学习笔记(二十一)--绘图函数core 在图像中,我们经常想要在图像中做一些标识记号,这就需要绘图函数.OpenCV虽然没有太优秀的GUI,但在绘图方面还是做得很完整的.这里就介绍一下相关 ...

最新文章

  1. SQL与NoSQL区别-存储规范
  2. 中国移动如何开具并下载打印电子发票?
  3. 64位Linux下安装mysql-5.7.13-linux-glibc2.5-x86_64 || 转载:http://www.cnblogs.com/gaojupeng/p/5727069.html
  4. 构建高可用服务器之 Keepalive参数详解
  5. matlab 随机森林算法_随机森林算法
  6. .net core 3.1 mysql_.net core3.1 MVC使用sqlsugar方式操作mysql数据库
  7. 浅说项目管理中的Action以及3W1P原则
  8. 定义域可以写成不等式吗_证单变量不等式(一)
  9. 【模板】线性筛法求素数
  10. 武汉涉密信息系统集成资质介绍
  11. cad查看_CAD快速看图 for mac(CAD图纸查看工具) v4.3.7中文版
  12. GMM估计分析步骤及结果解读
  13. RROR: Check hive‘s usability failed, please check the status of your cluster解决办法
  14. CoreDNS篇7-性能压测
  15. 用python做课表_python模拟登陆urp教务处选课抓取课表
  16. 用Multisim 14.1实现逻辑函数的化简与变换
  17. Monte Carlo tree search 学习
  18. php读取pdf文件乱码_PHP读取文件,解决中文乱码UTF-8的方法分析
  19. Navigation框架介绍
  20. Android应用之——微信微博第三方sdk登录分享使用过程中的一些常见问题

热门文章

  1. 35岁的程序员:第42章,复活
  2. 绿色数据中心 Green Data Proposal
  3. 5G+AIoT当打之年,科技潮牌realme大奇袭
  4. 嵌入式知识-ARM裸机-学习笔记(8):SoC定时器与看门狗(WDT)
  5. 职场:职业摧毁工作热情的场所
  6. win10与子系统ubuntu之间的相互访问
  7. IOS ATS 配置
  8. 轻松看懂机器学习!3个案例详解聚类、回归、分类算法
  9. Wampserver官网下载以及配置
  10. 基于stm32的位置和速度双闭环PID直流电机控制