|
IDEA
|
Yes please. The gp already calculates these vertices and then for polylines just connects them right? Same for polygons, it just creates a polygon out of the calculated vertices. In my request I would just want those calculated vertices as a point feature class.
... View more
04-24-2020
11:05 AM
|
0
|
1
|
3697
|
|
IDEA
|
It puts them in the center which is not what I need for my tasks In addition to creating the output fishnet, a new point feature class is created with label points at the center of each fishnet cell if the Create Label Points parameter is checked (labels = 'LABELS' in Python) The name of this feature class is the same as the output feature class with a suffix of _label and is created in the same location.
... View more
04-24-2020
10:42 AM
|
0
|
1
|
3697
|
|
IDEA
|
I use the gp function Create Fishnet (Data Management) quite a bit in my workflow. My request is to add POINT output to the function. All the logic is already in the function since the vertices have to be calculated.A grid consisting of just the points would help me out with certain tasks.
... View more
04-24-2020
10:01 AM
|
0
|
11
|
4327
|
|
IDEA
|
Here is the final product with Fishnet geoprocessing + ArcObjects Densify.
... View more
04-24-2020
09:43 AM
|
0
|
0
|
2172
|
|
IDEA
|
So I did as you suggested. Used the Fishnet geoprocessing. Then after that I ran a Densify on each geometry. Seems to do the job.
... View more
04-23-2020
11:09 AM
|
0
|
0
|
2172
|
|
POST
|
So forgive me as I navigate the plethora of documentation. As Im going through the ProConcepts articles on Geoprocessing i came across several things that are confusing: https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Geoprocessing#executing-a-tool-with-event-handling Was it meant for the _cts.Cancel to be included only in the first case? Putting it on the second and third cases will cancel the process as soon as progress is reported, correct? https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Geoprocessing#executing-a-tool-with-the-progress-dialog , The parameters of the ExecuteToolAsync include new CancelableProgressorSource(progDlg).Progressor and thats ok. however this variable is already declared with var progSrc = new CancelableProgressorSource(progDlg). So shouldn't the parameter be progSrc.Progressor otherwise progSrc is declared but never used.
... View more
04-23-2020
06:23 AM
|
0
|
0
|
704
|
|
IDEA
|
Yes!!! I would love this. My issue is my companie's VPN. To get a concurrent license for ArcMap we have to VPN to our network. Sometimes getting a license works and sometimes it doesn't. For ArcGIS Pro, as stated above, the license for a single named user can be had through the ESRI portal and we don't have to VPN to the company network. Works great. Except it doesn't support concurrent licensing through the ESRI portal. Seems to me that all the technology is there to do this.
... View more
04-20-2020
02:26 PM
|
0
|
0
|
3701
|
|
POST
|
I am developing an add-in using VB.NET and am well underway with creating about 4 or 5 Dockpanes required for each function. In the ArcMap version these functions have settings that are customized by the user. I display those setting with a WinForm but something tells me that is not the recommendation for Pro. Should I create my settings in a Backstage, a Settings Dockpane, or some other control?
... View more
04-20-2020
01:16 PM
|
0
|
2
|
1017
|
|
POST
|
Very good video indeed. The control I was needing is the Dockpane. Many Thanks.
... View more
04-20-2020
11:32 AM
|
0
|
0
|
3131
|
|
POST
|
If I set a status message before I run the gp tool MyApp.StatusBar.Message(0) = "Clipping raster with " & inClippingPolyFullName & "..." Then after the gp tool finishes it has cleared my message. Most times its ok but I am running some loops and its useful for the user to see what is happening. I see what you are saying about setting up the gp object. However, every sample on the ESRI site Ive seen shows it as I have posted ArcObjects 10 .NET SDK Help . Not sure what the difference is though.
... View more
04-17-2020
07:26 AM
|
0
|
0
|
788
|
|
POST
|
Any gp really. I see it quite a bit on Clip. So code looks like: 'initialize the geoprocessor. Dim GP As GeoProcessor = New GeoProcessor GP.AddOutputsToMap = False 'create an IVariantArray to hold the parameter values. Dim parameters As IVariantArray = New VarArray parameters.Add(inSurfaceFullName) 'input surface parameters.Add("") ' parameters.Add(outClippedRasterFullName) parameters.Add(inClippingPolyFullName) parameters.Add("") parameters.Add("ClippingGeometry") parameters.Add("NO_MAINTAIN_EXTENT") 'execute the model tool by name. Dim res As IGeoProcessorResult = GP.Execute("Clip_management", parameters, Nothing) As this is processing the output messages get sent to the status bar and seem to overwrite what I wrote there manually.
... View more
04-16-2020
02:02 PM
|
0
|
2
|
788
|
|
POST
|
My add-in logic is all written in .NET so that's where my confusion is. I don't code very much in Python and am looking for just a way to get the users to provide input, run some code, and then use the geoprocessing functions. But all through ArcObjects (if that's what its still called in Pro SDK).
... View more
04-16-2020
01:56 PM
|
0
|
0
|
3131
|
|
POST
|
This is an add-in so I am doing everything through .NET and WPF.
... View more
04-07-2020
07:36 AM
|
1
|
0
|
3131
|
|
POST
|
So am not sure how to ask this but when in ArcGIS Pro 2.5 I can pull up the Geoprocessing pane and then execute a geoprocessing function like "Buffer". How would I do something similar in my custom add-in? Basically I am taking 3 standard ESRI geoprocessing functions and setting my companies standard options internally so the user doesn't have to do it and then running the entire chain to get an output. I'm looking through the tons of community samples but cant figure out where to start.
... View more
04-06-2020
06:05 PM
|
1
|
6
|
3296
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-25-2020 09:25 PM | |
| 1 | 08-17-2022 11:17 AM | |
| 1 | 07-24-2022 01:36 PM | |
| 1 | 07-14-2022 11:22 AM | |
| 1 | 07-14-2022 10:29 AM |
| Online Status |
Offline
|
| Date Last Visited |
10-27-2025
11:11 AM
|