I have a large group of gps points that was collected. I want to select all points that have a spar depth that is greater or less than 20% that of the points that came before or after it (based on the GISID).
GISID Spar Depth
2022 4.035
2023 4.066
2024 3.604
2025 3.576
2026 4.593
2027 2.690
2028 2.960
2029 4.59
import arcpy
counter =0
with arcpy.da.SearchCursor('GPS Gas Main Pipe Point',[ 'GISID', 'SPAR_DEPTH']) as cursor:
for row in cursor:
MSDepth = row[1]
if counter > 0:
diff = abs(MSDepth-oldMSDepth)
if diff > 20:
print('GISID {}'.format(row[0]))
oldMSDepth = row[1]
oldGISID = row[0]
counter+= 1