Hi @ivan,
The reason your points are so close together is that your coordinate system is set to UTM84-14N but you are creating points that are recorded in Lat/Long. Try setting the coordinate system in the Reprojector to LL84, create the points, reproject to UTM84-14N, and then calculate the length of the line. This should help you calculate the distance between your points in meters.
Alternatively, you can specify the source coordinate system (LL84 in this case) when adding the reader and create points by setting the attribute type (x_coordinate & y_coordinate) in the reader parameters as shown in the How to Convert CSV to Shapefile (Non-spatial to Spatial) article.
Distance_Between_Two_Points.fmwt
Hi @ivan,
Elaborating on Chris's answer, the lengths you are calculating now are in degrees because the input into FME was lat/long degrees. I was able to successfully calculate the length after reprojecting data from LL84 to UTM84-14N using the LengthCalculator following up on our conversation earlier today.
Another potential alternative is to use the ReprojectLengthCalculator which will shorten the number of steps for you.
Hi @ivan,
The reason your points are so close together is that your coordinate system is set to UTM84-14N but you are creating points that are recorded in Lat/Long. Try setting the coordinate system in the Reprojector to LL84, create the points, reproject to UTM84-14N, and then calculate the length of the line. This should help you calculate the distance between your points in meters.
Alternatively, you can specify the source coordinate system (LL84 in this case) when adding the reader and create points by setting the attribute type (x_coordinate & y_coordinate) in the reader parameters as shown in the How to Convert CSV to Shapefile (Non-spatial to Spatial) article.
Distance_Between_Two_Points.fmwt
adding one reprojector before and after the vertex creator works I tried using one at the time i would never guess that you need two reprojectors thank you for the answer

Hi @ivan,
Elaborating on Chris's answer, the lengths you are calculating now are in degrees because the input into FME was lat/long degrees. I was able to successfully calculate the length after reprojecting data from LL84 to UTM84-14N using the LengthCalculator following up on our conversation earlier today.
Another potential alternative is to use the ReprojectLengthCalculator which will shorten the number of steps for you.
could you share how could I use this transformer? I tried but it combined all the points and it did create a single long polyline which is not what I need on this case