|
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
|
439
|
|
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
|
5600
|
|
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
|
5600
|
|
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
|
472
|
|
POST
|
Hi Sarah Thanks for the answer. I use as input my BigDataStore and I cannot find the correct URL for it I tried https://MyPortal.domain.com/arcgis/rest/services/DataStoreCatalogs/bigDataFileShares_mody/cars but I get invalid input parameter error. Thanks Mody
... View more
04-14-2019
04:24 AM
|
0
|
1
|
1005
|
|
POST
|
Hello all We have 10M points saved in csv files and used for GeoAnalytics commands. I would like to run a command that does not have query as one of the parameters (for example Calculate Density) on subset of the points (for example the density of points with type=1). I could create a new layer by the GeoAnalytics commands that will have only these points and do the analysis on it but that will required to copy all the type=1 points into the spatial temporal for each query (so duplicates data for each query). Is there any way to do it dynamically (some kind of Make Feature Layer)? Maybe put it into the manifest or anything like it? Thanks Mody
... View more
04-10-2019
06:07 AM
|
0
|
3
|
1192
|
|
POST
|
Hi All I checked with Esri and the cloud builder does not support single machine with Enterprise and GeoEvent. You can build two machines or install Enterprise and add the GeoEvent manually. Have Fun
... View more
03-31-2019
10:30 PM
|
0
|
0
|
605
|
|
POST
|
Hello all I need to demo GeoEvent. For this I would like to create a single machine in Azure that have the Enterprise and the GeoEvent role (and maybe Image server too). Is there a way to do it using the cloud builder? If I use the first option (ArcGIS Enterprise) can I create the GeoEvent too? If I create an Enterprise can I use the builder to create GeoEvent Server on the same machine? running on the options (and reading the help) for each menu option I do not see a place to put a GeoEvent server license When I use the first option in the cloud builder form and I do not see the option to give portal license when I use the GeoEvent option in the cloud builder. Thanks
... View more
03-31-2019
06:40 AM
|
0
|
1
|
781
|
|
POST
|
The way to license named users was changed in 10.7 so many licenses are coming in a json file that you need to load into the Enterprise. There is a BIG problem that loading the file REPLACING all the previous content. If you created users for 4 different levels, pro users, application users and you need to add one more Drone2Map user (for example) you have to create a new json file with ALL the licenses. Some of them are marked used and you need to restore them. Am I missing something? With old licenses each product was separated from other products (floating license) and can be replaced without touching other licenses??
... View more
03-28-2019
06:44 AM
|
1
|
1
|
868
|
|
POST
|
Hi Dan Thanks for the answer but let me clarify my question. I build a GP tool in Pro uses python 3 (this is what is used for pro). It is not in anaconda it is GP tool. Then I pack or publish it for the server. Check this: https://support.esri.com/en/technical-article/000013224 The server use python 2 to run a tool that was written in python 3. It is almost identical but still there is a few things in python 3 that will not work in python 2. Thanks
... View more
03-27-2019
02:15 AM
|
0
|
1
|
1206
|
|
POST
|
Hi All When I write a python tool in Pro it uses python 3 When I share it (as service or package) the server uses python 2. What happens if I need to use python 3 functions or libraries? see similar question here: https://gis.stackexchange.com/questions/268056/run-python-3-scripts-on-arcgis-server-10-5 Thanks
... View more
03-27-2019
12:35 AM
|
0
|
4
|
1359
|
|
POST
|
Hello all I have many images on top of each other. I would like to identify clouds in a new images, create a polygon around the cloud and make a hole in the boundary of the mosaic. This way I can see the mosaic below where there are cloud in the top mosaic. I tried to create an ecd file with the cloud signature, then use it in the classify GP tool. Then I turn it to polygon and add it to the mosaic boundary. The problem I am running into is that when the ecd file has one class only all the raster fall into this class. I need to create "all other" class that will include all the pixel that does not match the first class. Currently if I add one more class (two polygons in the layer that is used to create the ecd) many areas are a little closer to the cloud signature then the other signature and then identified as cloud. One solution is to have many classes on different areas and then ignore all other classes in the result other then the cloud class but this is not very elegant. What is the correct way to do it?
... View more
03-25-2019
12:26 AM
|
0
|
0
|
634
|
|
POST
|
Hello all Some GP tools does not have a output parameter but return some kind of objects that should be saved after. Many of the sa commands (for example Abs—Help | ArcGIS Desktop ) return a value that must be saved. After I run var result = Geoprocessing.ExecuteToolAsync(...) How do I make me result permanent? Thanks
... View more
03-21-2019
06:53 AM
|
0
|
5
|
1996
|
|
POST
|
Yesterday we made an update to our McAfee anti virus. We have many services. One Map Service have a maximum instances of 20 but it is never getting more then 8 instances running. After the update it got 20 instances running (on the two servers we have). Other map services and image services was not affected. The number of requests was not too big and publishing a different map service on the same data worked fine. When we stopped the anti virus everything went back to normal. Any ideas?
... View more
03-21-2019
12:17 AM
|
0
|
2
|
1969
|
|
POST
|
Hello all I have Geodatabase 10.5.1 over sqlserver. When different users create new layers they get different names. We use windows authentication only. The general layer name in sqlserver is Database.XXX.layerName. For some users the XXX is always DBO, for other it the user name only (this is what we need) and for others its the Domain\user. I could not understand from studio management what is the different between users. Can anybody explain please? Thanks
... View more
03-13-2019
10:56 PM
|
0
|
0
|
653
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-06-2026 09:35 PM | |
| 1 | 05-06-2026 09:43 PM | |
| 1 | 11-25-2024 06:09 AM | |
| 1 | 01-21-2026 09:53 PM | |
| 1 | 12-15-2025 10:07 PM |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|