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

11 ビュー (過去 30 日間)
Weia Reinboud
Weia Reinboud 2016 年 11 月 30 日
編集済み: Walter Roberson 2016 年 12 月 5 日
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.

回答 (1 件)

mizuki
mizuki 2016 年 12 月 1 日
編集済み: Walter Roberson 2016 年 12 月 5 日
  2 件のコメント
Weia Reinboud
Weia Reinboud 2016 年 12 月 1 日
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 2016 年 12 月 4 日
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;

サインインしてコメントする。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by