3,132 reputation
722
bio website
location Chicago, IL
age 25
visits member for 1 year, 6 months
seen 48 mins ago
stats profile views 152

Urban Planning Analyst.


May
15
comment Speeding Up ArcGIS, redrawing sooooo slow!
Are you using any of the ArcGIS basemaps (especially the Bing ones) in those templates?
May
13
answered arcgis model builder: in-line variable substitution for the path
May
2
comment Exporting Selection Using Python
If out_path is a folder, it will be a shapefile.
Apr
22
comment Does Identify tool of ArcGIS for Desktop have Python script behind it?
Additionally, within an MXD you can create a custom Display Expression from the Display tab of a layer's Layer Properties window. For example, I use the expression [PROJ_ID] & " : " & [PROJ_YEAR] to display the values of those two attributes, separated by a colon, in the Identity window (rather than just letting ArcMap pick whatever field it somehow judges to be the best).
Apr
21
revised Use Python to parse string
Formatted code as code
Apr
19
revised Use Python to parse string
added 2 characters in body
Apr
19
answered Use Python to parse string
Apr
17
answered Delete feature selection using Python (ArcGIS 10)
Apr
17
comment Delete feature selection using Python (ArcGIS 10)
When you say the selection process works fine, how exactly do you know that? Is it simply not crashing, or are you actually inspecting the values of count?
Apr
17
comment Delete feature selection using Python (ArcGIS 10)
Are the 5 lines after if ID_buffer == ID_centroids: really at the same indentation level as that statement?
Apr
16
comment NYC Subway Line Station Order?
The stop_sequence value tells you the order of stops for each individual train run, so use that in conjunction with stop_id.
Apr
16
revised ArcGIS 10, Converting from date to number
deleted 2 characters in body
Apr
16
comment ArcGIS 10, Converting from date to number
Great, glad I could help! I'd appreciate it if you could mark this as the accepted answer.
Apr
16
comment ArcGIS 10, Converting from date to number
Ok, I decided to modify the function to use string slicing instead. Now, any string where the hours, minutes and seconds are each 2-digits, and they are all separated by one (and only one) delimiter -- "h", "m", "s", ":", or anything else -- will be a valid input.
Apr
16
revised ArcGIS 10, Converting from date to number
deleted 48 characters in body
Apr
16
comment ArcGIS 10, Converting from date to number
If you're passing it the string "00:06:00", that's the problem. You told us that the strings were in the form "00h06m00s", so the code we've provided will not handle other formats. If your data is all in the "00:06:00" format, let me know and I can alter my function.
Apr
15
awarded  Caucus
Apr
15
revised ArcGIS 10, Converting from date to number
Forgot my return statement. D'oh!
Apr
15
answered ArcGIS 10, Converting from date to number
Apr
14
comment Creating a where clause from user input/Python list
I do like this form better than the one the OP requested when building a query based on many values of a single attribute.