Why I get this error "Coordinates in 'Point' geographic data structure S must be scalar" when I use shapewrite?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kelly Kyriakou
am 28 Sep. 2016
Kommentiert: Kelly Kyriakou
am 28 Sep. 2016
I want to write a shapefile using shapewrite function and I get the following error "Coordinates in 'Point' geographic data structure S must be scalar." My data are the followings: Data =
Geometry: 'Point'
Lat: [40.6214 40.5959 40.6159 40.5873 40.6081]
Lon: [22.9739 22.9533 22.9527 22.9424 22.9766]
What is the problem?
0 Kommentare
Akzeptierte Antwort
KSSV
am 28 Sep. 2016
Bearbeitet: KSSV
am 28 Sep. 2016
clear;clc
Lon = [22.9739 22.9533 22.9527 22.9424 22.9766] ;
Lat = [40.6214 40.5959 40.6159 40.5873 40.6081] ;
Data = struct([]) ; % initilaize structure
for i = 1:length(Lon)
Data(i).Geometry = 'Point' ;
Data(i).Lat=Lat(i) ; % latitude
Data(i).Lon =Lon(i) ; % longitude
Data(i).Name = randseq(1) ; % some random attribute/ name
end
shapewrite(Data, 'myfile.shp')
p = mappoint(shaperead('myfile.shp'))
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Geographic Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!