Skip to main content
Solved

How to convert Shapefile to CSV and extract Postal Code as well as coordinates

  • May 25, 2017
  • 2 replies
  • 53 views

Forum|alt.badge.img

How can I convert .shp to .csv and include Postal code as well as lat/long? I am able to make the conversion, but only Postal code is exposed in the .csv

The original shape file has x and y axis and is using EPSG 102015, the .csv would preferably convert to EPSG 4326 and include lat/long

Best answer by zzupljanin

You should use Reprojector (from EPSG 102015 to 4326) to reproject your data to destination coordinate system.

Afterwards use CoordinateExtractor to get coordinates as attributes.

Cheers

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

zzupljanin
Contributor
Forum|alt.badge.img+4
  • Contributor
  • Best Answer
  • May 25, 2017

You should use Reprojector (from EPSG 102015 to 4326) to reproject your data to destination coordinate system.

Afterwards use CoordinateExtractor to get coordinates as attributes.

Cheers


Forum|alt.badge.img
  • Author
  • May 25, 2017

Thank you for your help. Can you also point me to some documentation on how to set up the transformers? (Sorry it's only day 2 with the software for me)