Jay,
I work with measures daily and I have seen this a lot. For example if you are using Esri as your data source, particularly in an Enterprise database, you can have an M aware line that looks like 0-100 but the geometry itself is actually 0-99.99999.
This is normally caused because of extremely high precision and working with measures where the user splits the line, or lets the application calculate the measures, and the application does an absolute calculation of the interpolated Ms. The user is presented with a rounded value so they are not even aware of the decimal points.
I believe that it was FME 2014, the snipper transformer would not output a record when this happened. It was then changed by Safe, I upvoted this myself, to let the transformer "snap to the closest location". Without seeing the data I would suggest getting the list range from the M values and testing it against your measures and not passing anything that is <> 0.001 units, or whatever value works best of you.
I have also use the Python caller to round the list values of measures to the nearest whole value, that way I did not have to explode the list and update each value as a row.
Jay,
I work with measures daily and I have seen this a lot. For example if you are using Esri as your data source, particularly in an Enterprise database, you can have an M aware line that looks like 0-100 but the geometry itself is actually 0-99.99999.
This is normally caused because of extremely high precision and working with measures where the user splits the line, or lets the application calculate the measures, and the application does an absolute calculation of the interpolated Ms. The user is presented with a rounded value so they are not even aware of the decimal points.
I believe that it was FME 2014, the snipper transformer would not output a record when this happened. It was then changed by Safe, I upvoted this myself, to let the transformer "snap to the closest location". Without seeing the data I would suggest getting the list range from the M values and testing it against your measures and not passing anything that is <> 0.001 units, or whatever value works best of you.
I have also use the Python caller to round the list values of measures to the nearest whole value, that way I did not have to explode the list and update each value as a row.
Thanks for the input, It looks like precision related issue, I am using ESRI Enterprise Geodatabase. I will make our data editors aware of this.
On the second issue, I am using FME 2016, will check with FME support if there were any changes from 2014 version. FME is getting stuck when it’s trying to snap to the closest location.
Are you able to share your workaround using python caller. Thanks