IDEA
|
Glad to see this 'under consideration'. Please implement this idea. I work for a regional planning agency and the Thematic Map Series is perfect for showing various datasets (one at a time) that apply to our region. It would be wonderful if the Statistics (say acreage of X dataset across the region) could update automatically based on the Page Name or Page Number, etc.
... View more
2 weeks ago
|
0
|
0
|
39
|
POST
|
Any solution to this issue? I'm having the same trouble. I've tried saving as a new ArcPro Project and then attempt to create the Map Package. - no luck. I've pasted the Map into a new Project & tried Map Package again. No luck. All the datasets are from various ArcGIS OnLine cloud sources. I'm trying to save the Map Package locally. None of the datasets have z values but still get this error. Thanks.
... View more
09-21-2024
12:58 PM
|
0
|
0
|
3041
|
IDEA
|
Often software and web app developers require only 1 REST service be referenced in their application which loads anywhere from 1 to infinity datasets from ArcGIS OnLine. Presently, the only way to create that 1 REST service which includes multiple datasets is to load the data into a map in ArcPro and then publish that collection of data as a hosted feature service. The data management issue is that (1) often the data included in this new bundle already exist in ArcGIS OnLine each as independent REST services (2) so once this bundle of data are pushed to AGOL as a REST service with multiple items, this is now duplicating data in AGOL and (3) whenever there's a data update to any of the datasets within the bundle it now requires twice the effort to push the update to AGOL (since one has to update that initial REST service which references just 1 dataset as well as updating the REST service that contains the bundle of datasets). It would be most helpful if we could create a Group REST service that references a collection of REST services from their organization. This way whenever a hosted feature dataset within the collection is updated independently, the Group REST service stays in-sync with the source dataset(s). Presently, one can create a Group Layer (from Map Viewer in AGOL) and this almost does what I'm describing. However, the Group Layer is not a REST service and hence can not be readily used by 3rd party applications. Thank you!
... View more
09-20-2024
09:58 AM
|
1
|
0
|
320
|
IDEA
|
...I guess one work around would be to create a geofence around each sampling point? Once the field worker is within X feet of the sampling point, they'd get a message saying it's now OK to sample.
... View more
06-22-2024
06:35 AM
|
0
|
0
|
2493
|
IDEA
|
Yep, ditto. I have a new sampling crew of interns every year that must navigate back to the same sampling stations. Please add the previously proposed suggestions to assist with navigation while using Field Maps.
... View more
06-22-2024
06:30 AM
|
0
|
0
|
2500
|
POST
|
Yep, had the same issue trying to join a Table to a feature class (both stored in the same file geodatabase). The feature class had a definition query and 'keep all input records' was not honored. So, I exported the filtered feature class to a Table. Then established the join from Table to Table (neither having a definition query) and then finally the 'keep all input records' when joining was a success! ...though quite a nuisance of a work around to generate extra tables just to find the misfits.
... View more
02-21-2024
12:29 PM
|
1
|
0
|
5354
|
IDEA
|
Does anyone know if the Line Bearing, via the 'Add Geometry Attributes' tool, is calculated based on Map/Grid North, True North, or Magnetic North? Thanks.
... View more
06-01-2023
06:55 AM
|
0
|
0
|
5970
|
POST
|
Hello -- Did you ever find a solution to this issue? I'm using ArcGIS Pro 3.1.0 and this same thing has just happened with a project I was working on. Thanks. - Chris
... View more
03-25-2023
12:48 PM
|
0
|
0
|
17748
|
POST
|
Just adding that I've had the same issue when trying to save metadata to a lpkx layer package file.
... View more
01-05-2023
11:45 AM
|
0
|
0
|
1689
|
POST
|
Thanks Ken. As Josh says, your solution is quite elegant. Being pretty new to Arcade it was easier for me to follow the logic of the For Loop and building a new array ...but it's great to know more ways around the barn. Thank you. - Chris Seidel Cartographer - Martha's Vineyard Commission
... View more
08-03-2022
09:35 AM
|
0
|
1
|
12091
|
POST
|
Thanks for this solution, Josh. This is exactly what I was looking for. While my original input field is a string of concatenated comma delineated numbers, once it's Split and then recognized as an Array, I didn't have to do any other conversion of string to number. Thank you! -Chris Chris Seidel (pronouns - she, her, hers) Cartographer/GIS Coordinator Martha's Vineyard Commission<> Dukes County Interactive Maps<> Dukes County GIS Data Hub<> Mailing: PO Box 1447 Oak Bluffs MA 02557 Physical: 33 New York Ave Oak Bluffs MA Office: 508-693-3453 x120 (Tuesday thru Friday 8:00AM to 4:00PM) Saturdays - working from home; please email: seidel@mvcommission.org
... View more
08-03-2022
05:40 AM
|
1
|
1
|
1055
|
POST
|
Hi - I'm using ArcPro 3.0.0 and I'm new to Arcade. Using Calculate Field, I trying to write a bit of Arcade code so it loops thru the values of existing field which has a string of concatenated values (i.e. -99,1,2). Where an item in this string does not equal -99, I want to append the value to a new array and then ultimately return the Mean of the NewArray. So, given -99,1,2 the resulting Mean should = 1.5 So, I've tried the following code but it doesn't work. It just returns Null values: var NewArray = [] var OrigArray = split($feature.CONCATENATE_Story_Num, ",") For (var i in OrigArray) { If (i!=-99) { NewArray+=OrigArray[i]; } } return Mean(NewArray) Thanks
... View more
08-02-2022
12:43 PM
|
1
|
13
|
13193
|
POST
|
Hello -- I have an existing Survey123 form which contains a GeoPoint question and an add multiple records question (in this case, all members of your household) -- which results in the creation of a relate table. So my question is, how feasible would it be for me to batch load results from an earlier survey into this existing Survey123 feature layer? I know there's the simple append tool in AGOL but I'm unclear as to how difficult it would be to correctly associate the related records. If this is possible, I'd appreciate knowing the general workflow to accomplish this. Thanks, -Chris
... View more
10-15-2020
08:46 AM
|
0
|
1
|
668
|
POST
|
Hi - I've seen the various posts describing how to use a custom map from AGOL within Survey123 and I'm wondering if a custom geolocator can be applied to that AGOL basemap and used within the Survey123 App? In my area, the default ESRI geocoder used for addresses isn't very accurate. So, if I could replace that geocoder with a field value from my assessing data, it would provide better results. I anticipate many residents would have trouble finding their property on a map. So, if they could just enter their address to pin the location, that should provide more reliable results. Thanks, -Chris
... View more
09-07-2020
05:35 PM
|
0
|
4
|
2574
|
IDEA
|
It would be useful to add an option in an AGOL Map to apply the layer's default popup view. Currently, if a default popup view is established for a data layer after it was added to a Map, the popup does not refresh to reflect that default popup. The only way to load the default popup view is to remove the data layer and re-add it to the Map. Which then requires re-setting any other settings (i.e. symbolization, transparency, layer name, etc).
... View more
09-20-2019
09:06 AM
|
1
|
0
|
319
|
Title | Kudos | Posted |
---|---|---|
1 | 09-20-2024 09:58 AM | |
1 | 02-21-2024 12:29 PM | |
1 | 08-03-2022 05:40 AM | |
1 | 08-02-2022 12:43 PM | |
1 | 09-20-2019 09:06 AM |
Online Status |
Offline
|
Date Last Visited |
2 weeks ago
|