<div dir="ltr">Thanks Andrea! GEOMETRY: AS_XY  - that did the trick for me. That was a long 24 hours trying to figure it out :-) <div><br></div><div>You rock! Thanks a lot. </div><div>D.<br clear="all"><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr" style="font-size:small"><div style="font-size:12.8px"><div dir="ltr"><br><div><b>Doug Hadfield, </b></div><div><div style="font-size:12.8px"><b><font color="#351c75"><a href="http://bighouseproductions.ca/" target="_blank">bighouseproductions.ca</a></font></b></div></div><div><b style="font-size:12.8px"><a href="http://www.vrtuous.com/" target="_blank">VRtuous.com</a></b><b><br></b></div><div><b><a href="http://virtualvideoproductions.com" target="_blank">virtualvideoproductions.com</a></b></div><div><b style="font-size:12.8px">Video, Animation, Photography, 3D & VR</b><br></div></div></div>778 895 1755</div><div dir="ltr" style="font-size:small">Demo Reel: <a href="https://vimeo.com/183084451" style="color:rgb(17,85,204)" target="_blank">https://vimeo.com/183084451</a><br>Photography: <a href="http://bighouse.smugmug.com/" style="color:rgb(17,85,204)" target="_blank">bighouse.smugmug.com</a></div><div dir="ltr" style="font-size:small"><br></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Jan 25, 2022 at 4:16 AM Andrea Giudiceandrea <<a href="mailto:andreaerdna@libero.it">andreaerdna@libero.it</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
  
    
  
  <div>
    <blockquote type="cite">
      <div style="color:rgb(0,0,0);font-family:helvetica,arial,sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">
        <p style="font-size:13px;color:rgb(102,102,102)"><span style="margin-right:0.5em;border-right:1px solid rgb(221,221,221);padding-right:0.8em"><a href="https://www.mail-archive.com/search?l=qgis-user@lists.osgeo.org&q=from:%22Bighouse+Productions%22" rel="nofollow" style="color:rgb(102,102,102);text-decoration:none" target="_blank"><span><span>Bighouse Productions</span></span></a></span><span> </span><span><a href="https://www.mail-archive.com/search?l=qgis-user@lists.osgeo.org&q=date:20220124" rel="nofollow" style="color:rgb(102,102,102);text-decoration:none" target="_blank">Mon, 24 Jan 2022 18:37:41 -0800</a></span></p>
      </div>
      <div style="color:rgb(0,0,0);font-family:helvetica,arial,sans-serif;font-size:14px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">
        <pre style="font-family:courier,"courier new",monospace;font-size:1em;white-space:pre-wrap;margin:0px">Hi Chris et al. here's a video showing the steps I'm following -- can
someone pinpoint what I'm doing wrong?</pre>
        <pre style="font-family:courier,"courier new",monospace;font-size:1em;white-space:pre-wrap;margin:0px"><a rel="nofollow" href="https://vimeo.com/669657507/e84405ce12" style="color:rgb(0,80,150)" target="_blank">https://vimeo.com/669657507/e84405ce12</a></pre>
      </div>
    </blockquote>
    Hi Doug,<br>
    If I understand correctly your "issue" looking at the video, there
    is probably a misunderstanding about how csv / vector layers /
    reprojection work.<br>
    <br>
    A GIS vector layer stores information about the features geometries
    (the coordinates of each point or vertex) and the features
    alphanumeric attributes (the fields and their values).<br>
    <br>
    A csv file stores alphanumeric attributes.<br>
    <br>
    When you import the csv file in QGIS , since some fields contain
    values representing the coordinates of a point,  it becomes a vector
    layer in which the features geometries are created, on importing,
    from the values (the coordinates) contained in such fields and the
    features attributes are the same attributes stored in the csv file.<br>
    <br>
    Reprojecting a vector layer from a CRS to another one only changes
    the features geometries and not the features attributes.<br>
    <br>
    Exporting a vector layer (with default options) to a csv file only
    saves its alphanumeric attributes.<br>
    <br>
    Does this make sense to you?<br>
    <br>
    Do you need to transform the coordinates values relative to a CRS
    stored in the EAST and NORTH fields of your csv file to the
    coordinates values relative to another CRS and update your EAST and
    NORTH fields or add new fields with the new values and save it as
    another csv file?<br>
    <br>
    There various ways to obtain the some result.<br>
    <br>
    For example:<br>
    - you can select the GEOMETRY: AS_XY layer option in order to add X
    an Y fields to the exported CSV in which the coordinates values are
    stored relative to the CRS set in the CRT option.<br>
    - or you can reproject the layer (Processing tool: "Reproject
    layer") and than use the Field Calculator to add new field or
    updated the EAST and NORTH fields with the new coordinates of the
    points and then save the layer to a CSV file with the default
    options.<br>
    - or you can use the Processing tool "Add X/Y fields to layer" to
    add X and Y fields with the coordinates values relative to the
    desired CRS and then save the layer to a CSV file with the default
    options.<br>
    <br>
    Regards.<br>
    <br>
    Andrea Giudiceandrea<br>
  </div>

_______________________________________________<br>
Qgis-user mailing list<br>
<a href="mailto:Qgis-user@lists.osgeo.org" target="_blank">Qgis-user@lists.osgeo.org</a><br>
List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
</blockquote></div>