Creating a shapefile from a set of coordinates
Hi all,
I have a set of rectangular’s coord (Xmin,Xmax,Ymin,Ymax) in UTM coord. Could you please tell me how to create a rectangular (or polygon) shapefile based on those coordinates?
Thank you in advance.
NOTE:-
Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.
Xmin = 0. ; Xmax = 1. ;
Ymin = 0. ; Ymax = 1. ;x = [0 1 1 0] ;
y = [0 0 1 1] ;Data.Geometry = 'Polygon' ;
Data.X = x ; % latitude
Data.Y = y ; % longitude
Data.Name = 'Rectangle' ; % some random attribute/ nameshapewrite(Data, 'myfile.shp')
p = shaperead('myfile.shp')
SEE COMPLETE ANSWER CLICK THE LINK