0.5 = 1 / x2 x2 = 2 x = 20.5
>>> 100 * ( 1 / ((2 ** 0.5) ** 2)) 49.999999999999986
There are two issues here: the weight and the maximum search distance. The search distance is a parameter to the IDW tool.As for the weights, here's how it's done using the simple IDW formula of inverse-distance-squared weight and setting it to 0.5:0.5 = 1 / x2 x2 = 2 x = 20.5Here's a check in the Python window to make sure I got that right: >>> 100 * ( 1 / ((2 ** 0.5) ** 2)) 49.999999999999986 Remember these weights are *relative*: if two points are equal distance they both get 50% each weight, if only one point is in distance, it gets 100% weight.
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.