make_location
This function has been deprecated. Please use the make_point function instead.
make_location makes a location column from human readable
address columns and a point column. A Location column is the amalgamation
of these two components.
Examples:
make_location(
`my_address_column`,
'Seattle',
'WA',
'98118',
make_point(
to_number(`my_latitude_column`),
to_number(`my_longitude_column`)
)
)
text, text, text, text, point -> location
text, text, text, text -> location
point -> location