0

We've got a large dataset that is in 4326. I'd like to integrate Canadian CSD data from the statcan website into it. But the polygons are in a coordinate system that I don't recognize. Probably Canvec 3347?

For instance the polygon for Dolphin Island looks like:

POLYGON ((3847646.5171429 2694041.15714289,
3847662.23428575 2694027.20857146,
3847669.29428575 ...)

Can I convert this to 4326 to match the rest of my data? Searching for this on google yielded nothing that used ogr2ogr directly and a lot of it was >8 yrs old.

3
  • 2
    ogr2ogr -s_srs EPSG:3347 -t_srs EPSG:4326 new.shp old.shp
    – Mike T
    Commented Sep 20, 2023 at 1:12
  • thanks, I'll give it a shot -- what should I have googled to find that? I'm inexperienced with GIS stuff
    – jcollum
    Commented Sep 20, 2023 at 15:11
  • That worked, put it up as an answer and I'll accept it. Thanks again.
    – jcollum
    Commented Sep 20, 2023 at 15:30

1 Answer 1

0

Use ogr2ogr to reproject vector data using something like this:

ogr2ogr -s_srs EPSG:3347 -t_srs EPSG:4326 new.shp old.shp

Not the answer you're looking for? Browse other questions tagged or ask your own question.