Skip to main content
Question

Read all layers published to Portal

  • November 21, 2023
  • 2 replies
  • 269 views

marta.podsiad
Supporter
Forum|alt.badge.img+9

Hi,

 

I would like to read all the layers published to Esri Portal/Enterprise that are shared with particular group.

 

I use Esri ArcGIS Portal Feature Service

In the Parameters I would like to change the Feature Service so instead of reading one layer will read all layers from that group; A9 WTC in this case

image

2 replies

nielsgerrits
VIP
Forum|alt.badge.img+61

If I understand correctly what you want, this is how I do it:

  • ArcGISOnlineConnector to list all items in a group.
  • AttributeCreator to create an Attribute FeatureService
    • @Value(GroupName)/@Value(_name)(@Value(_id))
  • Use a FeatureReader (Esri ArcGIS Portal Feature Service), use the attribute FeatureService in the field Feature Service.

marta.podsiad
Supporter
Forum|alt.badge.img+9
  • Author
  • Supporter
  • November 21, 2023

If I understand correctly what you want, this is how I do it:

  • ArcGISOnlineConnector to list all items in a group.
  • AttributeCreator to create an Attribute FeatureService
    • @Value(GroupName)/@Value(_name)(@Value(_id))
  • Use a FeatureReader (Esri ArcGIS Portal Feature Service), use the attribute FeatureService in the field Feature Service.

It works. Thank you very much