Changeset 27119
- Timestamp:
- 06/29/22 05:47:32 (3 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/coordsystems/epsg2proj.py
r25455 r27119 2 2 3 3 4 def epsg2proj(epsg): #{{{5 """EPSG2PROJ - uses gdalsrsinfo to provide PROJ.4 compatible string 4 def epsg2proj(epsg): #{{{ 5 """EPSG2PROJ - uses gdalsrsinfo to provide PROJ.4 compatible string 6 6 from EPSG code 7 7 … … 21 21 #First, get GDAL version 22 22 subproc_args = "gdalsrsinfo --version | awk '{print $2}' | cut -d '.' -f1" 23 subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE )23 subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) 24 24 outs, errs = subproc.communicate() 25 25 if errs != '': … … 29 29 30 30 subproc_args = "gdalsrsinfo epsg:{} | command grep PROJ.4 | tr -d '\n' | sed 's/PROJ.4 : //'".format(epsg) 31 subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE )31 subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) 32 32 outs, errs = subproc.communicate() 33 33 if errs != '': … … 35 35 36 36 if version_major == 1: 37 r = r[1:-1]37 outs = outs[1:-1] 38 38 39 39 return outs -
issm/trunk-jpl/src/m/coordsystems/gdaltransform.py
r25455 r27119 46 46 47 47 subproc_args = shlex.split("gdaltransform -s_srs '{}' -t_srs '{}'".format(proj_in, proj_out)) 48 subproc = subprocess.Popen(subproc_args, bufsize=-1, stdin=file_in, stdout=file_out, stderr=subprocess.PIPE, close_fds=True )48 subproc = subprocess.Popen(subproc_args, bufsize=-1, stdin=file_in, stdout=file_out, stderr=subprocess.PIPE, close_fds=True, universal_newlines=True) 49 49 outs, errs = subproc.communicate() 50 50 if errs != '': -
issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py
r26410 r27119 1 1 import subprocess 2 3 2 import numpy as np 4 5 3 from MatlabFuncs import * 6 4 from mesh3dsurface import * … … 26 24 # Get Gmsh version 27 25 subproc_args = 'gmsh -info 2>&1 | command grep \'Version\' | sed -e \'s/Version[[:blank:]]*:[[:blank:]]//\' | cut -d \'.\' -f1' 28 subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE )26 subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) 29 27 outs, errs = subproc.communicate() 30 31 if ((not isinstance(errs,bytes)) & (errs != '')) or (isinstance(errs,bytes) & (errs.decode() != '')): 28 if ((not isinstance(errs, bytes)) & (errs != '')) or (isinstance(errs, bytes) & (errs.decode() != '')): 32 29 raise Exception('gmshplanet: call to gmsh failed: {}'.format(errs)) 33 30 gmshmajorversion = int(outs) … … 51 48 # 52 49 # NOTE: 53 # - The default format in Gmsh 3 is "msh2". Rather than conditionally 54 # modifying our parsing scheme for Gmsh 4, for now, we simply set the 50 # - The default format in Gmsh 3 is "msh2". Rather than conditionally 51 # modifying our parsing scheme for Gmsh 4, for now, we simply set the 55 52 # 'Mesh.MshFileVersion' option. 56 # - Decreasing the value of the 'Mesh.RandomFactor' option leads to an 57 # equal number of nodes and elements being produced under macOS and Linux 53 # - Decreasing the value of the 'Mesh.RandomFactor' option leads to an 54 # equal number of nodes and elements being produced under macOS and Linux 58 55 # at certain resolutions using certain meshing algorithms. 59 56 # … … 126 123 for i in range(meshini.numberofelements): 127 124 fid.write('ST(%g,%g,%g,%g,%g,%g,%g,%g,%g){%g,%g,%g};\n' 128 % (meshini.x[meshini.elements[i, 0]-1], meshini.y[meshini.elements[i, 0]-1], meshini.z[meshini.elements[i, 0]-1],129 meshini.x[meshini.elements[i, 1]-1], meshini.y[meshini.elements[i, 1]-1], meshini.z[meshini.elements[i, 1]-1],130 meshini.x[meshini.elements[i, 2]-1], meshini.y[meshini.elements[i, 2]-1], meshini.z[meshini.elements[i, 2]-1],131 metric[meshini.elements[i, 0]-1], metric[meshini.elements[i, 1]-1], metric[meshini.elements[i, 2]-1]))125 % (meshini.x[meshini.elements[i, 0] - 1], meshini.y[meshini.elements[i, 0] - 1], meshini.z[meshini.elements[i, 0] - 1], 126 meshini.x[meshini.elements[i, 1] - 1], meshini.y[meshini.elements[i, 1] - 1], meshini.z[meshini.elements[i, 1] - 1], 127 meshini.x[meshini.elements[i, 2] - 1], meshini.y[meshini.elements[i, 2] - 1], meshini.z[meshini.elements[i, 2] - 1], 128 metric[meshini.elements[i, 0] - 1], metric[meshini.elements[i, 1] - 1], metric[meshini.elements[i, 2] - 1])) 132 129 fid.write('};\n') 133 130 fid.close() 134 131 #}}} 135 132 133 # Call gmsh 134 # 135 # NOTE: The default format in Gmsh 3 is "msh2". Rather than conditionally 136 # modifying our parsing scheme for Gmsh 4, for now, we simply set the 137 # "-format" option. 138 # 136 139 if options.exist('refine'): 137 140 subprocess.call('gmsh -2 sphere.geo -bgm sphere.pos', shell=True) … … 187 190 #}}} 188 191 189 # A little technicality here. The mesh is not exactly on the sphere. We 192 # A little technicality here. The mesh is not exactly on the sphere. We 190 193 # create lat,long coordiantes, and reproject onto an exact sphere. 191 194 mesh.r = np.sqrt(mesh.x ** 2 + mesh.y ** 2 + mesh.z ** 2) -
issm/trunk-jpl/src/m/solve/waitonlock.py
r26435 r27119 11 11 """WAITONLOCK - wait for a file 12 12 13 This routine will return when a file named 'lockfilename' is written to 14 disk. Also check for outlog file because it might be written several 13 This routine will return when a file named 'lockfilename' is written to 14 disk. Also check for outlog file because it might be written several 15 15 seconds after the lock file. 16 16 … … 21 21 22 22 TODO: 23 - Uncomment import of localpfe and check on cluster type once localpfe.py 23 - Uncomment import of localpfe and check on cluster type once localpfe.py 24 24 has been translated from localpfe.m. 25 25 """ … … 79 79 sys.stdout.write('\rchecking for job completion (time: {} min {} sec) '.format(floor(elapsedtime / 60), floor(rem(elapsedtime, 60)))) # TODO: After Python 2 is deprecated, we can change this call to print([...], end='') 80 80 elapsedtime = elapsedtime / 60 # Converts time from sec to min 81 subproc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE )82 outs, errs = subproc.communicate() # NOTE: Need to consume output before checking return code81 subproc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) 82 outs, errs = subproc.communicate() # NOTE: Need to consume output before checking return code 83 83 84 84 # TODO: Debug the following check under Linux (exits after first iteration with errs = "b") 85 85 # UPDATE: Works in testing under Debian Linux system. Leaving comment for now so that it is easier to backtrace this issue if someone else encounters it. 86 # FIXED: comunicates returns stuff in bytes in Python 3 unless you set "universal_newlines=True" 86 87 # 87 #if errs != '':88 #raise Exception('waitonlock: check for existence of files failed: {}'.format(errs))88 if errs != '': 89 raise Exception('waitonlock: check for existence of files failed: {}'.format(errs)) 89 90 ispresent = not subproc.returncode 90 91 if ispresent:
Note:
See TracChangeset
for help on using the changeset viewer.