Read a shapefile with name that was provided from sprintf

3 views (last 30 days)
Hello everybody,
I want to read one shapefile, with shaperead command, that his name will change. I have written this code:
phase2open = cellstr(get(hObject,'String'))
nameofphase2open = phase2open{get(hObject,'Value')}
shp2open= sprintf('phase%s_RP%d_%s.shp',nameofphase2open,RPname2open,nameofsource2open)
getshp=shaperead('%s',shp2open,'UseGeoCoords',true)
It understands the name and print it but shaperead failed giving this error: "Error using shaperead>parseInputs (line 546) Expected input number 2, PARAM1, to match one of these strings: 'RecordNumbers', 'BoundingBox', 'Selector', 'Attributes', 'UseGeoCoords"____

Accepted Answer

Walter Roberson
Walter Roberson on 7 Sep 2015
getshp = shaperead(shp2open,'UseGeoCoords',true)

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!