def Output(FirstPoint): FPX = round(float(FirstPoint.X), 8) FPY = round(float(FirstPoint.Y), 8) return "{%(FX)013.8f}{%(FY)013.8f}" % {'FX': FPX, 'FY': FPY}
it there any function(s) that compares two user's x y fields (or a list of this data) to verify if the the points match over a period of time?
def Output(FirstPoint): FPX = round(float(FirstPoint.split() [0]), 4) FPY = round(float(FirstPoint.split() [1]), 4) return "{%(FX)012.4f}{%(FY)012.4f}" % {'FX': FPX, 'FY': FPY}
def Output(FirstPoint): FPX = round(float(FirstPoint.split() [0]), 8) FPY = round(float(FirstPoint.split() [1]), 8) return "{%(FX)012.8f}{%(FY)012.8f}" % {'FX': FPX, 'FY': FPY}
Membros conectados podem postar, seguir atualizações e mais. Novo aqui? Registre uma conta gratuita.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.