|
POST
|
Icons in Browse Coordinate System Dialog in the Post Install have little black backgrounds, but in Catalog 10 these are not shown, so for some reason they are appearing in the WMX post install dialog.
... View more
05-19-2010
02:50 PM
|
0
|
2
|
1181
|
|
POST
|
If I switch to a size of 10, and I draw a circle, then switch to size 2, the ink size still draws at size 10, it needs to switch to size 2. ArcGIS ArcReader 10
... View more
05-18-2010
01:22 PM
|
0
|
2
|
971
|
|
POST
|
I cannot identify from inside the magnifier window in ArcReader 10. Is this the expected behavior?
... View more
05-17-2010
04:55 PM
|
0
|
1
|
933
|
|
POST
|
The Find Dialog in ArcReader 10, has an incomplete graphic for the Progress bar when Searching. It looks a bit clunky. ArcGIS ArcReader 10.
... View more
05-17-2010
02:00 PM
|
0
|
2
|
928
|
|
POST
|
Crash, first one at Pre Release. Setting Privileges on a 931 SDE from 10 Desktop. Using Catalog. Set on 1 FD then four tables, then Crash. Seems to have set the privileges. See Attachment. SQL Server 2005 SP3.
... View more
05-13-2010
09:02 AM
|
0
|
0
|
635
|
|
POST
|
http://tasks.arcgisonline.com/arcgis/services Click this above link, and get an error: Server Error in '/ArcGIS/services' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off". <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>
... View more
05-11-2010
10:41 AM
|
0
|
1
|
2332
|
|
POST
|
Or use clrtypes with IronPython, and run from within c# 4 using dynamic:) and skip arcpy altogether.
... View more
05-10-2010
02:22 PM
|
0
|
0
|
2708
|
|
POST
|
When clicking on a script in a toolbox after setting my GP env properties, and selecting edit, why can't the script open as the name of the script. Currently, it is defaulting to FINDUN~1.PY. I am editing the Mapping scripts, and I don't want to create a new script. Is there another setting that I may be missing? ArcGIS 10 Pre. Py editor and debugger - Wing Pro 3.2 Like that you are using datetime.
... View more
05-10-2010
01:30 PM
|
0
|
0
|
849
|
|
POST
|
I'm working on a longer-form version of this for a blog post, but here's the gist: The Map Document object lives in the arcpy.mapping module. To create a new Map Document object is easy, simply call arcpy.mapping.MapDocument with the path to the MXD you wish to use: mxd = arcpy.mapping.MapDocument('d:\\path\\to\\map.mxd') Something to note about python strings: backslashes need to be either escaped like 'd:\\path\\to\\map.mxd' or the string can be flagged as a raw string with the r flag like r'd:\\path\\to\\map.mxd'. In these examples Iâ??ll be using the Python window in ArcGIS Desktop. The Map document object also accepts the special path string â??currentâ?? in desktop only that lets you manipulate the current document in the window: mxd = arcpy.mapping.MapDocument('current') From here the interactive window is a great resource to learn and experiment. I can get an idea of what type of properties a map document has by typing in the name of my variable, hitting dot, and see what I have access to. This makes prototyping and exploring Python code easy, because of the immediate nature of the feedback given in the interactive window. I get a result as soon second I press enter, without needing to save or compile any code. Layers can be accessed from .lyr files or from the TOC in a Map document. To load from a layer file: lyr = arcpy.mapping.MapDocument('d:\\path\\to\\layer.lyr') Layers can be retrieved from a map document by using the arcpy.mapping.ListLayers function as well. In my interatice session I have a simple MXD with some OpenStreetMap data in it, and from the Python window I issue the ListLayers function and get: >>> arcpy.mapping.ListLayers(mxd) [<map group layer u'OpenStreetMap data'>, <map layer u'california_poi'>, <map layer u'california_highway'>, <map layer u'california_natural'>, <map layer u'states'>] Note this is different than the list of strings in functions such as ListDatasets, it is actual layer objects. If I just want a list of the names from these objects, I can employ a list comprehension: >>> [lyr.longName for lyr in arcpy.mapping.ListLayers(mxd)] [u'OpenStreetMap data', u'OpenStreetMap data\\california_poi', u'OpenStreetMap data\\california_highway', u'OpenStreetMap data\\california_natural', u'states'] List comprehensions are a shortcut built into Python for a common type of for loop where one loops over a list of values to produce a new list of values. In this case, weâ??re grabbing the longName attribute from each value in the list returned from ListLayers. The general formula for a list comprehension is: Simple: [expression for value in list] With conditional: [expression for value in list if condition] The if condition form allows one to not only map values, but also apply a conditional filter and only include certain values in the new list. For examples, I only want all the layer names that are feature layers: >>> [lyr.longName for lyr in arcpy.mapping.ListLayers(mxd) if lyr.isFeatureLayer] [u'OpenStreetMap data\\california_poi', u'OpenStreetMap data\\california_highway', u'OpenStreetMap data\\california_natural', u'states'] Note the group layer named OpenStreetMap data is no longer included in the results. This also makes it possible to fetch a layer by a specific name and only work with it: >>> lyrlist = [lyr for lyr in arcpy.mapping.ListLayers(mxd) if lyr.name == "california_highway"] >>> lyrlist [<map layer u'california_highway'>] >>> if lyrlist: ... lyr = lyrlist.pop() # pop takes one element out of end of the list and returns it ... >>> lyr <map layer u'california_highway'> >>> lyr.name u'california_highway' >>> lyr.dataSource u'C:\\DATA\\openstreetmap.gdb\\california_highway' >>> lyr.transparency 0 >>> lyr.transparency = 10 Many common scenarios for finding and manipulating layers can be accomplished using the built-in functions in arcpy.mapping and a little bit of manipulation with a list comprehension. By chance has there been a blog entry going over this a bit more?
... View more
05-10-2010
01:14 PM
|
0
|
0
|
962
|
|
POST
|
Hi Pam, I tested this out and confirmed the behavior you are reporting. I have logged the following bug to address this issue. NIM050663: Layer packages created with 9.4 do not open in 9.3.1 It is our intention that cross version functionality with layer packages does work in the final release of 9.4. We will also be providing an option to create earlier verisons of the Geodatabase with ArcGIS Desktop, but it is currently not a function of 9.4 Beta One release. I hope this helps address some of your questions and concerns. Thank You, Andrew Has this been addressed for 10 Pre, by chance?
... View more
05-03-2010
07:50 PM
|
0
|
0
|
732
|
|
POST
|
When is AGX going to support 10? Will this be 1250/1300 that will be supporting ArcGIS 10?
... View more
05-03-2010
07:16 PM
|
0
|
0
|
1250
|
|
POST
|
Past setups have always had both blend and vs on them, but this was a remote site, so this is why I discovered this tiny little issue. Thank you Morten.
... View more
05-03-2010
06:46 PM
|
0
|
0
|
906
|
|
IDEA
|
Nice to have a workflow that simplifies the creation of different coordinate systems during a replication scenario. Currently, we need to extract the schema to a different projection, then reuse the schema to get the data, then during the replica process register the data. Can't this be simplified where I need to go through the process in one fell swoop. I would hope to have the capability when creating a replica to set the coordinate system during the process of actually creating the replica where the coordinate system, extraction of data, and registration is done at one time during one process. TAG: Geodatabase
... View more
05-03-2010
09:38 AM
|
28
|
4
|
2138
|
|
POST
|
How does one go about doing this exactly? I have been experiencing this as well, and it can be quite frustrating for setting when your tile service has to be turned off and when a dynamic need to be turned on for scale display.
... View more
05-03-2010
09:07 AM
|
0
|
0
|
1421
|
|
POST
|
So, it seems that I have to have blend 4 installed to get the templates, why is this a requirement?
... View more
05-03-2010
08:45 AM
|
0
|
0
|
906
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 08-01-2022 02:13 PM | |
| 1 | 08-04-2022 02:37 PM | |
| 1 | 08-01-2022 02:10 PM | |
| 1 | 08-01-2022 02:30 PM | |
| 3 | 06-21-2022 02:07 PM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|