How to populate attributes from M Values

805
2
12-12-2019 04:39 AM
Krishna_RaoTVB
New Contributor II

We want to populate values in a Attribute field using M Values ? , how it can be auto populated !!

0 Kudos
2 Replies
PhilHardy
New Contributor II

You can use the Calculate Field with the python option and use any of the 4 phrases below.  The first one gives you the measure value of the first vertex, the second one gives you the measure of the last vertex, the third one give you the minimum measure for the whole shape, and the forth one gives you the maximum measure for the whole shape.  Is that the type of thing you were looking for?

!Shape!.firstPoint.M

!Shape!.lastPoint.M

!shape.extent.mmin!

!shape.extent.mmax!

Krishna_RaoTVB
New Contributor II

Thanks

0 Kudos