Need a Glossary

806
3
11-25-2020 08:00 AM
JillRKelly
New Contributor II

It would really help to have a glossary of ESRI terms that all sound alike and are opaque to users:

feature layer, hosted feature layer, published feature layer, FeatureCollection, feature layer collection, feature service, hosted feature service, feature layer collection service . . . .

 

 

Tags (1)
0 Kudos
3 Replies
JoshuaBixby
MVP Esteemed Contributor

Like Esri Support GIS Dictionary? It isn't perfect, but it is good, especially for new users.

0 Kudos
JillRKelly
New Contributor II

Thank you for the effort, but no.  I'm not even a new user, but when I look up "feature service," it says:

[ESRI software] A service that uses the ArcIMS spatial server feature streaming capabilities. The server bundles data and streams it to the requesting client. Since more of the processing is done in the Java applet, requests are sent to an ArcIMS spatial server only when additional data is needed.

As a user of the python API, this reads simply as "not for you." 

The term I am trying to unpack is "hosted feature layer collection services."  I think what is needed is a glossary specifically for the python API docs. 

JoshuaBixby
MVP Esteemed Contributor

Fair enough, the ArcGIS API for Python documentation is wanting at times. It isn't uncommon for the ArcGIS API for Python team to make up new terminology when existing ArcGIS REST API terminology already exists, which I think is a disservice because it creates a level of obfuscation between the ArcGIS API for Python and the ArcGIS REST API.

You have stumbled onto one of those situations; specifically, FeatureLayerCollection.  The concept of a "feature layer collection" only exists in the ArcGIS API for Python.  Looking at the definition of FeatureLayerCollection:

A FeatureLayerCollection is a collection of feature layers and tables, with the associated relationships among the entities.

In a web GIS, a feature layer collection is exposed as a feature service with multiple feature layers.

So, a "feature layer collection" is really just a feature service by a different name.  Given the ArcGIS API for Python started as a wrapper for the ArcGIS REST API, and primary remains so today, it seems odd to create this new terminology.  Can a FeatureLayerCollection really exist independent of web GIS?

In terms of unpacking the phrase, "hosted" is sort of a throw away term.  Isn't every GIS service hosted in some way, shape, or form?  I think "hosted" generally is applied to services in AGOL or on-premises Portal as opposed to stand-alone GIS Server, but I consider the term just chaff.  As talked about above, "feature layer collection" is just a "feature service."  So, "hosted feature layer collection services" equates to "feature service services."