POST
|
Just to make the question more clear. It is easy to see how many instances is open but when you have many of them, each one with a different maximum it is to easy to see witch one does not have max instances big enough.
... View more
10-22-2020
06:43 AM
|
0
|
0
|
1201
|
POST
|
Hi George Thanks for the response. Technical support might say this is ok so I first need to understand if it is reasonable. I hope if somebody has a polygon with more then 10k vertexes they can test it in 3 minutes. It is a Linux (Red Hut) machine that runs Geodatabase 10.7.1 The time is changing by the polygon (not sure if it is linear). This is just some countries borders but very detailed. The border of Russia have many more vertexes and takes for ever. Thanks
... View more
10-21-2020
09:14 PM
|
0
|
0
|
880
|
POST
|
Hello all We are trying to translate some geometries in Oracle to WKT using st_AsText It takes a long tome for complex features. For example a polygon with 31k points was translated into 600k WKT string in 25 seconds. Does this reasonable time? Is there any tuning in the database or Geodatabase that can make this faster? Thanks
... View more
10-21-2020
06:25 AM
|
0
|
3
|
912
|
POST
|
Hi all I have an aprx with one map and one layer. I want to change the extent of the aprx with Python so when the user open the aprx the extent will be full extent (it was save with wrong extent. I tried the very simple code below, it does not gives an error and the aprx is saved but the extent is unchanged. When I uncomment the zoomToAllLayers I get an error. There is some solutions with layout (I do not have it in this aprx). If I work with the CURRENT aprx then the activeView give me mapView that is working but I do want it to run without open the aprx. Any ideas? import arcpy
aprx = arcpy.mp.ArcGISProject(r"xx.aprx")
map1 = aprx.listMaps()[0]
mapView = map1.defaultView
lyr = map1.listLayers()[0]
desc = arcpy.Describe(lyr)
print ( str(desc.extent))
mapView.camera.setExtent(desc.extent)
#mapView.zoomToAllLayers()
aprx.save()
... View more
10-19-2020
04:55 AM
|
1
|
2
|
1028
|
POST
|
The Explore button is great. It has a lot of functionality without need to change current tool. We would like to replace the identify with our own code but leave everything else unchanged. There is no problem to create a new tool with customize identify but we do not want to change current tool all the time from Explore to our identify (like we needed in ArcMap). Does anybody have any idea if it can be done and how? Thanks
... View more
10-14-2020
10:21 PM
|
0
|
1
|
331
|
POST
|
The download page still have 4,16 Please update Thanks
... View more
10-13-2020
09:23 PM
|
0
|
1
|
428
|
POST
|
Hi All I have a dockpane with a few buttons. some of the buttons takes a while (running a few GP tools) and all the buttons depend on each other. When I press a button I do not like the user to press any other button in the pane until the one that I pressed is finished. All other panes, pan/zoom etc. should be active. The way I found is to define IsEnable with binding for each button then when the button starts I set it to false and NotifyPropertyChanged. This works but I need to do do it for each button. I was hoping to find a general way to do it for all controls in the dockpane. I was looking for Enable here: ArcGIS Pro 2.6 API Reference Guide but it does not work. Should I use conditions and how? Thanks
... View more
10-11-2020
10:55 PM
|
0
|
2
|
971
|
POST
|
Hi all The ArcGIS Enterprise SDK is mainly for SOE & SOI Can I write a standalone program (for example service running on server) with it? Is it possible technically and by the licenses agreement? We need some service that do GIS stuff on server. Arcpy is one option but it is limited. We do not want to depend on ArcMap or Engine but the CoreHsot of Pro SDK is very limited. Runtime is one more SDK that can do it but it is one more SDK to learn.. Thanks Mody
... View more
10-10-2020
10:59 PM
|
0
|
3
|
577
|
POST
|
Hi Uma Thanks for the answer and code. I will try it. What will happened if I add a few elements one by one? Will GetElements().FirstOrDefault() always return the last element added? If it is true then I need to do a loop with AddElement, GetElements().FirstOrDefault and SetName - for each element I would like to add - correct Thanks Mody
... View more
10-07-2020
10:47 PM
|
0
|
2
|
1068
|
POST
|
Hi All I am trying to create a graphic element with code and then to get the element by the name. Code example below. The FindElement does not find anything. Open the element in Pro show that the name is still the default. In all the samples of FindElement it looks by default names (Point, Point 1, etc). Is it a bug?? Thanks Mody QueuedTask.Run(() => { //Place symbol in the center of the map var extent = MapView.Active.Extent; var location = extent.Center; //specify a symbol var pt_symbol = SymbolFactory.Instance.ConstructPointSymbol( ColorFactory.Instance.GreenRGB); //create a CIMGraphic var graphic = new CIMPointGraphic() { Symbol = pt_symbol.MakeSymbolReference(), Location = location, //center of map }; graphic.Name = "Mody"; graphicsLayer.AddElement(graphic); var elems = graphicsLayer.FindElements(new List<string>() { "Mody"})[0]; });
... View more
10-06-2020
06:39 AM
|
0
|
4
|
1133
|
POST
|
Hi all I did not tested it but maybe you should use arcpy.SetParameter in your python code to return a value?
... View more
09-30-2020
09:33 PM
|
1
|
1
|
4279
|
POST
|
A map that have only one ImageService that show Mosaic. All other parameters are default (I create tpk not tpkx). Please try. Thanks
... View more
09-30-2020
06:47 AM
|
0
|
0
|
873
|
POST
|
Hi Mark The tool runs without error message and create tpk file but it is empty. Thanks
... View more
09-29-2020
10:34 PM
|
0
|
1
|
873
|
POST
|
Hello I have an non cache ImageService on a local server. I would like to create a package of a small area from the service to load to offline Runtime application. I think the best way is to create a local cache for it. I use Pro, how do I create such a package from pro? Thanks
... View more
09-23-2020
10:47 PM
|
0
|
4
|
926
|
POST
|
You cannot write directly from Desktop to enterprise tables that are not register in the Geodatabase. You cannot start edit in ArcMap and you cannot do it in arcpy too. You must register the table or use external software (pyodbc) Have fun
... View more
09-22-2020
10:47 PM
|
2
|
2
|
2362
|
Title | Kudos | Posted |
---|---|---|
1 | 10-21-2019 11:04 PM | |
1 | 02-20-2020 05:42 AM | |
1 | 02-19-2020 11:27 PM | |
1 | 01-10-2019 07:14 AM | |
1 | 10-30-2018 11:45 PM |
Online Status |
Offline
|
Date Last Visited |
yesterday
|