|
POST
|
A similar expression should also work var code = $feature.FOREST
var areas = $feature.ACRES
var expr = ($feature.FTYPE + '\n' + Round($feature.ACRES,0) + 'ac.')
IIF((code=='F' && areas > 2), expr, '')
... View more
07-29-2021
02:53 PM
|
0
|
0
|
1572
|
|
POST
|
Alternatively, You can choose the following method. Map Tab > Add Data dropdown > Add Data from Path. JayantaPoddar_2-1627498033089.png JayantaPoddar_1-1627497959314.png This will add the WMS layer directly to the map.
... View more
07-28-2021
11:47 AM
|
0
|
0
|
3848
|
|
POST
|
You will be able to add the WMS Server using Insert tab > Connections > New WMS Server. JayantaPoddar_1-1627496525957.png Drag/Drop the desired layer from Catalog Pane > Servers > expand the specific WMS Connection JayantaPoddar_0-1627496154808.png
... View more
07-28-2021
11:22 AM
|
2
|
2
|
3867
|
|
POST
|
Could you change the following line of the code? seg_raster = arcpy.sa.SegmentMeanShift(inRaster, 14.5, 10, 20, "1 2 3", -1) Note: I have used Spectral Detail, Spatial Detail and Min Segment Size as Numeric (Not Text). Also Max Segment Size is -1 (Default).
... View more
07-28-2021
07:29 AM
|
0
|
3
|
1942
|
|
POST
|
Could you check if performing a soft reset works for your user? How To: Perform a soft ArcGIS Desktop reset
... View more
07-27-2021
12:28 PM
|
0
|
2
|
7350
|
|
POST
|
Just add 1 at the end of the expression (outside all brackets). Updated my last expression.
... View more
07-27-2021
12:01 PM
|
1
|
3
|
2536
|
|
POST
|
This is what I calculated. Please correct me if I am wrong. Result of Con Function (Raster Value) Con Function -1 Calculation of No. of Days Julian Day 1 0 16 x 0 0 2 1 16 x 1 16 3 2 16 x 2 32 4 3 16 x 3 48 5 4 16 x 4 64 6 5 16 x 5 80 7 6 16 x 6 96 8 7 16 x 7 112 9 8 16 x 8 128 10 9 16 x 9 144 11 10 16 x 10 160 12 11 16 x 11 176 13 12 16 x 12 192 14 13 16 x 13 208 15 14 16 x 14 224 16 15 16 x 15 240 17 16 16 x 16 256 18 17 16 x 17 272 19 18 16 x 18 288 20 19 16 x 19 304 21 20 16 x 20 320 22 21 16 x 21 336 23 22 16 x 22 352
... View more
07-27-2021
11:43 AM
|
0
|
5
|
2541
|
|
POST
|
Had Dan not asked the (appropriate) question, and you answered, I could have never imagined your question was related to Dates. Let me try putting it in a single expression Expression: 16*((Con(("RASTER" - (RoundDown("RASTER"))== 0.5),RoundUp("RASTER"),RoundUp("RASTER" - 0.5)))-1)+1
... View more
07-27-2021
11:27 AM
|
1
|
7
|
8129
|
|
POST
|
Does the use of Calculate Statistics bring about any improvement?
... View more
07-27-2021
11:06 AM
|
0
|
0
|
1503
|
|
POST
|
How about this? First run the following Expression in Raster Calculator. Con(("RASTER" - (RoundDown("RASTER"))== 0.5),RoundUp("RASTER"),"RASTER") Use its output Raster as the input Raster of the expression in my first post. Like this Con((RoundUp("NEWRASTER" - 0.5)==10),144,0) You may choose to create a model in Model Builder, if this is a repetitive process. I don't want to complicate the expression. That's why providing the solution in two steps.
... View more
07-27-2021
09:02 AM
|
0
|
0
|
8144
|
|
POST
|
Good Question. I couldn't find a function to do a proper Round, i.e. RoundDown values from decimal values of .0 to .499... and RoundUp Values from .5 to .99... So deducting a 0.5 will always given me a value, which if Rounded Up, gives you the desired value. A few examples 9.569 : 9.569-0.5=9.069: RoundUp(9.069)=10 9.0: 9.0-0.5=8.5: RoundUp(8.5)=9 9.25: 9.25-0.5=8.75: RoundUp(8.75)=9 *Just realised The only issue is with values ending with .5 decimals. 9.5: 9.5-0.5=9.0: RoundUp(9.0)=9 (But you want 10 in this case) 😔 Alternatively, you could add 0.5 and use RoundDown() function.
... View more
07-27-2021
08:30 AM
|
0
|
2
|
8158
|
|
POST
|
A RoundUp() function of (Raster Value minus 0.5), inside a Con() function should work. In the following example, The Raster Calculator is checking for the Round Value is equal to 10. If the argument is true it will return 144. Else it will return the original Raster Value. Con((RoundUp("RASTER" - 0.5)==10),144,"RASTER") If required, you could further add Con() condition in place of the False Value (Nested condition). The ultimate False Value, I am keeping as 0 in this example. Con((RoundUp("RASTER" - 0.5)==10),144,(Con((RoundUp("RASTER" - 0.5)==11),169,0))) Hope it helps.
... View more
07-27-2021
08:07 AM
|
0
|
4
|
8168
|
|
POST
|
You should be able to hide the field(s) from the Hosted Layer View. After creation of the Hosted Feature Layer View, navigate to its Item Details page, if required > Visualization tab > More Options (...) > Set View Definition > Define Fields. JayantaPoddar_0-1627374921555.png Uncheck the fields that should be kept hidden. JayantaPoddar_1-1627375034392.png You could use the Hosted Feature Layer View in the dashboard. Set hosted feature layer view definition
... View more
07-27-2021
01:38 AM
|
1
|
0
|
3178
|
|
POST
|
Kindly ensure the current User has at-least Read access to the desired folder(s). Copy the file path from the error message and ensure the exact path exists (from Windows Explorer).
... View more
07-26-2021
08:29 PM
|
0
|
0
|
3286
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-25-2021 09:10 AM | |
| 1 | 07-08-2021 11:09 PM | |
| 1 | 01-09-2022 06:54 PM | |
| 1 | 07-01-2021 09:35 PM | |
| 1 | 07-14-2021 11:54 AM |