Changeset 24251


Ignore:
Timestamp:
10/17/19 19:17:33 (5 years ago)
Author:
jdquinn
Message:

BUG: Extra spaces (should be the last of these).

Location:
issm/trunk-jpl/src/m
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/coordsystems/gmtmask.py

    r24213 r24251  
    5656
    5757    #figure out which vertices are on the ocean, which one on the continent:
    58     subprocess.call(issmdir + '/externalpackages/gmt/install/bin/gmt gmtselect ./ all_vertices.txt -h0 -Df -R0/360/-90/90 -A0- JQ180/200 - Nk/s/s/k/s > ./oce_vertices.txt', shell=True)
     58    subprocess.call(issmdir + '/externalpackages/gmt/install/bin/gmt gmtselect ./ all_vertices.txt -h0 -Df -R0/360/-90/90 -A0 -JQ180/200 -Nk/s/s/k/s > ./oce_vertices.txt', shell=True)
    5959
    6060    #reset DYLD_LIBRARY_PATH to what it was:
  • issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py

    r24250 r24251  
    4040    if options.exist('refine'):
    4141        fid.write('Mesh.Algorithm = 7;\n')
    42         fid.write('Mesh.CharacteristicLengthFromPoints= 0;\n')
    43         fid.write('Mesh.SmoothRatio= 3;\n')
    44         fid.write('Mesh.RemeshAlgorithm= 1;\n')
    45     fid.write('resolution=%g;\n' % resolution)
    46     fid.write('radius=%g;\n' % radius)
     42        fid.write('Mesh.CharacteristicLengthFromPoints = 0;\n')
     43        fid.write('Mesh.SmoothRatio = 3;\n')
     44        fid.write('Mesh.RemeshAlgorithm = 1;\n')
     45    fid.write('resolution = %g;\n' % resolution)
     46    fid.write('radius = %g;\n' % radius)
    4747    fid.write('Point(1) = {0.0, 0.0, 0.0, resolution};\n')
    4848    fid.write('Point(2) = {radius, 0.0, 0.0, resolution};\n')
  • issm/trunk-jpl/src/m/os/issmscpin.py

    r24240 r24251  
    3333            #get ISSM_DIR variable
    3434            if 'ISSM_DIR_WIN' in os.environ:
    35                 ISSM_DIR = os.environ['ISSM_DIR_WIN'][1: - 2]
     35                ISSM_DIR = os.environ['ISSM_DIR_WIN'][1:-2]
    3636            else:
    3737                raise OSError("issmscpin error message: could not find ISSM_DIR_WIN environment variable.")
Note: See TracChangeset for help on using the changeset viewer.