POST
|
My apologies I should have followed up. I figured out the issue. Margins, rulers, and guides can be toggled in the Show tab under Layout. It turned out to be a setting on the plotter. (very nice laser jet plotter that we share with Engineering) There are saved profiles and the default is the Engineering Default Page Size which is ANSI D I created a new GIS Profile that specified a modified ANSI E at 33.5" x 39.5". The plotter can do a minimum of .18" margin but I used .25" to make layout alignment a little smoother. We had not had this issue in the past but I believe one of the Engineers added a default profile. Not a big deal now that we are aware of it. In the below clip you can see that the new page size and how it lines up nice and neat.
... View more
05-07-2025
07:28 AM
|
1
|
0
|
116
|
POST
|
I am trying to export and or plot a 34 x 40 inch plot. When I show the margins it shows a dashed line that is much smaller than my plot. and when plotted it will print on 34 x 40 but clipped to this page size. In Pro it is setting the page size to 22 x 34. When I created the layout I have specified 34 x 40 and tried it as Ansi E 34 x 44. Selecting Fit to does not change anything. Earlier today I did something to get rid of that dashed line and expand it to the margins, but cannot remember or get it to work a second time. I do not have any elements outside of the paper
... View more
05-05-2025
12:09 PM
|
0
|
2
|
176
|
POST
|
Describe how you created the new database. Did you do it from the stand alone ArcCatalog or did you create it using Catalog in Pro? When you say you copied it, did you copy and paste. or did you use stand alone arc catalog to Import the data. It really should have worked the way you tried. it. can you include a snip of what the data looks like in Arc Catalog
... View more
01-27-2025
01:13 PM
|
0
|
0
|
347
|
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
|
340
|
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
|
247
|
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
|
330
|
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
|
718
|
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
|
737
|
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
|
761
|
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
|
514
|
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
|
594
|
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
|
1654
|
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
|
850
|
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
|
864
|
Title | Kudos | Posted |
---|---|---|
1 | 06-01-2022 05:27 AM | |
1 | 05-07-2025 07:28 AM | |
1 | 05-18-2018 11:55 AM | |
1 | 06-11-2020 08:33 AM | |
1 | 10-04-2019 08:14 AM |
Online Status |
Offline
|
Date Last Visited |
05-08-2025
04:30 AM
|