Changeset 21454


Ignore:
Timestamp:
12/26/16 18:37:32 (8 years ago)
Author:
Eric.Larour
Message:

CHG: allow profiles to be shape files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/mesh/rifts/rifttipsonmesh.m

    r21452 r21454  
    33%                rifts.
    44
    5 %read rifts from outline file
    6 %rifts=expread(riftoutline);
    7 [pathr,namer,extr]=fileparts(riftoutline);
    8 if strcmp(extr,'.exp'),
     5%read rift file according to its extension:
     6[path,name,ext]=fileparts(riftoutline);
     7if strcmp(ext,'.exp'),
    98        rifts=expread(riftoutline);
    10 elseif strcmp(extr,'.shp'),
     9elseif strcmp(ext,'.shp'),
    1110        rifts=shpread(riftoutline);
     11else
     12        error(['bamg error message: file ' riftoutline ' format not supported (.shp or .exp)']);
    1213end
    1314
Note: See TracChangeset for help on using the changeset viewer.