I need a world coastlines database as text, how to make that out of the mapping module?

11 Ansichten (letzte 30 Tage)
I have had one long ago, on an Atari! But lost it. It may be small, it is for a world map on A4 paper. I just need longitudes and latitudes.

Antworten (1)

mizuki
mizuki am 1 Dez. 2016
Bearbeitet: Walter Roberson am 5 Dez. 2016
  2 Kommentare
Weia Reinboud
Weia Reinboud am 1 Dez. 2016
Thanks. But I know those but the problem is in the shapefile format. I need latitudes and longitudes, because the projection method I am working on is a bit complex.
mizuki
mizuki am 4 Dez. 2016
ShapeFile contains latitude and longitude in numeric format. Load ShapeFile first with shaperead and choose lat&lon fields:
S = shaperead('concord_roads.shp');
lat = S.X;
lon = S.Y;

Melden Sie sich an, um zu kommentieren.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by