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
|
Rev | Line | |
---|
[20875] | 1 | function 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
|
---|
| 14 | if nargin~=1
|
---|
| 15 | help ShpRead
|
---|
| 16 | error('Wrong usage: No file specified');
|
---|
| 17 | end
|
---|
| 18 |
|
---|
| 19 | % Call mex module
|
---|
| 20 | ShpRead_matlab(filename);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.