|
POST
|
Homework? Or are you looking for consultants to do this work?
... View more
08-13-2013
04:46 AM
|
0
|
0
|
889
|
|
POST
|
Output extents are set in the "environments" tab of any tool in arctoolbox
... View more
08-12-2013
07:20 PM
|
0
|
0
|
1171
|
|
POST
|
To emphasize the useage of the "in" list operand consider the following: >>> bunchOfValues = ['XY885442554', 'TY3485694873', 'RR473892711']
>>> for aValue in bunchOfValues:
... if aValue[:2] in ['XY', 'RR']:
... print aValue[2:]
... else:
... print aValue
...
885442554
TY3485694873
473892711 particularly useful to avoid extensive if, elif, else statements
... View more
08-12-2013
07:11 PM
|
0
|
0
|
2667
|
|
POST
|
Within a cursor of some form (insert possibly in your case), if the first two characters ( [0:2] ) are "XY" or "RR" are found within the offending list ["XY", "RR"], substitute/update your field/row with the value with those values removed. It is hard to debug someone else's code unless you have field calculator syntax that works before you move on to automating the process to include multiple cases. Try to simply the operation by performing single steps at a time (eg. strip off "XY" if it is contained within a field) then move onto the next selection finding fields that begin with "RR" and stripping those off. If this is a one-off deal you are done...if this is daily, then generate a field calculator expression which covers all cases. I often find the former faster than the latter and I have been coding for years.
... View more
08-12-2013
12:42 PM
|
0
|
0
|
2667
|
|
POST
|
is pseudo code avalue (a row value in string format) prefix = ["XY", "RR"] if avalue[0:2] in prefix: avalue = avalue[2:] print avalue
... View more
08-09-2013
03:10 PM
|
0
|
0
|
2667
|
|
POST
|
the points may be surrounded by NODATA cells causing it to fail, examine your raster and your cost grid to ensure this isn't the case
... View more
08-07-2013
11:59 AM
|
0
|
0
|
1237
|
|
POST
|
See Distributions.py on our ArcGIS Online site http://carleton-u.maps.arcgis.com/home/item.html?id=076912624eaa4043bb46ef5068e12626
... View more
08-07-2013
06:50 AM
|
0
|
0
|
980
|
|
POST
|
are you in edit mode? if so get out of it and try again or perhaps the field can't be edited so check its properties
... View more
08-06-2013
03:30 AM
|
0
|
0
|
1115
|
|
POST
|
http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00vp00000012000875.htm http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/000584_Implementation_of_this_Tool_s_Validate_is_invalid/00vp00000015000584/ did you rule out the error messages?
... View more
08-06-2013
03:27 AM
|
0
|
0
|
1196
|
|
POST
|
I I communicated with you offline, don't use the desktop as the source and/or destination for the inputs and result. 9.2 is no longer supported
... View more
08-02-2013
06:39 AM
|
0
|
0
|
857
|
|
POST
|
Did you check for a Save As or Export option in modelbuilder?
... View more
08-02-2013
06:37 AM
|
0
|
0
|
3483
|
|
POST
|
are you using the raster calculator (map algebra in ArcToolbox)? if it is an integer grid you want to query for values > 1
... View more
08-01-2013
08:54 AM
|
0
|
0
|
758
|
|
POST
|
check the help files on the keyword "clip" which will bring you to the help topics for clipping feature and raster data
... View more
08-01-2013
08:51 AM
|
0
|
0
|
478
|
|
POST
|
Did you check for slope tools in the 3D analyst section of ArcToolbox?
... View more
08-01-2013
08:30 AM
|
0
|
0
|
2606
|
|
POST
|
create random points, determine their convex and/or concave hull...ask your advisor what algorithms he uses 🙂 that is what they are there to do ... "advise"
... View more
07-29-2013
01:55 PM
|
0
|
0
|
2335
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-03-2017 11:39 AM | |
| 1 | 08-05-2019 05:21 PM | |
| 1 | 09-02-2016 08:05 AM | |
| 1 | 01-15-2018 01:10 PM | |
| 1 | 09-17-2018 12:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|