|
POST
|
Use select by attributes to get a selection then use field calculator to populate the intended field fieldname LIKE '%90%' Then field calculate the selection set to 90 repeat for 60
... View more
08-24-2015
10:30 AM
|
0
|
0
|
2680
|
|
POST
|
Are they ".lyr" files that are drawing? I haven't looked this up yet, but I've been suspicious for a while that ".lyr" files are saved as part of the map document.
... View more
08-24-2015
10:25 AM
|
0
|
1
|
4251
|
|
POST
|
Dan Patterson how do i find 10.3.1 links i searched "add python script to toolbox 10.3.1" but it doesn't return any results for 10.3.1 I'm using IE10
... View more
08-21-2015
11:21 AM
|
0
|
5
|
3183
|
|
POST
|
If your tying your script to a tool box its pretty simple http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00150000001r000000.htm
... View more
08-21-2015
10:53 AM
|
2
|
7
|
3183
|
|
POST
|
Try closing arcMap and reopening the only thing i can't seem to get to work is the expanded. If you got it to run once you should have everything set right.
... View more
08-21-2015
10:45 AM
|
0
|
0
|
3497
|
|
POST
|
ave you tried the Disperse Marker Tool http://resources.arcgis.com/en/help/main/10.2/index.html#//00700000002n000000
... View more
08-21-2015
09:18 AM
|
2
|
2
|
3497
|
|
POST
|
Mike Froese the syntax is different maybe someone else will chime in with the proper syntax
... View more
08-21-2015
08:44 AM
|
1
|
0
|
2541
|
|
POST
|
Cathina Tim Witt gave you a site to answer most of your questions i'm just going to comments on the things i don't think you'll find on the site. Does the certification need renewal / maintenance at prescribed time intervals? That to me is sort of the catch you don't have to renew your certification and the emblem i received does not have 10.1 on it but with each release there is another test configured for the new release and to certify in that version you will need to take the entire test there are no upgrade test like in microsoft. And lastly, do you think the ESRI certification is superior to the GISP? And why? I don't think the ESRI certification is superior to the GISP. The GISP has education, experience and contribution elements and recently they've added test, to getting the certification. To get the ESRI certification you need to be very familiar with the ESRI product and workflows. At a recent user group meeting it was mentioned that more companies are searching for employees who have GISP. I hope this helps!
... View more
08-21-2015
07:00 AM
|
1
|
0
|
1122
|
|
POST
|
I don't think arcpy provides a way to create a group layer you may have to create an empty group layer and package it with your code.Here is how to get the base path of where the script lives hmpath = os.path.realpath(__file__)
h,t = os.path.split(hmpath)
... View more
08-21-2015
05:24 AM
|
1
|
1
|
3283
|
|
POST
|
Luke thanks i didn't know that. Does that mean then that it should be a try except so if he doesn't get the upper level licenses it won't run? class LicenseError(Exception):
pass
import arcpy
try:
if arcpy.ProductInfo() == 'ArcInfo' or arcpy.ProductInfo() == 'ArcEditor':
pass
else:
# Raise a custom exception
#
raise LicenseError
print 'Do your work here'
except LicenseError:
print "ArcInfo or ArcEditor license unavailable"
except:
print arcpy.GetMessages(2)
... View more
08-20-2015
05:43 AM
|
0
|
0
|
2824
|
|
POST
|
Do you have a sample of data you'd be willing to post?
... View more
08-20-2015
05:18 AM
|
0
|
11
|
3452
|
|
POST
|
Try the following query fldname BETWEEN DateAdd(Day, 7, getdate()) AND getdate()
... View more
08-19-2015
11:45 AM
|
0
|
13
|
3452
|
|
POST
|
import arcpy
import arcinfo
if arcinfo:
print 'info license'
else:
import arceditor
if arceditor:
print 'editor license'
... View more
08-19-2015
05:15 AM
|
2
|
3
|
2824
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 09-14-2015 01:29 PM | |
| 1 | 01-26-2016 10:18 AM | |
| 1 | 08-18-2015 06:01 AM | |
| 1 | 06-20-2016 12:34 PM | |
| 1 | 01-19-2016 06:13 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|