Read a shapefile with name that was provided from sprintf

2 visualizaciones (últimos 30 días)
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"____

Respuesta aceptada

Walter Roberson
Walter Roberson el 7 de Sept. de 2015
getshp = shaperead(shp2open,'UseGeoCoords',true)

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by