Select to view content in your preferred language

Shrink to seed made a polygon

811
4
Jump to solution
12-15-2022 02:25 AM
VassilisTrigkas1974
Occasional Contributor

Hi!

When I'm trying to run shrink to seed it creates a polygon inside seed "hole"

 

VassilisTrigkas1974_0-1671099854991.png

any idea why happen this?

 

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
AmirBar-Maor
Esri Regular Contributor

@VassilisTrigkas1974 

I suspect it is your seed symbology. The Seed is actually a small round polygon.

You can symbolize it as you please.

If you click on the Seed symbol

AmirBarMaor_0-1671104045028.png

you can modify the symbology 

AmirBarMaor_1-1671104104303.png

 

to make sure this is a symbology issue you can always add the parcel fabric to a new map, get the default symbology and see how it looks.

Other thoughts: could also be 2 overlapping parcels from different types, a small round parcel that looks like a seed.

Please confirm if this is indeed a symbology issue

 

View solution in original post

0 Kudos
4 Replies
AmirBar-Maor
Esri Regular Contributor

@VassilisTrigkas1974 

I suspect it is your seed symbology. The Seed is actually a small round polygon.

You can symbolize it as you please.

If you click on the Seed symbol

AmirBarMaor_0-1671104045028.png

you can modify the symbology 

AmirBarMaor_1-1671104104303.png

 

to make sure this is a symbology issue you can always add the parcel fabric to a new map, get the default symbology and see how it looks.

Other thoughts: could also be 2 overlapping parcels from different types, a small round parcel that looks like a seed.

Please confirm if this is indeed a symbology issue

 

0 Kudos
VassilisTrigkas1974
Occasional Contributor

I think you are right!!!! 😁

VassilisTrigkas1974_0-1671104520649.png

 

VassilisTrigkas1974
Occasional Contributor

I checked it again and finally, the color comes from the parcel, not from the seed!

As you can see from the image.

AmirBar-Maor
Esri Regular Contributor

Thanks for confirming. If you want to symbolize based on a field (Category) as well as the Seed, you might need a few lines in Arcade.

I think something like this would work:

If ($feature.IsSeed == 1) return 'Seed';
return $feature.<your field name>;

 You enter it in the symbology pane:

AmirBarMaor_0-1671106022872.png