|
POST
|
Correct - TIN's can only be saved outside of a geodatabase. They seem to use the "ArcInfo coverage" storage format with an INFO directory and teh TIN itself.
... View more
06-26-2020
08:04 AM
|
5
|
0
|
3517
|
|
POST
|
That could very well be - agreed. Question - what is your ArcGIS Server release? I'd be curious to see what Esri Support Services determines - good luck!
... View more
06-26-2020
08:03 AM
|
0
|
1
|
5926
|
|
POST
|
I understand the question and thank you for the new screen grabs. As I described in my previous reply the "Scratch Workspace" is not a supported Environment Setting for the Create Fishnet GP tool whether it's run at the GP Tier or Model Process Tier - hence you see what you see. You may reference the supported Environment Settings for the Create Fishnet GP tool here. The bigger question is WHY it's not a supported Environment Setting? For that, I'd recommend reaching out to Esri Support Services and see if you can work with Data Management Team Analyst to see if they have a better answer. One test I could see is export your Model out to a Python script tool and after the import arcpy command put in the following text: # Set Geoprocessing environments arcpy.env.scratchWorkspace = "c:\\data\\tests\\scratch.gdb" arcpy.env.workspace = "c:\\data\\tests\\test_grids.gdb" Then the remainder of the Python script and make a Python Script Tool in your project toolbox. Does the Python script tool now honor the scratch workspace? Please advise.
... View more
06-25-2020
10:06 AM
|
5
|
2
|
3517
|
|
POST
|
Interesting. I do see two DEFECTS on the Esri Internals that "may" be related: BUG-000113861 - Unable to add the Keyhole Markup Language (KML) layer to the Add Data widget from ArcGIS Online content if the item is added as a KMZ file. Workaround: Add the KMZ file to Google Earth and then export the file as a KML layer. The KML layer can be added from file to the Web AppBuilder for ArcGIS Add Data widget in ArcGIS Online. ENH-000119019 - Enhance Web App Builder to add KMZ files in Add Data Widget Now the reason I think related is it seems KMZ is not supported in the Add Data widget which leads me to think perhaps KMZ is not supported in WAB. If that's true, then the GP service you're running may not be able to create the KMZ to begin with and zero features from the GP service. I'd recommend reaching out to Esri Support Services to see if they can do a deeper dive on this issue.
... View more
06-25-2020
09:56 AM
|
1
|
3
|
5926
|
|
POST
|
Hmmm...I'd recommend you contact Esri Support Services directly to see if they are aware of another workflow. The BUG has been fixed at AGP 2.6 which is scheduled to be released after the Virtual 2020 Users Conference in July.
... View more
06-25-2020
09:45 AM
|
2
|
0
|
5211
|
|
POST
|
I use ArcGIS Pro daily and have experienced little to no crashes. I am using a Dell 5285 tablet with 16 GB of RAM and an okay graphics card - works fine for my ArcGIS Pro classes.
... View more
06-24-2020
09:54 AM
|
1
|
0
|
2795
|
|
POST
|
By default, all layers in your Map View are selectable. If you wish to refine the selection to just libraries, click the 3rd button from the left on top of the Contents Pane. This is List by Selection, uncheck everything except libraries. Now use your Select tools to just select those points of interest.
... View more
06-24-2020
09:51 AM
|
1
|
0
|
1774
|
|
POST
|
Yusef - I found something that may assist with your map series question - Page Query's. In the Contents Pane, go the layer properties for your bird species and select Page Query. Here click the Bird Species field, Click Show Features that Match and click OK. Now if you've already created the Map Series, then the map series "should" show only those bird species. With regard to each map extent staying the same, in the Map Series->Map Extent properties, click Center and Maintain Scale based upon the current Map Frame Scale. I'm still trying to figure out the Map Series Groupings...but it's a start.
... View more
06-24-2020
09:39 AM
|
0
|
5
|
9709
|
|
POST
|
One thing that comes to mind based upon it working in ArcMap and not from ArcGIS Pro is that Python versions between ArcMap (2.7) and ArcGIS Pro (3.6.9) is very different. I'd recommend running the "Analyze Tools for Pro" GP tool in ArcGIS Pro for your current Python script to see if it returns any error messages in the output text file. If so, then you'll need to update your Python script for AGP to work with it.
... View more
06-24-2020
08:15 AM
|
1
|
5
|
5926
|
|
POST
|
Jamal - there are hierarchical environment settings in ArcGIS Pro (as well as ArcMap). From top level to bottom level: Application Tier Geoprocessing Tier ModelBuilder Tier Modelbuilder Process Tier Per the Help Doc - "The one exception to this hierarchy is with models. If you run the model from the ModelBuilder window, the application environment is passed down. If you run the model using its tool dialog box, the tool environment is passed down." Now, if you click ENVIRONMENTS on any GP tool UI in your Model, you will see supported environment settings for each GP tool. You can set new environment settings at the GP tier to override application tier and in the case of MB, set environment settings at the Modelbuilder Process Tier to override the ModelBuilder Tier, the GP Tier, and the Application Tier. In the Create Fishnet help doc -> Environments, you'll see Scratch Workspace is not listed as an environment setting so the tool does not inherit that setting at the application tier. This results in what you're seeing in your screen grab.
... View more
06-24-2020
07:57 AM
|
5
|
4
|
3517
|
|
POST
|
Brian - if the color is part of the attribute table for your multipatch feature class, then this thread towards the bottom shows how to Vary symbology by attribute using an attribute field. The key is getting the original RGB (or Hex) for the feature class in the attribute first, then calc'ing a new field with the new RGB (or Hex).
... View more
06-23-2020
03:07 PM
|
0
|
1
|
1538
|
|
POST
|
Manually, one can remove the Import Map command from the Insert Tab by going to AGP Options->Application->Customize the Ribbon. On the right side, go to Insert->Project->single click Import Map and click the left facing Remove button in the middle of the UI. This will remove the command from a single instance of AGP. Through the ArcGIS Pro SDK, it appears you can configure the look and feel but I've never used it personally.
... View more
06-23-2020
02:58 PM
|
0
|
1
|
2027
|
|
POST
|
Lance - I mirrored your workflow and saw that the *.kmz does not get written at all. I thought it may have to do with the Make Feature Layer GP tool. I removed the Make Feature Layer GP tool and just used the Layer to KML GP tool by itself. Ran the model and output is created. If you want to make a variable from a parameter for the input the "Layer" parameter, you can. Then you get pick an input layer each time you run the model. Hope this helps.
... View more
06-23-2020
01:34 PM
|
1
|
1
|
5926
|
|
POST
|
Ah now, I understand. Different GP tool. I'll do some digging and see what I can find.
... View more
06-23-2020
09:06 AM
|
0
|
1
|
4893
|
|
POST
|
What address locator style are you creating? For example, "US Address-Dual Ranges" or "General Gazetteer".
... View more
06-23-2020
08:38 AM
|
0
|
3
|
4893
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Monday | |
| 1 | Tuesday | |
| 1 | Tuesday | |
| 1 | Tuesday | |
| 1 | 04-06-2021 12:48 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|