本文整理汇总了Python中anuga.file.netcdf.NetCDFFile.variables['vertices'][:]方法的典型用法代码示例。如果您正苦于以下问题:Python NetCDFFile.variables['vertices'][:]方法的具体用法?Python NetCDFFile.variables['vertices'][:]怎么用?Python NetCDFFile.variables['vertices'][:]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类anuga.file.netcdf.NetCDFFile
的用法示例。
在下文中一共展示了NetCDFFile.variables['vertices'][:]方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _write_msh_file
# 需要导入模块: from anuga.file.netcdf import NetCDFFile [as 别名]
# 或者: from anuga.file.netcdf.NetCDFFile import variables['vertices'][:] [as 别名]
def _write_msh_file(file_name, mesh):
"""Write .msh NetCDF file
WARNING: This function mangles the mesh data structure
"""
# FIXME(Ole and John): We ran into a problem on Bogong (64 bit)
# where integers appeared as arrays. This may be similar to
# problem seen by Steve in changeset:2778 where he had to wrap
# them in int. Now we are trying with the native Integer format
# (Int == 'l' == Int64). However, that caused casting errors, when
# 64bit arrays are to be assigned to their NetCDF counterparts. It
# seems that the NetCDF arrays are 32bit even though they are
# created with the type Int64. Need to look at the NetCDF library
# in more detail.
IntType = num.int32
#IntType = Int
#print 'mesh vertices',mesh['vertices'].shape
#the triangulation
mesh['vertices'] = num.array(mesh['vertices'], num.float)
mesh['vertex_attribute_titles'] = \
num.array(string_to_char(mesh['vertex_attribute_titles']), num.character)
num_attributes = len(mesh['vertex_attribute_titles'])
num_vertices = mesh['vertices'].shape[0]
#print 'num_attrib ',num_attributes
if mesh['vertex_attributes'] != None:
mesh['vertex_attributes'] = \
num.array(mesh['vertex_attributes'], num.float)
if num_attributes > 0 :
mesh['vertex_attributes'] = \
num.reshape(mesh['vertex_attributes'],(num_vertices,-1))
mesh['segments'] = num.array(mesh['segments'], IntType)
mesh['segment_tags'] = num.array(string_to_char(mesh['segment_tags']),
num.character)
mesh['triangles'] = num.array(mesh['triangles'], IntType)
mesh['triangle_tags'] = num.array(string_to_char(mesh['triangle_tags']),
num.character)
mesh['triangle_neighbors'] = \
num.array(mesh['triangle_neighbors'], IntType)
#the outline
mesh['points'] = num.array(mesh['points'], num.float)
mesh['point_attributes'] = num.array(mesh['point_attributes'], num.float)
mesh['outline_segments'] = num.array(mesh['outline_segments'], IntType)
mesh['outline_segment_tags'] = \
num.array(string_to_char(mesh['outline_segment_tags']), num.character)
mesh['holes'] = num.array(mesh['holes'], num.float)
mesh['regions'] = num.array(mesh['regions'], num.float)
mesh['region_tags'] = num.array(string_to_char(mesh['region_tags']), num.character)
mesh['region_max_areas'] = num.array(mesh['region_max_areas'], num.float)
# NetCDF file definition
try:
outfile = NetCDFFile(file_name, netcdf_mode_w)
except IOError:
msg = 'File %s could not be created' % file_name
raise Exception, msg
#Create new file
outfile.institution = 'Geoscience Australia'
outfile.description = 'NetCDF format for compact and portable storage ' + \
'of spatial point data'
# dimension definitions - fixed
outfile.createDimension('num_of_dimensions', 2) # This is 2d data
outfile.createDimension('num_of_segment_ends', 2) # Segs have two points
outfile.createDimension('num_of_triangle_vertices', 3)
outfile.createDimension('num_of_triangle_faces', 3)
outfile.createDimension('num_of_region_max_area', 1)
# Create dimensions, variables and set the variables
# trianglulation
# vertices
if (mesh['vertices'].shape[0] > 0):
outfile.createDimension('num_of_vertices', mesh['vertices'].shape[0])
outfile.createVariable('vertices', netcdf_float, ('num_of_vertices',
'num_of_dimensions'))
outfile.variables['vertices'][:] = mesh['vertices']
#print 'mesh vertex attributes', mesh['vertex_attributes'].shape
if (mesh['vertex_attributes'] is not None and
(mesh['vertex_attributes'].shape[0] > 0 and
mesh['vertex_attributes'].shape[1] > 0)):
outfile.createDimension('num_of_vertex_attributes',
mesh['vertex_attributes'].shape[1])
outfile.createDimension('num_of_vertex_attribute_title_chars',
mesh['vertex_attribute_titles'].shape[1])
outfile.createVariable('vertex_attributes',
netcdf_float,
#.........这里部分代码省略.........