|
POST
|
Have you made a folder connection in Catalog to the folder that contains the GDBs? Click the folder with the plus sign on it, and then you can navigate to the containing folder, and select add. After that you will see it in catalog, and all its contents.
... View more
06-12-2015
11:06 AM
|
1
|
1
|
1013
|
|
POST
|
Oh yes, I see the mistake. It needs to be indented to the same level as if, and then print statement should be indented level with rows, and refresh view shouldn't be indented.
... View more
06-12-2015
10:31 AM
|
0
|
8
|
2953
|
|
POST
|
Oh neat! Thanks for the info. So, for more than one argument, would you just put a list with commas between?
... View more
06-12-2015
07:24 AM
|
0
|
1
|
2998
|
|
POST
|
Oh really? So how do you enter the arguments in that case?
... View more
06-12-2015
07:00 AM
|
1
|
3
|
2998
|
|
POST
|
Hi Shelby, are you talking about organization roles? The short answer is no. This page gives more information about how these are defined within an organization: Organization roles—ArcGIS Online Help | ArcGIS. Different layers do have different properties with regards to analysis, but I imagine access and ability to do certaain tasks may also be customizable to some degree. According to this page, analytics do use service credits: ArcGIS Online | Service Credits
... View more
06-12-2015
06:51 AM
|
1
|
1
|
738
|
|
POST
|
The other, more obvious difference, is that you have to hardcode your paths, files, and mxds.
... View more
06-12-2015
06:37 AM
|
0
|
5
|
2998
|
|
POST
|
You are very welcome. I'm just happy I could actually solve a python problem--a fairly rare event!
... View more
06-12-2015
06:20 AM
|
0
|
0
|
2013
|
|
POST
|
Hi Meredith, Right now, you're joining your output workspace path to the summary path twice. Try just removing the output workspace from summary. I'm assuming, of course, that you have your other variables, such as output_workspace and stats, defined in a different part of the script.
... View more
06-12-2015
05:53 AM
|
1
|
3
|
2013
|
|
POST
|
One way is to add have four copies of the data added to the data frame. You can then choose four different symbology types based on the different attribute fields. I believe this can be done in Explorer as well as ArcMap.
... View more
06-12-2015
02:45 AM
|
0
|
0
|
1056
|
|
POST
|
Hey there, it's not necessary to be in an edit session to use the append tool. Try this: import arcpy
#populate selected feature
APT = "TEST"
fc1 = "CCAP"
workspace = r"C:\GIS\CCAP\CCAP.mdb"
arcpy.env.overwriteOutput = True
mxd = arcpy.mapping.MapDocument("CURRENT")
if int(arcpy.GetCount_management(APT).getOutput(0)) > 0:
rows = arcpy.UpdateCursor(APT)
for row in rows:
row.FacltyType = ("Single Family Home")
row.StructType = ("Primary, Private")
row.Verified = ("Yes, GRM, TA")
row.Status = ("Active")
row.StructCat = ("Residential")
row.APA_CODE = ("1110")
rows.updateRow(row)
arcpy.Append_management(APT, fc1, "NO_TEST")
del row, rows
elif int(arcpy.GetCount_management(APT).getOutput(0)) == 0:
print "There are no features selected"
arcpy.RefreshActiveView()
... View more
06-11-2015
07:53 PM
|
0
|
10
|
2953
|
|
POST
|
Hi Annabelle, I don't think you're quite using the tool correctly. You should only select the line you are extending to {line 4}, and then click the line you want to extend with the extend tool. See the help file here:ArcGIS Help 10.1
... View more
06-11-2015
07:10 PM
|
0
|
0
|
708
|
|
POST
|
Just as an FYI, Geoff, I don't believe you need any of those \n.
... View more
06-11-2015
06:56 PM
|
2
|
2
|
2245
|
|
POST
|
Hey Gary. make sure you have the workspace that contains your target layer set as your current workspace under geoprocessing environment settings.
... View more
06-11-2015
05:48 PM
|
2
|
0
|
6541
|
|
POST
|
Hi Shane, have you tried running the repair geometry tool?
... View more
06-11-2015
05:35 PM
|
0
|
3
|
3373
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-15-2015 11:16 AM | |
| 1 | 05-08-2015 09:21 AM | |
| 1 | 06-17-2015 06:53 AM | |
| 1 | 06-16-2015 09:39 AM | |
| 1 | 05-29-2015 10:34 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:24 AM
|