IDEA
|
The scenario I am dealing with is an organization that merged with another. The now-merged organization took on a new name. Retaining the short name that was branded for name of the organization that already had an ArcGIS Online org is problematic. The proposed alias is one possible way to address that. Another would be to at least offer a utility to find the items in the existing org whose URLs would need to be updated. Even just providing better, more explicit guidance would help. The little bit of guidance offered in the help on considerations for changing short names includes this: "You may also need to manually update the URLs of your hosted content and resources, including web apps." But for which kind of items? Apps? Web maps? Layers? In which situations? Only not-publicly shared items? The uncertainty makes it tough to just scope the effort required to do whatever needs updating. Being clear and specific would give you information you can at least act on. Thanks
... View more
06-23-2025
03:10 PM
|
0
|
0
|
97
|
POST
|
I know your post is dated, and you've moved on. But a colleague tipped me off to your post. It is eerily akin to an issue we were having this week. And I stumbled onto a surprising way to "fix" it, if you can call it a fix. We, too, were making some updates to a feature class in an fGDB, and overwriting a layer that is the main focus of a fairly simple dashboard all wrapped around that layer: 4 selectors, and 4 tables, each essentially a different sort of the same layer (oh, how I would LOVE the TABLE element to support interative column sorting), and a couple of indicators for totals. After a recent update and republish the download button consistently produced failures. I also tested the same layer and web map on a new dashboard. Same issue. I then used Pro to export the layer into a new feature class in a new fGDB. And I was about to overwrite that to the online layer. But something caught my notice in the single "sub-layer" in the logical layer in Online. That sub-layer had been renamed from the original. As in your situation, no changes had been made to the structure of the attribute table. So I thought, what the heck. I renamed the sub-layer to the original name. And tested the dashboard. I didn't touch the web map or the dashboard itself. Download again worked. Consistently. Maybe I got lucky. But it worked for us.
... View more
04-29-2025
09:25 PM
|
0
|
0
|
881
|
POST
|
Hi, I am a Notebook newbie. I have a simple task. I need to schedule a task to calculate acres for a polygon feature layer in ArcGIS Online. I just need to access the area of the geometry, convert to acres, and set the Acres field. Below is what I have so far in my first-ever notebook. I'm not sure I'm even taking the right approach. I am currently stuck on how to get at the area of the feature shape... Any guidance is appreciated. from arcgis import GIS from arcgis.geometry import lengths, areas_and_lengths, project from arcgis.geometry import Point, Polyline, Polygon, Geometry from IPython.display import display import pandas as pd from arcgis.features import GeoAccessor, GeoSeriesAccessor ## connect to AGOL agol = GIS("home") ## access the feature service item item = agol.content.get("xyz") ## get the layer of interest as a FeatureLayer ## the example here is the first layer in the Feature Service lyr = item.layers[0] fset = lyr.query() features = fset.features for f in features: print(f.area) f.attributes['Acres'] = 1
... View more
04-29-2025
09:30 AM
|
0
|
1
|
212
|
IDEA
|
I maintain an ExB app that focuses on two large layers, one with 1.6M features and another with about 800K. The area of interest for each user varies widely, from a few townships to dozens of counties. There is also a wide difference in the size of the features when users have a smaller area of interest versus a large area of interest. Features are larger when the area of interest is larger, and features are correspondingly smaller (more dense) when the area of interest is smaller. It is impossible to provide a single scale that meets all users' needs. Performance and visualization needs dictate custom scale thresholds for the two layers for each user. Web AppBuilder provided this capability, ExB does not. Please add this capability to ExB. Thank you.
... View more
03-08-2025
08:11 AM
|
2
|
0
|
244
|
IDEA
|
I developed an ExB app that focuses most of its capabilities on two rather large feature classes. One is about 800K features, the other about 1.6M features. The smaller layer is created by aggregating the larger based on a shared attribute value and spatial proximity of the features to each other. The bulk of the beneficial capabilities of the app relate to filtering the features in either layer (whichever is more useful to the specific user) to narrow down the features to an appropriate number. Work is then done on those filtered features. The filters for the two layers are essentially the same. For each layer there are 6 filters, with a total of 46 clauses across the filters. Some of those clauses have predefined choice lists of from 18-72 options. Creating the filters for one of the layers is tedious but not difficult. The real tedium is when creating the SAME filters for the second layer. Again, another 6 filters with 46 clauses and several long choice lists. Another aspect of this app is that there is at least one major update to the underlying data each year. And we continue to enhance the fields contained in the data. So I typically "start from scratch" and create a new ExB for each data "version." It would save many hours of time to be able to export filter configurations into some sort of text format, and then import them to for use in another layer in the same ExB, or for a parallel layer in another ExB altogether. This functionality would also reduce errors that occur due to the tedious nature of entering all the clauses and pick lists. The other big benefit of export/import of filter configurations is that I could then make the modest alterations for a new data version to the text files of the filter configurations, and import them, rather than have to create the entire list of filters and clauses from scratch. Thanks for considering.
... View more
03-08-2025
08:00 AM
|
0
|
0
|
271
|
POST
|
I have the same issue. I elected to use ExB for an app because Dashboards doesn't have a user-sortable table widget. The Table widget in ExB supports sorting (though it doesn't offer the same clean, simple style, column and font settings, etc.) so I tried that. But I, too need to be able to spatially filter features in multiple map layers based on a simple selection of single attribute in one layer by the user. So now I need to go back to Dashboards. It would be great to enable users to sort the Dashboards table.
... View more
04-29-2024
09:31 PM
|
3
|
0
|
5877
|
IDEA
|
I agree. Dashboards are quicker to deploy and easier to maintain than Experience Builder apps. But not having a sortable table is a non-starter. It's been great to prototype an app, but falls short for a deployable solution.
... View more
04-24-2024
09:39 AM
|
0
|
0
|
3092
|
IDEA
|
I have similar complex need. I have several feature classes and a few non-spatial tables that are each related in a one-to-many way to two "district" feature classes. The features in one district feature class are sub-parts of the other district feature class. The user needs to be able to pick one district (from either of the two district layers), have the map zoom to that layer, and view all the "transactions" within that district (from the other features classes). The challenge is that I need to present users with various summary indicators of the other feature classes. I can find no way to use the identity of the user-chosen district (using the district filter) to inform the filtering (selection?) of the other features and non-spatial tabular records that will be summarized in an indicator, chart, etc. The added complexity is that some features span multiple districts. And the features that do span multiple districts need to be accounted for in each district they touch. So I've created a non-spatial summary table that summarizes the transaction features for each district. It should then be easy to present those summary data in an indicator, graph, etc. But, again, I can't find a way to set a trigger on the filter to set an action on the summary table to select the correct records.
... View more
03-20-2024
12:21 PM
|
0
|
0
|
1416
|
IDEA
|
I am using the Dissolve tool to aggregate groups of parcels based on common tax bill address. The parcels have had various extra attributes added to parcels, both numeric and string. It would be most useful and appropriate for our use case for the Dissolve tool to support a MAJORITY "statistics type." This would allow me to capture the dominant characteristic among the possible values for a specific attribute. I imagine some users might also find a "MINORITY" statistics type useful. Thanks.
... View more
02-05-2024
10:13 PM
|
2
|
2
|
857
|
IDEA
|
One VERY nice feature in Web AppBuilder is being able to explicitly set the presentation order of values in a predefined choice list. Apparently, Experience Builder automatically sorts value choices alphabetically. That option surely has some utility for some. But for our needs, allowing explicit placement is far superior. We have several long lists of choices in one application. Some dictated by regulations or policy, others by convention. Users a very familiar with these choices being presented in a specific order. In each case, there is an inherent grouping of the individual choices they are familiar with a comfortable with and makes sense to them. To not see those options in the familiar order is disorienting to them. It would be VERY helpful if an option could simply be offered NOT sort filter value choice lists and just use the order of choices as configured in the builder. Thanks
... View more
01-06-2024
10:50 AM
|
10
|
3
|
1024
|
IDEA
|
My need is similar but needs to be more interactive. Users need to be able to change the visibility threshold in the app, interactively. How can I provide for that? Thanks.
... View more
01-01-2024
10:14 PM
|
0
|
0
|
1917
|
IDEA
|
I spend quite a bit of time selecting and fine-tuning symbolization options for layers in web maps. The palette color picker in the "classic" Map Viewer saves me gobs of time. A color I pick there, often with transparency adjustments. That makes it quick and simple to set an appropriate color. But a BIG side benefit is that this approach allows me to assure that a color I use in one map or app can easily and quickly and confidently be "reused" to provide consistent color use across use cases. It thus sets up the ability to "enforce" standards for a set of maps and apps. When I go to a new map with a layer that I want to "reuse" a color, I can go to the palette and quickly pick, say, the magenta in the 3rd row in the last column. Choosing from the palette also sets--and continually reinforces--a spatial and visual "muscle memory" for often-used colors. Overall, this leads to clarity for users of your information products. With the new Map Viewer, you are faced with having to always use slider bars, or remember and type in hexadecimal codes, constantly referring back to another map or layer to make sure you have the color right. It's tedious and frustrating. Picking from a palette is SO much easier, faster and repeatable. PLEASE add the palette to the new Map Viewer. Thanks.
... View more
10-29-2023
08:59 AM
|
3
|
2
|
678
|
IDEA
|
In ArcGIS Pro I sometimes need to mimic the symbology of a raster layer in a vector layer. I also sometimes have the need to do the opposite: mimic vector symbology in a raster layer. It would be very helpful to enable the Import Symbology tool in the Map button bar to import the symbology from one layer to another of different type. Obviously the data types for the two layers would have to align, e.g., an integer raster and a numeric column in a vector layer. But it should also be allowed to import symbology for a text categorical raster into either a numeric OR text column in a vector layer, if the categorical values in the raster are numeric. This capability would eliminate tedious manual creation of classes and copying of RGB values between the layers.
... View more
03-16-2023
02:06 PM
|
0
|
0
|
287
|
IDEA
|
Hi Russel, Wow. I stand corrected. I will now probably really embarrass myself. How long has that capability been available?
... View more
04-06-2022
01:28 PM
|
0
|
0
|
2062
|
Title | Kudos | Posted |
---|---|---|
2 | 03-08-2025 08:11 AM | |
3 | 04-29-2024 09:31 PM | |
1 | 04-06-2022 01:23 PM | |
2 | 02-05-2024 10:13 PM | |
10 | 01-06-2024 10:50 AM |
Online Status |
Offline
|
Date Last Visited |
2 weeks ago
|