|
POST
|
I have a problem with this. My SDK automatically updated to 2.4 but when I build and work with pro 2.3 everything is fine. Then I upgraded my machine only to pro 2.4 After I build the addin, when I install it on 2.3 machines (no SDK) I can see the addin in pro but when a press a button that shows Dockpane - nothing happen.
... View more
07-16-2019
10:04 PM
|
0
|
1
|
3264
|
|
POST
|
Hi all I would like to use ArcObjects to call network service and do some routes. I use to use INAServer2 https://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#INAServer2.htm but it say that it is deprecated (long time ago). It say in the docs "Use the SOAP or REST API instead" I could not find an example - does anybody have a sample code? Interested point - the JAVA doc does not say this interface is deprecated http://help.arcgis.com/EN/SDK/10.0/JAVA_AO_ADF/api/arcobjects/com/esri/arcgis/networkanalyst/INAServer2.html Thanks
... View more
07-14-2019
10:49 PM
|
0
|
0
|
430
|
|
POST
|
Hi All ArcGIS pro is running indexing processing all the time. This process is not needed for some people. It is easy to disable it in the option menu. Is there a way to do it automatically in the installation or set anything in registery that will disable it? We would like the default installation (done by system people) to enable this and then let anybody that need it turn it on. Thanks
... View more
07-07-2019
10:02 PM
|
0
|
0
|
527
|
|
POST
|
Do you have "Geodatabase" or just a database? Do you have ArcGIS metadata tables (GDB_ITEMS etc.) You must have these tables if you want to register into geodatabase. Use Create Enterprise geodatabase GP tool. Have Fun Mody
... View more
06-15-2019
09:46 PM
|
0
|
2
|
1491
|
|
POST
|
Does this question should be in the ArcGIS online? I understand it is slow in Desktop not in web. The first thing is to "Compress" the FGDB (makes it read only but this layer does not update very often). The second thing is to put it local on the client machine (It should not be too big) or at least on shared SSD disk. Have fun Mody
... View more
06-15-2019
09:43 PM
|
0
|
0
|
1864
|
|
POST
|
When you start ArcMap it check out a license. Can you explain exactly what you need?
... View more
06-05-2019
10:40 PM
|
0
|
3
|
2882
|
|
POST
|
You can change the license server using ARCGIS_LICENSE_FILE https://support.esri.com/en/technical-article/000002010
... View more
06-04-2019
10:51 PM
|
0
|
5
|
2882
|
|
POST
|
The possibilities here are endless so it is impossible to create formulas. As usual, trying is the best way. In the statistics of the server you can create a report of maximum of running instances per service. If your service get to the maximum often you should think about increasing the maximum. The way the SOC is using the resources is very different. it depend on number of layers, the data source (shape file on SSD is quicker then database), the network and other things. Mody
... View more
06-03-2019
10:34 PM
|
8
|
2
|
11471
|
|
POST
|
Hi all I am using this document to design my enterprise configuration: https://enterprise.arcgis.com/en/get-started/latest/windows/additional-server-deployment.htm to build GeoEvent + GeoAnalytics using the cloud builder (Azure). I would like to use AGOL as my enterprise and not install it - is this possible? I am not sure how to use the builder to create what I need: 1) Install the GeoEvent (second radio button). 2) How do I install spatiotemporal on a different machine using the builder - there is no such option? 3) Can I install the spatiotemporal on the GeoEvent machine? 4) Then I have to install GeoAnalytics - do I have to install local Enterprise for this or I can use AGOL. 5) How do I connect the GeoAnalytics to the spatiotemporal? The cloud builder is a great tool but we need a few scenarios documented on how to make it using the builder... Thanks
... View more
05-07-2019
01:48 AM
|
0
|
1
|
723
|
|
POST
|
The error is not very clear but it say "The current license file for this server is from previous version" Check that your provision file is for 10.7
... View more
05-07-2019
01:37 AM
|
0
|
0
|
836
|
|
POST
|
Another idea is to add the coordinate as fields (AddXY) then run a process that round them into the closest 1 meter (or 10 meters depending on your data). Then points with the same coordinate values are identical (without changing the points themselves unless you want to do it). Have Fun
... View more
05-05-2019
10:07 PM
|
1
|
0
|
842
|
|
POST
|
Hi I am trying to write a code that runs a few GP tools one after another. I would like to keep using Pro while the process is running. I mean turn on/off layers, add data etc, not only pan/zoom. I got BUG-000122017 from support but there MUST be a way to do it. The GP tools is running from a button on Dockpane. When you run GP tool from the standard dockpane you can do it all. Please help
... View more
05-01-2019
12:50 AM
|
0
|
0
|
381
|
|
POST
|
Hi Uma Thanks, it works (why is the intellisense does not show this option?). Let me take it one step foreword. The reason I need this is to clean some combo boxes. I have some input form to enter field values. If the user reopen the dock to enter new record I would like the combo to return to empty just like the first time the dock was opened. Below is a short snippet of my code, I need the select source to be empty even if it has some value the last time the dock was visible. Thanks protected override void OnShow(bool isVisible)
{
//System.Windows.MessageBox.Show("h");
if(isVisible == true)
{
_SelectList1 = "";
NotifyPropertyChanged(() => SelectSource) ;
}
}
public string SelectSource
{
get
{ return _SelectList1; }
set
{ SetProperty(ref _SelectList1, value, () => SelectSource); }
}
public ObservableCollection<string> List1
{
get
{
if (_List1 == null)
{
_List1 = new ObservableCollection<string>();
_List1.Add("one");
_List1.Add("two");
_List1.Add("three");
}
return _List1;
}
set
{
SetProperty(ref _List1, value, () => _List1);
}
}
... View more
04-30-2019
11:19 PM
|
0
|
0
|
5106
|
|
POST
|
Hi I found a way to do it but this is not MVVM at all... In my xaml in the DockPane I set <DockPane ....Unloaded="DockPanel_Unloaded"> Then I have a routine in my class of the xaml (and NOT in my modelView) looks like this: private void DockPanel_Unloaded(object sender, RoutedEventArgs e) It is called and working. I tried to put in xaml Unloaded="{Binding closePane}" but could not make it working. Anybody?
... View more
04-29-2019
10:48 PM
|
0
|
6
|
5106
|
|
POST
|
Hello all I would like to understand what can be done in parallel in Pro. I have a Dockpane with a button that run a long time (a few minutes) GP tool. While it is running what should I be able to do? I can pan and zoom. Can I add/ remove layers from toc, turn visibility on/off? Can I go to anther Dockpane and use buttons on it? What are the limitation and is there a better way to program the Dockpane and the call to the GP tool to make it better. Thanks (and happy PASSOVER) Mody
... View more
04-15-2019
05:10 AM
|
0
|
0
|
416
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | 11-25-2024 06:09 AM | |
| 1 | 01-21-2026 09:53 PM | |
| 1 | 12-15-2025 10:07 PM | |
| 1 | 09-17-2025 06:35 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|