Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. import arcpy
  2. test_shp = "D:\My Documents\ArcGIS\test.shp"
  3. tset_swm = "D:\My Documents\ArcGIS\tset.swm"
  4. arcpy.GenerateSpatialWeightsMatrix_stats(test_shp, "MyID", tset_swm,
  5. "K_NEAREST_NEIGHBORS", "EUCLIDEAN",
  6. "1", "", "4", "ROW_STANDARDIZATION",
  7. "", "", "", "")
  8.  
  9. print "hello word"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement