source: issm/trunk/src/m/modules/ShpRead.m@ 21341

Last change on this file since 21341 was 21341, checked in by Mathieu Morlighem, 8 years ago

merged trunk-jpl and trunk for revision 21337

File size: 417 bytes
RevLine 
[20875]1function ShpRead(filename);
2% SHPREAD - Read shapefile
3%
4% This module reads shapefiles and converts them to matlab/python structures
5%
6% Usage:
7% ShpRead(filename);
8% filexp: file name of exp file to be written
9%
10% Examples:
11% ShpRead('file.shp');
12
13% Check usage
14if nargin~=1
15 help ShpRead
16 error('Wrong usage: No file specified');
17end
18
19% Call mex module
20ShpRead_matlab(filename);
Note: See TracBrowser for help on using the repository browser.