Skip to content
fabienlzu edited this page Oct 24, 2024 · 4 revisions

Explore the use of R for an alternative for FME

The goal is to describe action and codes that can be used in R to replicate things that can be done in FME. This project is thought with an FME user perspective, as a guide to build on FME knowledge and logic.

Exploratory work to see if R could be a viable option.

Actions:

  • Recreate FME workspace in R
  • Create a correspondance table between functionalities in FME and code in R
  • Keep inventory or issues, see if there's way around it

Correspondance table between FME and R

All those elements are within the SF library

install.packages("sf") library(sf)

  • Tester_____________filter(field == 'value')
  • FeatureMerger______
  • AttributeManager___
  • Counter____________
  • SpatialRelator_____
  • AttributeKeeper____
  • Reprojector________
  • VertexCreator______
  • AttributeRounder___
Clone this wiki locally