|
IDEA
|
Quoting the latest docs: For layers in the feature service that can store attachments, the Create or Update operation allows editors of the feature service to add an attachment to a feature. The Update operation further enables editors to update or delete an attachment that is associated with a feature. If only the Delete operation is enabled, editors can delete attachments. I can't think of a single scenario where the user would be forbidden from deleting a feature, but should be able to delete that feature's attachments. Please align the attachment permissions with the feature permissions so that users must have delete permissions to delete attachments.
... View more
09-02-2022
08:44 AM
|
9
|
3
|
1468
|
|
POST
|
One thing you can try first is to add "?f=json" to the end of your URL, this should return the resource's JSON definition. I've encountered a lot of ArcGIS Server sites that forbid HTML viewing but are fine with JSON, you might be in the same boat.
... View more
08-25-2022
05:04 PM
|
0
|
0
|
741
|
|
POST
|
If you're rendering the map in Pro, you can go to the Map's properties and fiddle with the Clip Layers section. This'll create a clip mask that you can apply to layers, including the output of the Heat Map symbology. Here's an example of what this looks like from a layout I made: If you don't have Pro or you have the heat map as a raster then you'll need a tool that can clip rasters, not sure what the workflow is there.
... View more
08-25-2022
05:01 PM
|
0
|
0
|
1039
|
|
POST
|
Has anyone found a working setup for script tool debugging with Pro 3.0 and VS2022? I'm following the steps from the usual guide which worked fine with Pro 2.9 and VS2019 but nothing seems to be working right now. I was able to get an exception caught at one point but I haven't been able to replicate it after a dozen attempts. I don't have VS2019 on hand so I can't test if it's just an issue with VS2022 but I'd hope the version of Pro built on the latest .NET release would also support the current Visual Studio.
... View more
08-05-2022
03:18 PM
|
1
|
1
|
1211
|
|
POST
|
"import issues and third party libraries" piques my interest. I'm pretty sure when you have both runtimes installed on your server site you have two Python installations as well. If you installed packages and .pth files to your ArcMap Python directories you'll have to do the same process to your Pro Python directory (using the 3.x version of the packages of course). If that doesn't fix it I'd give your support rep a call, these sorts of issues are hard to solve without someone poking around your server machines.
... View more
07-28-2022
09:26 AM
|
0
|
1
|
1931
|
|
POST
|
If you have a DBA they would create the view and register it with the EGDB so you can work with it in Pro. They'd presumably have the knowledge to create a table view with an extra identity field for whatever your DB provider is. This requires creating a new view in the DB but it won't interfere with important processes so they hopefully won't have any issues with your request. If both tables in your join are in the same DB, another thing you can try is creating a Query Layer. That way you can join your tables together without worrying about what Pro uses as the ObjectID.
... View more
07-28-2022
09:13 AM
|
0
|
0
|
4960
|
|
IDEA
|
Please add the ability to export toolbox parameter definitions to the format used in Python toolboxes. I'd love to migrate my tools to Python toolboxes but I'm having difficulties working with parameter definitions. Editing these items in a regular toolbox and then exporting them to Python would greatly speed up the development process when using Python toolboxes.
... View more
07-18-2022
03:31 PM
|
2
|
0
|
624
|
|
IDEA
|
This exact thing caught me by surprise when I switched over to Pro, I think a quick pass through the localization files is well worth avoiding confusion from ArcMap converts.
... View more
07-08-2022
10:51 AM
|
0
|
0
|
3668
|
|
POST
|
Is the database table the foreign table? If so you may be able to wrap it in a registered view that creates a unique ID field for you. With SQL Server the query is something like: SELECT
CAST(ROW_NUMBER() OVER (ORDER BY allRecords.[SortField]) AS int) AS [OBJECTID],
allRecords.*
FROM
[database].[user].[table] allRecords
... View more
07-07-2022
04:40 PM
|
0
|
2
|
4993
|
|
POST
|
One thing you can try is checking if the code block is causing issues. You can replace the block with this 1-line expression: "{} {}".format(!QSTRM!, !LLD!) if !LLD! is not None else !QSTRM!
... View more
07-07-2022
04:25 PM
|
1
|
1
|
1704
|
|
POST
|
It's a bit hard to diagnose this from where I'm sitting, your code looks solid overall. One thing you can do is modify the loop to print out the generated SQL clauses and see what happens if you try to set a definition query with them, then select them by location etc. etc. That way you can see where the process breaks down interactively. If everything works just fine this way then I'm not sure what the next step would be. Maybe try replacing arcpy.conversion.FeatureClassToFeatureClass with arcpy.analysis.Select?
... View more
07-07-2022
04:05 PM
|
0
|
0
|
628
|
|
IDEA
|
I'll add a "everything on screen" option to that suggestion as well, I'm sure a lot of users would be more comfortable setting the extents using the map controls instead of a vertex tool
... View more
07-07-2022
03:18 PM
|
0
|
0
|
2765
|
|
POST
|
Are you converting a text field to a long integer field? The maximum value of a long field is (2^31)-1, or 2,147,483,647, which is 9 consistent decimal digits, or 10 in some cases. To store numeric versions of larger numbers, use a "double" field, that gives you 15 consistent decimal digits with no precision loss. Here's a quick field calculator example (the long field is null because the value causes the calculation to fail due to size restrictions):
... View more
07-07-2022
02:54 PM
|
0
|
0
|
1317
|
|
POST
|
I think this is what you're looking for: ArcGIS API for Javascript - Reverse Geocode.
... View more
07-07-2022
11:07 AM
|
2
|
0
|
1361
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | a week ago | |
| 1 | Thursday | |
| 1 | a week ago | |
| 1 | a week ago |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|