|
BLOG
|
I am getting "The requested URL was rejected. Please consult with your administrator." when I click on the link provided.
... View more
06-26-2025
09:41 AM
|
0
|
0
|
749
|
|
POST
|
The new ratio appears to be 400x400 pixels, so now all our thumbnail images have to be squares.
... View more
06-26-2025
09:39 AM
|
1
|
1
|
1076
|
|
IDEA
|
Create a way for admins to design thumbnail layouts for different item types that can automatically be applied when a user edits a thumbnail. This would allow consistent branding directly in the ArcGIS software. The template can have an area where user submitted images are applied.
... View more
06-25-2025
10:26 AM
|
2
|
0
|
317
|
|
IDEA
|
I think it would be helpful to have a way to generate thumbnail images using AI for items in ArcGIS Enterprise. Maybe a requirement could be that the item must have metadata and that used to provide context to the AI. This could be triggered through several places. Through the UI when a user clicks on the Edit Thumbnail on the item overview page A checkbox or prompt to update the thumbnail upon saving item metadata Through the ArcGIS for Python API so it can be scripted by admins
... View more
06-25-2025
10:02 AM
|
1
|
0
|
258
|
|
IDEA
|
Would not adding a check for features in the current extent add additional overhead and delay to everything? The check would have to happen on every request, so even layers with features would be slower to render because it has to check first. For layers with no features in the extent a response would still need to be sent to the map to say there are no features in the extent.
... View more
06-25-2025
09:53 AM
|
0
|
0
|
633
|
|
POST
|
I believe you can limit the size of uploads using parameters in Survey123 Connect. But after the request is processed, I do not know of a way to compress attachments. I believe even if you delete the attachments, they are technically still in the database when using hosted feature services. I think ArcGIS Online/Enterprise just marks the record as "deleted" and no longer shows it to the user. I have read of complaints from users being unable to reclaim disk space after "cleaning up" large, hosted feature services. I think there are some database commands you can run outside of ArcGIS software, but that is unsupported and always risky. https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformparameters.htm#ESRI_SECTION1_8E28292396E148A2A60BD0126A58CFC1
... View more
06-25-2025
09:22 AM
|
0
|
0
|
355
|
|
POST
|
I thought you could do this through the silent install or config settings file but now that I go back and look through that stuff I do not see the license warning as a parameter. I do know you can adjust the number of days before the expiration to warning the user in ArcGIS Online if you are using Named User licensing. You cannot globally disable the warning, but you could drop the number of days down to one day.
... View more
06-25-2025
09:10 AM
|
1
|
1
|
488
|
|
POST
|
We have been using resampling with image services to accomplish what you are asking about. But it only works with the new Map Viewer (https://support.esri.com/en-us/bug/the-image-service-fails-to-honor-the-resampling-paramet-bug-000127841). Set the resampling to your highest and lowest view scales and when you go to cache the image service make sure you uncheck any scales you do not need (anything below 1128 in your case). Here are the Resampling parameters for one of our image services using the ArcGIS Online/Bing Maps/Google Maps tiling scheme. Our cache stops at 1128 for this service but the maximum scale for the resampling is zero so users can zoom in completely without the image disappearing in ArcGIS Enterprise or ArcGIS Pro.
... View more
06-18-2025
11:10 AM
|
0
|
0
|
697
|
|
POST
|
This is more a work around than a solution, but it might be worthwhile to create a simple Python tool that loops through the template geodatabase from the FAA and exports the contents to a new geodatabase setting the projection as it goes. The only inputs would need to be the input geodatabase, output geodatabase, and the projection for the output geodatabase.
... View more
06-11-2025
01:14 PM
|
1
|
1
|
4676
|
|
POST
|
I do not understand Esri's response. If the issue is the spatial tolerances, why not have the Define Projection tool clear out those values when the tool is executed and have a warning that is what will happen if you run the tool. Another option is to leave the spatial tolerances and produce a warning that those values do not fit the applied coordinate system. I really do not see how any of that could be a problem for empty features and tables.
... View more
06-11-2025
01:07 PM
|
5
|
0
|
4682
|
|
POST
|
I gave up trying to print directly from ArcMap and ArcGIS Pro a long time ago. Whether it was a plotter or desk inkjet printer there were always issues with printing (usually scaling where the map would be bigger than the page size or shrunk to only like 1x2 inches). The printout would look find in the ArcGIS preview. I recommend exporting to PDF and then using PDF software or software from the plotter company. I have enjoyed using HP Click to send prints in PDF format to our HP DesignJet Z6dr with V-Trimmer.
... View more
06-11-2025
12:46 PM
|
2
|
1
|
564
|
|
DOC
|
@kntr I can confirm that the Notebook runs with an ArcGIS Notebook Server Standard license at 11.5. I am also curious if this can be published from ArcGIS Pro as a web tool, but I do not have time to test that at the moment. @dheerabhat My guess is Esri went with ArcGIS Notebook for this because it allows anyone that needs this to publish on either ArcGIS Online or ArcGIS Enterprise from one code base. I don't blame them, running analysis in the cloud has a cost to them and I bet you could get this running publishing from ArcGIS Pro to use with ArcGIS Enterprise.
... View more
06-09-2025
08:05 AM
|
0
|
0
|
12332
|
|
POST
|
We are working through implementing this solution as well, and we also found that the way the solution is designed to work is you enter the running total in the spending table each time you have a payout. We did not want it to work that way either and you have to change the actcost to use the Sum function in each of the different maps that has the Spending/Expenditures information. You can also update the embedded HTML in Arcade to update the table element to show the category field. Here is one example from the Capital Project Tracker web map. if (count(related)>0){
final = `<span style="font-size:18px;"><b>Expenditures</b></span><br><table style="width:100%;border-spacing: .5rem;"><tr><td><table style="width:100%;border-collapse: collapse;">
<tr style="border-collapse: collapse; font-size:15px;"><th style="text-align:left;width:30%">Date</th><th style="text-align:center">Category</th><th style="text-align:right">Amount</th></tr>
`
var counter =0
var x = 0
for (var i in related) {
var amount = Text(i.costamount,'###,###,###')
var color = iif(x % 2==0,"#D6D6D6","#FFFFFF")
var spentDate = text(i.datespent, "MM/DD/YYYY")
var category = i.category
final += `<tr style="border-collapse: collapse;"><td style="text-align:left;width:30%;background-color:${color}">${spentDate}</td><td style="text-align:center;background-color:${color}">${category}</td><td style="text-align:right;background-color:${color}">$${amount}</td></tr>`
x++
counter++
}
final += '</table></td></tr></table>';
}
... View more
06-09-2025
06:46 AM
|
1
|
2
|
1341
|
|
IDEA
|
The help documentation for ArcGIS for Portal 11.5 says "Date only, time only, and big integer field types can now be added to sync-enabled hosted feature layers." on the What's New page. We upgrade to 11.5 this past weekend and I can confirm that sync works for hosted feature services with these data types. Can this be marked as implemented? I would delete the idea, but I cannot find a way to do so.
... View more
06-05-2025
01:55 PM
|
0
|
0
|
736
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Tuesday | |
| 1 | a month ago | |
| 1 | a month ago | |
| 1 | a month ago | |
| 1 | 03-24-2026 01:01 PM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|