# Legacy (Deprecated)

{% hint style="danger" %}
**This documentation is for the legacy JAR-based Analytics Toolbox.** These functions require cluster-based installation with Apache Sedona and are not available in the SQL Warehouse approach.

For new installations, please use the [SQL Warehouse installation](https://docs.carto.com/data-and-analysis/analytics-toolbox-for-databricks/getting-access/sql-warehouse) which provides LDS functions via Unity Catalog.
{% endhint %}

The CARTO Analytics Toolbox's functions are organized in modules based on the functionality they offer. On this page you will find the full list with direct links to their definition.

| Module | Function or Procedure                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| lds    | <p><a href="lds#geocode_table">GEOCODE\_TABLE</a><br><a href="lds#geocode_reverse_table">GEOCODE\_REVERSE\_TABLE</a><br><a href="lds#create_isolines">CREATE\_ISOLINES</a><br><a href="lds#create_routes">CREATE\_ROUTES</a><br><a href="lds#geocode">GEOCODE</a><br><a href="lds#geocode_reverse">GEOCODE\_REVERSE</a><br><a href="lds#isoline">ISOLINE</a><br><a href="lds#get_lds_quota_info">GET\_LDS\_QUOTA\_INFO</a><br><a href="lds#create_routing_matrix">CREATE\_ROUTING\_MATRIX</a></p> |
| tiler  | <p><a href="tiler#create_vector_tileset">CREATE\_VECTOR\_TILESET</a><br><a href="tiler#create_point_agg_tileset">CREATE\_POINT\_AGG\_TILESET</a><br><a href="tiler#create_h3_agg_tileset">CREATE\_H3\_AGG\_TILESET</a><br><a href="tiler#create_quadbin_agg_tileset">CREATE\_QUADBIN\_AGG\_TILESET</a></p>                                                                                                                                                                                        |

### Apache Sedona

The CARTO Analytics Toolbox for Databricks includes [Apache Sedona](https://sedona.apache.org/1.5.1/) and makes all functions from "Sedona with Apache Spark" available in your Databricks all-purpose compute cluster.

The current version included is `1.5.1` and you can find the complete reference [here](https://sedona.apache.org/1.5.1/api/sql/Overview/).

All functions should be used with the prefix `sedona_` , for example:

```sql
SELECT sedona_ST_Point(double(1.2345), 2.3456)
-- OUTPUT: POINT (1.2345 2.3456)
```
