|
POST
|
Portal 10.#. current Field Maps I had an issue pop up. Field Crews need to attach photos to a project issue location. Field Maps on iPhone is being used. Survey123 is not used in this application, but was used to create the origin point feature. There is a point with a related table. the photos are attached to the related tab. The application has been active for several years. Last week this started happening. The row on the related table is now showing 2 times. I verified in Pro that there is only one row. Now the field crews are not able to submit photos Survey123 is not being used. I created a new point and related table row and it does not replicate. I tried creating a new feature service and the problem persists I opened the application using Collector. it also shows to entries but did allow me to submit the photos.
... View more
10-30-2024
04:22 AM
|
0
|
0
|
672
|
|
POST
|
I am looking for arcade scripting for placing of labels. Specifically I want to place the label on top of the point. Using Arcade and not the placement properties under position
... View more
08-14-2024
11:24 AM
|
0
|
0
|
528
|
|
POST
|
what projection are you using? Personally I would recommend WGS 1984 Web Mercator (auxiliary sphere) Are you using a mobile device or a computer when you observe the incorrect location.
... View more
07-30-2024
04:30 AM
|
0
|
0
|
817
|
|
POST
|
I got it to work using an array. var MainFieldArray = [repeater, notall] where repeater and notall are Variables that are defined
... View more
07-23-2024
06:31 AM
|
0
|
0
|
1645
|
|
POST
|
I need four symbol classes Site Not Started, Site in Progress, Site Complete, and Repeater only not started Before coming here I did generate all 256 combinations in symbology and then grouped them into 4 symbol classes. However, publishing them to a feature service did not work
... View more
07-23-2024
05:48 AM
|
0
|
1
|
1664
|
|
POST
|
I have a set of features that need to be defined by 4 attribute and each has 4 possible values. however this generates 256 possible options. This will allow me to determine Site Not Started, Site in Progress, Site Complete, and Repeater only not started This code works to give me all of the sites that are not started. Var not1 = ($FEATURE.ANTENNAREPLACED == 'NS' & $FEATURE.BREAKERREPLACED == 'NA' & $FEATURE.SNMPUPDATED == 'NA' & $FEATURE.REPEATER == 'NS') Var not2 = ($FEATURE.ANTENNAREPLACED == 'NA' & $FEATURE.BREAKERREPLACED == 'NS' & $FEATURE.SNMPUPDATED == 'NA' & $FEATURE.REPEATER == 'NS') Var not3 = ($FEATURE.ANTENNAREPLACED == 'NS' & $FEATURE.BREAKERREPLACED == 'NS' & $FEATURE.SNMPUPDATED == 'NA' & $FEATURE.REPEATER == 'NS') Var not4 = ($FEATURE.ANTENNAREPLACED == 'NA' & $FEATURE.BREAKERREPLACED == 'NA' & $FEATURE.SNMPUPDATED == 'NS' & $FEATURE.REPEATER == 'NS') Var not5 = ($FEATURE.ANTENNAREPLACED == 'NS' & $FEATURE.BREAKERREPLACED == 'NA' & $FEATURE.SNMPUPDATED == 'NS' & $FEATURE.REPEATER == 'NS') Var not6 = ($FEATURE.ANTENNAREPLACED == 'NA' & $FEATURE.BREAKERREPLACED == 'NS' & $FEATURE.SNMPUPDATED == 'NS' & $FEATURE.REPEATER == 'NS') Var not7 = ($FEATURE.ANTENNAREPLACED == 'NS' & $FEATURE.BREAKERREPLACED == 'NS' & $FEATURE.SNMPUPDATED == 'NS' & $FEATURE.REPEATER == 'NS') return not1 + not2 + not3 + not4 + not5 + not6 +not7 This code will result in all sites with only a repeater VAR REPEATER = ($feature.ANTENNAREPLACED == 'NA' & $feature.BREAKERREPLACED == 'NA' & $feature.SNMPUPDATED == 'NA' & $feature.REPEATER == 'NS') However, I need to figure out how to get it to create more than one symbol class I tried return with a semi colon in between the final variable
... View more
07-23-2024
05:24 AM
|
0
|
4
|
1688
|
|
POST
|
Thanks but I looked a those solutions before posting and I could not get them to work for me.
... View more
06-06-2024
11:06 AM
|
0
|
0
|
1048
|
|
POST
|
I have an application that our inspectors use to inspect projects sites. One of the readings they take is rain fall in inches. The application has a polygon. The polygon contains the Project ID. The inspector selects the polygon and then selects a link to launch Survey123. They place the pin in Survey123 and complete the inspection survey, which includes adding inches of rain if applicable. What I would like is a way to display the sum of inches of rain for each project id. The polygons are part of a different feature service. This Project only contains the inspection points $feature.PROJECT this is the identifier for both the polygon and the inspection points. It is unique in the polygon and a number of times for the inspections. $feature.RAININCHES this is the field that needs to be grouped by PROJECT and as a SUM the end result will be viewed in the Field Maps application.
... View more
06-06-2024
05:20 AM
|
1
|
2
|
1128
|
|
POST
|
The x,y you see on your Field Maps application is based on your mobile device and x,y you took is based on your collection. your mobile device such as a phone are tablet can be off by quite a few feet
... View more
06-03-2024
08:03 AM
|
1
|
0
|
3528
|
|
POST
|
Oh I get it. I read the description on the tool. You are not meant to alter the data generated by the tool as it is obtaining meta data from your GNSS receiver. I would suspect that those field are not editable and were not intended be, as they are automatically generated metadata. If you have attribute you would like to edit you may have to create them and add them to the table
... View more
05-24-2024
08:35 AM
|
0
|
1
|
1739
|
|
POST
|
just to clarify metadata is attributes about the feature class or that describes an item. You would be looking to update attributes. make sure that the field in Pro is not set to read only and that they user has editing permissions.
... View more
05-24-2024
08:15 AM
|
0
|
3
|
1753
|
|
IDEA
|
Create your field as Double. Under number format select Numeric and adjust your decimal points and under precision and scale change the scale to 10 or more The numeric is how many decimal points the field will accept the scale is what it will round it to
... View more
05-24-2024
05:07 AM
|
0
|
0
|
894
|
|
POST
|
Not to be snarky but if you features do not require a value then check the Allow Null option. Or as a work around set the default value to a space
... View more
05-23-2024
07:00 AM
|
0
|
0
|
1042
|
|
POST
|
Below the arrow you have on your image select +Add expression
... View more
05-23-2024
04:15 AM
|
0
|
0
|
1792
|
|
POST
|
I figured it out. Pro does the rounding and it is not an issue with Pro it is a built in function that I have not utilized before. When you create an Attribute for a Feature and make it a number (double) you have 3 fields that can control the formatting of the field. Under "Number Format" You then have Precision and Scale. Precision controls how many Integers are in the number and Scale determines how many decimal points will be save. You can see by the below image that I have the Scale set to 1. if it is changed to 2 it will round too 2 decimals.
... View more
05-22-2024
12:01 PM
|
1
|
0
|
1266
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 01-27-2023 07:28 AM | |
| 1 | 05-05-2026 06:56 AM | |
| 1 | 02-26-2020 07:13 AM | |
| 1 | 11-04-2019 09:14 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|