Socrata was acquired by Tyler Technologies in 2018 and is now the Data and Insights division of Tyler. The platform is still powered by the same software formerly known as Socrata but you will see references to Data & Insights going forward.

make_location

Function: 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`)
      )
    )

Signatures
text, text, text, text, point -> location
text, text, text, text -> location
point -> location