Skip to main content
Solved

Has anyone used FME to Create ArcGIS Online Feature Collections?

  • August 9, 2016
  • 2 replies
  • 34 views

mmccart
Enthusiast
Forum|alt.badge.img+28

I am trying to use FME to create ArcGIS Online Feature Collections instead of Feature Services. I assume I need to write some Python script for it but wanted to see if anyone else had perfected this process.

-Mark

Best answer by mmccart

Working with Esri, they provided us a .py file for this function. It takes an existing Feature Service on AGOL, exports it to a temporary Feature Collection and then overwrites an existing Feature Collection. Finally, it will delete the temporary Feature Collection. It can be found here: Esri Transportation 511 Tool

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

bruceharold
Supporter
Forum|alt.badge.img+19
  • Supporter
  • August 9, 2016

See if the new arcgis Python module has what you need, it is way simpler than using the REST calls in the underlying API:

https://developers.arcgis.com/python/


mmccart
Enthusiast
Forum|alt.badge.img+28
  • Author
  • Enthusiast
  • Best Answer
  • August 16, 2016

Working with Esri, they provided us a .py file for this function. It takes an existing Feature Service on AGOL, exports it to a temporary Feature Collection and then overwrites an existing Feature Collection. Finally, it will delete the temporary Feature Collection. It can be found here: Esri Transportation 511 Tool