Tagged Questions
4
votes
2answers
239 views
How do I make a user input array or list in python?
I don't know which one I need actually because I am relatively new to python. What my goal is to have a stand alone script to run multiple buffers based on user input. For example, I would like to ask ...
6
votes
1answer
180 views
Why does tool take longer to run when in Python script?
I have written a python script that does some euclidean allocation. For that I use arcpy.gp.EucAllocation_sa() method. Now, my python script takes 30-40% extra time than spatial analyst euclidean ...
2
votes
1answer
174 views
how to make a line from a set of gps points?
As a part of my research I need to create the trajectory of respondents according to the their collected GPS data (including X and Y). I am familiar with python programming, but I am a beginner in ...
1
vote
0answers
211 views
Relate first point and last point of polyline to point feature(s)
I am working on a small script using ArcMap10/arcpy to generate a upstream-downstream uniqueid for a polyline feature class using point id's that fall on the starting point and ending point of a line.
...
0
votes
1answer
451 views
Create TIN from Elevation Points in Python
I want create a TIN from point features with elevation using a python script.
This is my script:
import arcpy
from arcpy import env
import json as simplejson
import urllib
import sys,os
...
