Changeset 27027


Ignore:
Timestamp:
05/27/22 16:14:58 (3 years ago)
Author:
jdquinn
Message:

CHG: Corrected args for calls to xy2ll

Location:
issm/trunk-jpl/examples
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/examples/Greenland/runme.m

    r25986 r27027  
    2424
    2525        %convert x,y coordinates (Polar stereo) to lat/lon
    26         [md.mesh.lat,md.mesh.long]=xy2ll(md.mesh.x,md.mesh.y,+1,39,71);
     26        [md.mesh.lat,md.mesh.long]=xy2ll(md.mesh.x,md.mesh.y,+1,45,70);
    2727
    2828        save ./Models/Greenland.Mesh_generation md;
     
    180180
    181181        %convert mesh x,y into the Box projection
    182         [md.mesh.lat,md.mesh.long]  = xy2ll(md.mesh.x,md.mesh.y,+1,39,71);
     182        [md.mesh.lat,md.mesh.long]  = xy2ll(md.mesh.x,md.mesh.y,+1,45,70);
    183183        [xi,yi]= ll2xy(md.mesh.lat,md.mesh.long,+1,45,70);
    184184
     
    247247
    248248        %convert mesh x,y into the Box projection
    249         [md.mesh.lat,md.mesh.long]  = xy2ll(md.mesh.x,md.mesh.y,+1,39,71);
     249        [md.mesh.lat,md.mesh.long]  = xy2ll(md.mesh.x,md.mesh.y,+1,45,70);
    250250        [xi,yi]= ll2xy(md.mesh.lat,md.mesh.long,+1,45,70);
    251251
  • issm/trunk-jpl/examples/IceBridge/runme.m

    r25986 r27027  
    3333
    3434        %convert x,y coordinates (Polar stereo) to lat/lon
    35         [md.mesh.lat,md.mesh.long]=xy2ll(md.mesh.x,md.mesh.y,+1,39,71);
     35        [md.mesh.lat,md.mesh.long]=xy2ll(md.mesh.x,md.mesh.y,+1,45,70);
    3636
    3737        save ./Models/Greenland.Mesh_generation md;
  • issm/trunk-jpl/examples/Jakobshavn/runme.m

    r25986 r27027  
    2020        %refine mesh using surface velocities as metric
    2121        md=bamg(md,'hmin',1200,'hmax',15000,'field',vel,'err',5);
    22         [md.mesh.lat,md.mesh.long]  = xy2ll(md.mesh.x,md.mesh.y,+1,39,71);
     22        [md.mesh.lat,md.mesh.long]  = xy2ll(md.mesh.x,md.mesh.y,+1,45,70);
    2323
    2424        save JksMesh md
Note: See TracChangeset for help on using the changeset viewer.