Closed jonyrock closed 6 years ago
With merging the colums it may be useful to identify how you want them to merge. Some may want them to merge with spaces ('first_name last_name'). Some may want you to merge with commas, and others may want you to merge in a completely different way.
Imagine a csv has Street,City,State,Zip, you may want to merge those as "Street\nCity,State\nZip".
@lyondhill check this out
"fieldSchema": {
"coordinates": {
// fields "Latitude" and "Longitude" will be concatenated
// with "," delimiter to create "coordinates" field
"from": "${Latitude},${Longitude}",
"type": "string"
}
},
Please see examples In version 0.12 it is now available.
P.S. How do you thing, is it worth a star here on github ? :)
I like the flexibility of interpolation. It looks really nice!
Now it's possible to merge only date-related columns like this
It would be cool to be able merge all columns