MATLAB for Analyzing and Visualizing Geospatial Data

3 visualizaciones (últimos 30 días)
Aris Setiawan
Aris Setiawan el 21 de Nov. de 2020
Comentada: Sarvani Panguluri el 25 de Nov. de 2020
I am following Loren Shure's video presentation on MATLAB for Analyzing and Visualizing Geospatial Data. But I have error message on second section (Select a subset of information) on the following:
ds.SelectedVariableNames = {'x_Date','lat','lon','depth','q_1','mw','q_2','mo','mo_auth'};
with message:
Error using matlab.io.datastore....
SelectedVariableNames must be a unique subset of VariableNames
Thank you.

Respuestas (1)

Sarvani Panguluri
Sarvani Panguluri el 24 de Nov. de 2020
Hi,
Can you specify which version of MATLAB you are using?
  2 comentarios
Sarvani Panguluri
Sarvani Panguluri el 25 de Nov. de 2020
Hi,
I tried reproducing the issue and found that two of the possible reasons for the error could be, if the names in the SelectedVariableNames list does not exist in the main VariableNames.To find that,you can try
ds = datastore('isc-gem-cat.csv',"delimiter",",","NumHeaderLines",56)
ds.VariableNames
and check if the ds.VariableNames list has all these 'x_Date', 'lat', 'lon','depth','q_1','mw','q_2','mo','mo_auth' .
And unnecessary spaces before or after names (like , ' lat ',' lon ') could also lead to the error.Please Check if any of these is causing the error.

Iniciar sesión para comentar.

Categorías

Más información sobre Cartesian Coordinate System Conversion en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by