Hello,
I am starting using FME Workbench and it's amazing!
A quick question as I can't manage to achieve what I would like.
Basically I am starting with 2 features, Airports and Runaways. I have a OneToMany relations between those 2 features.
What I would like to do is in that my final GEOJson looks like bellow, meaning that the list of my runaways with their properties + geometry if needed are nested into the Airport feature.
I managed well using InlineQuerier to have the data I need and execute the join I need the thing I don't know is what is the flow to build properly the GEOJson as I want.
{
"type" : "FeatureCollection",
"name" : "Airports",
"features" : /
{
"type" : "Feature",
"geometry" : null,
"properties" : {
"someAirportProperty" : "someAirportValue",
"runaways": o
{
"someRunawayProperty": "someRunawayValue"
}
]
}
},
]
}