├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── bigquery-ded.yml │ ├── bigquery.yml │ ├── databricks.yml │ ├── postgres-ded.yml │ ├── postgres.yml │ ├── publish-release.yml │ ├── redshift-ded.yml │ ├── redshift.yml │ ├── snowflake-ded.yml │ └── snowflake.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── clouds ├── bigquery │ ├── .env.template │ ├── CHANGELOG.md │ ├── CHANGELOG.old.md │ ├── Makefile │ ├── README.md │ ├── common │ │ ├── .sqlfluff │ │ ├── DROP_FUNCTIONS.sql │ │ ├── Makefile │ │ ├── VERSION.sql │ │ ├── analytics-toolbox-bigquery.png │ │ ├── build_modules.js │ │ ├── copy_module_permissions.sh │ │ ├── list_functions.js │ │ ├── list_libraries.js │ │ ├── package.json │ │ ├── python3_requirements.txt │ │ ├── rollup.config.js │ │ ├── run-query.js │ │ ├── run-script.js │ │ ├── set_module_permissions.sh │ │ ├── set_module_permissions_group.sh │ │ ├── sql_lint.py │ │ ├── test-extend.js │ │ └── test-utils.js │ ├── libraries │ │ └── javascript │ │ │ ├── Makefile │ │ │ ├── libs │ │ │ ├── accessors.js │ │ │ ├── clustering.js │ │ │ ├── constructors.js │ │ │ ├── h3.js │ │ │ ├── measurements.js │ │ │ ├── placekey.js │ │ │ ├── processing.js │ │ │ ├── quadkey.js │ │ │ ├── random.js │ │ │ ├── s2.js │ │ │ └── transformations.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── index.js │ │ │ ├── quadkey.js │ │ │ ├── random.js │ │ │ └── s2.js │ │ │ └── test │ │ │ ├── accessors.test.js │ │ │ ├── clustering.test.js │ │ │ ├── constructors.test.js │ │ │ ├── h3.test.js │ │ │ ├── measurements.test.js │ │ │ ├── placekey.test.js │ │ │ ├── processing.test.js │ │ │ ├── quadkey.test.js │ │ │ ├── random.test.js │ │ │ ├── s2.test.js │ │ │ └── transformations.test.js │ ├── modules │ │ ├── Makefile │ │ ├── doc │ │ │ ├── accessors │ │ │ │ ├── ST_ENVELOPE.md │ │ │ │ └── _INTRO.md │ │ │ ├── clustering │ │ │ │ ├── ST_CLUSTERKMEANS.md │ │ │ │ └── _INTRO.md │ │ │ ├── constructors │ │ │ │ ├── ST_BEZIERSPLINE.md │ │ │ │ ├── ST_MAKEELLIPSE.md │ │ │ │ ├── ST_MAKEENVELOPE.md │ │ │ │ ├── ST_TILEENVELOPE.md │ │ │ │ └── _INTRO.md │ │ │ ├── geohash │ │ │ │ ├── GEOHASH_BOUNDARY.md │ │ │ │ └── _INTRO.md │ │ │ ├── h3 │ │ │ │ ├── H3_BOUNDARY.md │ │ │ │ ├── H3_CENTER.md │ │ │ │ ├── H3_COMPACT.md │ │ │ │ ├── H3_DISTANCE.md │ │ │ │ ├── H3_FROMGEOGPOINT.md │ │ │ │ ├── H3_FROMLONGLAT.md │ │ │ │ ├── H3_HEXRING.md │ │ │ │ ├── H3_INT_TOSTRING.md │ │ │ │ ├── H3_ISPENTAGON.md │ │ │ │ ├── H3_ISVALID.md │ │ │ │ ├── H3_KRING.md │ │ │ │ ├── H3_KRING_DISTANCES.md │ │ │ │ ├── H3_POLYFILL.md │ │ │ │ ├── H3_POLYFILL_MODE.md │ │ │ │ ├── H3_POLYFILL_TABLE.md │ │ │ │ ├── H3_RESOLUTION.md │ │ │ │ ├── H3_STRING_TOINT.md │ │ │ │ ├── H3_TOCHILDREN.md │ │ │ │ ├── H3_TOPARENT.md │ │ │ │ ├── H3_UNCOMPACT.md │ │ │ │ ├── _H3_COVERINGCELLIDS.mdx │ │ │ │ ├── _INTRO.md │ │ │ │ └── images │ │ │ │ │ ├── H3_POLYFILL_MODE_center.png │ │ │ │ │ ├── H3_POLYFILL_MODE_contains.png │ │ │ │ │ └── H3_POLYFILL_MODE_intersects.png │ │ │ ├── measurements │ │ │ │ ├── ST_ANGLE.md │ │ │ │ ├── ST_MINKOWSKIDISTANCE.md │ │ │ │ └── _INTRO.md │ │ │ ├── placekey │ │ │ │ ├── PLACEKEY_FROMH3.md │ │ │ │ ├── PLACEKEY_ISVALID.md │ │ │ │ ├── PLACEKEY_TOH3.md │ │ │ │ └── _INTRO.md │ │ │ ├── processing │ │ │ │ ├── ST_DELAUNAYLINES.md │ │ │ │ ├── ST_DELAUNAYPOLYGONS.md │ │ │ │ ├── ST_POLYGONIZE.md │ │ │ │ ├── ST_VORONOILINES.md │ │ │ │ ├── ST_VORONOIPOLYGONS.md │ │ │ │ └── _INTRO.md │ │ │ ├── quadbin │ │ │ │ ├── QUADBIN_BBOX.md │ │ │ │ ├── QUADBIN_BOUNDARY.md │ │ │ │ ├── QUADBIN_CENTER.md │ │ │ │ ├── QUADBIN_DISTANCE.md │ │ │ │ ├── QUADBIN_FROMGEOGPOINT.md │ │ │ │ ├── QUADBIN_FROMLONGLAT.md │ │ │ │ ├── QUADBIN_FROMQUADKEY.md │ │ │ │ ├── QUADBIN_FROMZXY.md │ │ │ │ ├── QUADBIN_ISVALID.md │ │ │ │ ├── QUADBIN_KRING.md │ │ │ │ ├── QUADBIN_KRING_DISTANCES.md │ │ │ │ ├── QUADBIN_POLYFILL.md │ │ │ │ ├── QUADBIN_POLYFILL_MODE.md │ │ │ │ ├── QUADBIN_POLYFILL_TABLE.md │ │ │ │ ├── QUADBIN_RESOLUTION.md │ │ │ │ ├── QUADBIN_SIBLING.md │ │ │ │ ├── QUADBIN_TOCHILDREN.md │ │ │ │ ├── QUADBIN_TOPARENT.md │ │ │ │ ├── QUADBIN_TOQUADKEY.md │ │ │ │ ├── QUADBIN_TOZXY.md │ │ │ │ ├── _INTRO.md │ │ │ │ └── images │ │ │ │ │ ├── QUADBIN_POLYFILL_MODE_center.png │ │ │ │ │ ├── QUADBIN_POLYFILL_MODE_contains.png │ │ │ │ │ ├── QUADBIN_POLYFILL_MODE_intersects.png │ │ │ │ │ └── QUADBIN_POLYFILL_MODE_polygon.png │ │ │ ├── random │ │ │ │ ├── ST_GENERATEPOINTS.md │ │ │ │ └── _INTRO.md │ │ │ ├── s2 │ │ │ │ ├── S2_BOUNDARY.md │ │ │ │ ├── S2_CENTER.md │ │ │ │ ├── S2_FROMGEOGPOINT.md │ │ │ │ ├── S2_FROMHILBERTQUADKEY.md │ │ │ │ ├── S2_FROMLONGLAT.md │ │ │ │ ├── S2_FROMTOKEN.md │ │ │ │ ├── S2_FROMUINT64REPR.md │ │ │ │ ├── S2_RESOLUTION.md │ │ │ │ ├── S2_TOCHILDREN.md │ │ │ │ ├── S2_TOHILBERTQUADKEY.md │ │ │ │ ├── S2_TOTOKEN.md │ │ │ │ ├── S2_TOUINT64REPR.md │ │ │ │ └── _INTRO.md │ │ │ └── transformations │ │ │ │ ├── ST_BUFFER.md │ │ │ │ ├── ST_CENTERMEAN.md │ │ │ │ ├── ST_CENTERMEDIAN.md │ │ │ │ ├── ST_CENTEROFMASS.md │ │ │ │ ├── ST_CONCAVEHULL.md │ │ │ │ ├── ST_DESTINATION.md │ │ │ │ ├── ST_GREATCIRCLE.md │ │ │ │ ├── ST_LINE_INTERPOLATE_POINT.md │ │ │ │ ├── ST_POINTONSURFACE.md │ │ │ │ └── _INTRO.md │ │ ├── sql │ │ │ ├── .sqlfluffignore │ │ │ ├── accessors │ │ │ │ └── ST_ENVELOPE.sql │ │ │ ├── clustering │ │ │ │ └── ST_CLUSTERKMEANS.sql │ │ │ ├── constructors │ │ │ │ ├── ST_BEZIERSPLINE.sql │ │ │ │ ├── ST_MAKEELLIPSE.sql │ │ │ │ ├── ST_MAKEENVELOPE.sql │ │ │ │ └── ST_TILEENVELOPE.sql │ │ │ ├── geohash │ │ │ │ └── GEOHASH_BOUNDARY.sql │ │ │ ├── h3 │ │ │ │ ├── H3_BOUNDARY.sql │ │ │ │ ├── H3_CENTER.sql │ │ │ │ ├── H3_COMPACT.sql │ │ │ │ ├── H3_DISTANCE.sql │ │ │ │ ├── H3_FROMGEOGPOINT.sql │ │ │ │ ├── H3_FROMLONGLAT.sql │ │ │ │ ├── H3_HEXRING.sql │ │ │ │ ├── H3_INT_TOSTRING.sql │ │ │ │ ├── H3_ISPENTAGON.sql │ │ │ │ ├── H3_ISVALID.sql │ │ │ │ ├── H3_KRING.sql │ │ │ │ ├── H3_KRING_DISTANCES.sql │ │ │ │ ├── H3_POLYFILL.sql │ │ │ │ ├── H3_POLYFILL_TABLE.sql │ │ │ │ ├── H3_RESOLUTION.sql │ │ │ │ ├── H3_STRING_TOINT.sql │ │ │ │ ├── H3_TOCHILDREN.sql │ │ │ │ ├── H3_TOPARENT.sql │ │ │ │ ├── H3_UNCOMPACT.sql │ │ │ │ └── _H3_COVERINGCELLIDS.sql │ │ │ ├── measurements │ │ │ │ ├── ST_ANGLE.sql │ │ │ │ └── ST_MINKOWSKIDISTANCE.sql │ │ │ ├── placekey │ │ │ │ ├── PLACEKEY_FROMH3.sql │ │ │ │ ├── PLACEKEY_ISVALID.sql │ │ │ │ └── PLACEKEY_TOH3.sql │ │ │ ├── processing │ │ │ │ ├── ST_DELAUNAYLINES.sql │ │ │ │ ├── ST_DELAUNAYPOLYGONS.sql │ │ │ │ ├── ST_POLYGONIZE.sql │ │ │ │ ├── ST_VORONOILINES.sql │ │ │ │ ├── ST_VORONOIPOLYGONS.sql │ │ │ │ ├── __DELAUNAYGENERIC.sql │ │ │ │ ├── __VORONOIGENERIC.sql │ │ │ │ └── __VORONOIHELPER.sql │ │ │ ├── quadbin │ │ │ │ ├── QUADBIN_BBOX.sql │ │ │ │ ├── QUADBIN_BOUNDARY.sql │ │ │ │ ├── QUADBIN_CENTER.sql │ │ │ │ ├── QUADBIN_DISTANCE.sql │ │ │ │ ├── QUADBIN_FROMGEOGPOINT.sql │ │ │ │ ├── QUADBIN_FROMLONGLAT.sql │ │ │ │ ├── QUADBIN_FROMQUADKEY.sql │ │ │ │ ├── QUADBIN_FROMZXY.sql │ │ │ │ ├── QUADBIN_ISVALID.sql │ │ │ │ ├── QUADBIN_KRING.sql │ │ │ │ ├── QUADBIN_KRING_DISTANCES.sql │ │ │ │ ├── QUADBIN_POLYFILL.sql │ │ │ │ ├── QUADBIN_POLYFILL_TABLE.sql │ │ │ │ ├── QUADBIN_RESOLUTION.sql │ │ │ │ ├── QUADBIN_SIBLING.sql │ │ │ │ ├── QUADBIN_TOCHILDREN.sql │ │ │ │ ├── QUADBIN_TOPARENT.sql │ │ │ │ ├── QUADBIN_TOQUADKEY.sql │ │ │ │ ├── QUADBIN_TOZXY.sql │ │ │ │ ├── __QUADBIN_FROMLONGLAT_ZOOMRANGE.sql │ │ │ │ ├── __QUADBIN_FROMQUADINT.sql │ │ │ │ ├── __QUADBIN_INT_TOSTRING.sql │ │ │ │ └── __QUADBIN_STRING_TOINT.sql │ │ │ ├── quadkey │ │ │ │ ├── QUADINT_BBOX.sql │ │ │ │ ├── QUADINT_BOUNDARY.sql │ │ │ │ ├── QUADINT_CENTER.sql │ │ │ │ ├── QUADINT_FROMGEOGPOINT.sql │ │ │ │ ├── QUADINT_FROMLONGLAT.sql │ │ │ │ ├── QUADINT_FROMLONGLAT_ZOOMRANGE.sql │ │ │ │ ├── QUADINT_FROMQUADKEY.sql │ │ │ │ ├── QUADINT_FROMZXY.sql │ │ │ │ ├── QUADINT_KRING.sql │ │ │ │ ├── QUADINT_KRING_DISTANCES.sql │ │ │ │ ├── QUADINT_POLYFILL.sql │ │ │ │ ├── QUADINT_RESOLUTION.sql │ │ │ │ ├── QUADINT_SIBLING.sql │ │ │ │ ├── QUADINT_TOCHILDREN.sql │ │ │ │ ├── QUADINT_TOGEOGPOINT.sql │ │ │ │ ├── QUADINT_TOPARENT.sql │ │ │ │ ├── QUADINT_TOQUADKEY.sql │ │ │ │ └── QUADINT_TOZXY.sql │ │ │ ├── random │ │ │ │ └── ST_GENERATEPOINTS.sql │ │ │ ├── s2 │ │ │ │ ├── S2_BOUNDARY.sql │ │ │ │ ├── S2_CENTER.sql │ │ │ │ ├── S2_FROMGEOGPOINT.sql │ │ │ │ ├── S2_FROMHILBERTQUADKEY.sql │ │ │ │ ├── S2_FROMLONGLAT.sql │ │ │ │ ├── S2_FROMTOKEN.sql │ │ │ │ ├── S2_FROMUINT64REPR.sql │ │ │ │ ├── S2_RESOLUTION.sql │ │ │ │ ├── S2_TOCHILDREN.sql │ │ │ │ ├── S2_TOHILBERTQUADKEY.sql │ │ │ │ ├── S2_TOTOKEN.sql │ │ │ │ └── S2_TOUINT64REPR.sql │ │ │ ├── transformations │ │ │ │ ├── ST_BUFFER.sql │ │ │ │ ├── ST_CENTERMEAN.sql │ │ │ │ ├── ST_CENTERMEDIAN.sql │ │ │ │ ├── ST_CENTEROFMASS.sql │ │ │ │ ├── ST_CONCAVEHULL.sql │ │ │ │ ├── ST_DESTINATION.sql │ │ │ │ ├── ST_GREATCIRCLE.sql │ │ │ │ ├── ST_LINE_INTERPOLATE_POINT.sql │ │ │ │ └── ST_POINTONSURFACE.sql │ │ │ └── utils │ │ │ │ ├── __CHECK_TABLE.sql │ │ │ │ ├── __TABLENAME_JOIN.sql │ │ │ │ └── __TABLENAME_SPLIT.sql │ │ └── test │ │ │ ├── accessors │ │ │ ├── ST_ENVELOPE.test.js │ │ │ └── fixtures │ │ │ │ ├── st_envelope_featureCollection_in.js │ │ │ │ ├── st_envelope_featureCollection_out.js │ │ │ │ ├── st_envelope_points_in.js │ │ │ │ └── st_envelope_points_out.js │ │ │ ├── clustering │ │ │ ├── ST_CLUSTERKMEANS.test.js │ │ │ └── fixtures │ │ │ │ ├── st_clusterkmeans_points1_out.js │ │ │ │ ├── st_clusterkmeans_points2_out.js │ │ │ │ └── st_clusterkmeans_points3_out.js │ │ │ ├── constructors │ │ │ ├── ST_BEZIERSPLINE.test.js │ │ │ ├── ST_MAKEELLIPSE.test.js │ │ │ ├── ST_MAKEENVELOPE.test.js │ │ │ └── ST_TILEENVELOPE.test.js │ │ │ ├── geohash │ │ │ └── GEOHASH_BOUNDARY.test.js │ │ │ ├── h3 │ │ │ ├── H3_BOUNDARY.test.js │ │ │ ├── H3_CENTER.test.js │ │ │ ├── H3_COMPACT.test.js │ │ │ ├── H3_DISTANCE.test.js │ │ │ ├── H3_FROMGEOGPOINT.test.js │ │ │ ├── H3_FROMLONGLAT.test.js │ │ │ ├── H3_HEXRING.test.js │ │ │ ├── H3_INT_TOSTRING.test.js │ │ │ ├── H3_ISPENTAGON.test.js │ │ │ ├── H3_ISVALID.test.js │ │ │ ├── H3_KRING.test.js │ │ │ ├── H3_KRING_DISTANCES.test.js │ │ │ ├── H3_POLYFILL.test.js │ │ │ ├── H3_POLYFILL_TABLE.test.js │ │ │ ├── H3_RESOLUTION.test.js │ │ │ ├── H3_STRING_TOINT.test.js │ │ │ ├── H3_TOCHILDREN.test.js │ │ │ ├── H3_TOPARENT.test.js │ │ │ └── _H3_COVERINGCELLIDS.test.js │ │ │ ├── measurements │ │ │ ├── ST_ANGLE.test.js │ │ │ └── ST_MINKOWSKIDISTANCE.test.js │ │ │ ├── placekey │ │ │ ├── PLACEKEY_FROMH3.test.js │ │ │ ├── PLACEKEY_ISVALID.test.js │ │ │ └── PLACEKEY_TOH3.test.js │ │ │ ├── processing │ │ │ ├── ST_DELAUNAYLINES.test.js │ │ │ ├── ST_DELAUNAYPOLYGONS.test.js │ │ │ ├── ST_POLYGONIZE.test.js │ │ │ ├── ST_VORONOILINES.test.js │ │ │ ├── ST_VORONOIPOLYGONS.test.js │ │ │ └── fixtures │ │ │ │ ├── st_delaunay_in.js │ │ │ │ ├── st_delaunay_out.js │ │ │ │ ├── st_polygonize_in.js │ │ │ │ ├── st_polygonize_out.js │ │ │ │ ├── st_voronoi_in.js │ │ │ │ └── st_voronoi_out.js │ │ │ ├── quadbin │ │ │ ├── QUADBIN_BBOX.test.js │ │ │ ├── QUADBIN_BOUNDARY.test.js │ │ │ ├── QUADBIN_CENTER.test.js │ │ │ ├── QUADBIN_DISTANCE.test.js │ │ │ ├── QUADBIN_FROMGEOGPOINT.test.js │ │ │ ├── QUADBIN_FROMLONGLAT.test.js │ │ │ ├── QUADBIN_FROMQUADKEY.test.js │ │ │ ├── QUADBIN_FROMZXY.test.js │ │ │ ├── QUADBIN_ISVALID.test.js │ │ │ ├── QUADBIN_KRING.test.js │ │ │ ├── QUADBIN_KRING_DISTANCES.test.js │ │ │ ├── QUADBIN_POLYFILL.test.js │ │ │ ├── QUADBIN_POLYFILL_TABLE.test.js │ │ │ ├── QUADBIN_RESOLUTION.test.js │ │ │ ├── QUADBIN_SIBLING.test.js │ │ │ ├── QUADBIN_TOCHILDREN.test.js │ │ │ ├── QUADBIN_TOPARENT.test.js │ │ │ ├── QUADBIN_TOQUADKEY.test.js │ │ │ ├── QUADBIN_TOZXY.test.js │ │ │ ├── __QUADBIN_FROMLONGLAT_ZOOMRANGE.test.js │ │ │ ├── __QUADBIN_FROMQUADINT.test.js │ │ │ ├── __QUADBIN_INT_TOSTRING.test.js │ │ │ └── __QUADBIN_STRING_TOINT.test.js │ │ │ ├── quadkey │ │ │ ├── QUADINT.test.js │ │ │ ├── QUADINT_BBOX.test.js │ │ │ ├── QUADINT_BOUNDARY.test.js │ │ │ ├── QUADINT_CENTER.test.js │ │ │ ├── QUADINT_FROMLONGLAT.test.js │ │ │ ├── QUADINT_FROMLONGLAT_ZOOMRANGE.test.js │ │ │ ├── QUADINT_KRING.test.js │ │ │ ├── QUADINT_KRING_DISTANCES.test.js │ │ │ ├── QUADINT_POLYFILL.test.js │ │ │ ├── QUADINT_RESOLUTION.test.js │ │ │ ├── QUADINT_SIBLING.test.js │ │ │ ├── QUADINT_TOCHILDREN.test.js │ │ │ ├── QUADINT_TOGEOGPOINT.test.js │ │ │ ├── QUADINT_TOPARENT.test.js │ │ │ └── fixtures │ │ │ │ ├── quadint_fromlonglat_out.js │ │ │ │ └── quadint_polyfill_out.js │ │ │ ├── random │ │ │ └── ST_GENERATEPOINTS.test.js │ │ │ ├── s2 │ │ │ ├── S2_BOUNDARY.test.js │ │ │ ├── S2_CENTER.test.js │ │ │ ├── S2_FROMGEOGPOINT.test.js │ │ │ ├── S2_FROMHILBERTQUADKEY.test.js │ │ │ ├── S2_FROMLONGLAT.test.js │ │ │ ├── S2_FROMTOKEN.test.js │ │ │ ├── S2_FROMUINT64REPR.test.js │ │ │ ├── S2_RESOLUTION.test.js │ │ │ ├── S2_TOCHILDREN.test.js │ │ │ ├── S2_TOHILBERTQUADKEY.test.js │ │ │ ├── S2_TOTOKEN.test.js │ │ │ └── S2_TOUINT64REPR.test.js │ │ │ └── transformations │ │ │ ├── ST_BUFFER.test.js │ │ │ ├── ST_CENTERMEAN.test.js │ │ │ ├── ST_CENTERMEDIAN.test.js │ │ │ ├── ST_CENTEROFMASS.test.js │ │ │ ├── ST_CONCAVEHULL.test.js │ │ │ ├── ST_DESTINATION.test.js │ │ │ ├── ST_GREATCIRCLE.test.js │ │ │ ├── ST_LINE_INTERPOLATE_POINT.test.js │ │ │ ├── ST_POINTONSURFACE.test.js │ │ │ └── fixtures │ │ │ ├── st_buffer_in.js │ │ │ ├── st_buffer_out.js │ │ │ ├── st_concavehull_duplicates_in.js │ │ │ ├── st_concavehull_duplicates_out.js │ │ │ ├── st_concavehull_fiji_in.js │ │ │ ├── st_concavehull_fiji_out.js │ │ │ ├── st_concavehull_hole_in.js │ │ │ ├── st_concavehull_hole_out.js │ │ │ ├── st_concavehull_in.js │ │ │ ├── st_concavehull_out.js │ │ │ ├── st_concavehull_point_in.js │ │ │ └── st_concavehull_point_out.js │ └── version ├── databricks │ ├── .env.template │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Makefile │ ├── README.md │ ├── common │ │ ├── .sqlfluff │ │ ├── DROP_FUNCTIONS.sql │ │ ├── Makefile │ │ ├── VERSION.sql │ │ ├── analytics-toolbox-databricks.png │ │ ├── build_modules.js │ │ ├── list_functions.js │ │ ├── package.json │ │ ├── python3_requirements.txt │ │ ├── run_query.py │ │ ├── run_script.py │ │ ├── sql_lint.py │ │ └── test_utils │ │ │ └── __init__.py │ ├── modules │ │ ├── Makefile │ │ ├── doc │ │ │ └── .gitkeep │ │ ├── sql │ │ │ └── .sqlfluffignore │ │ └── test │ │ │ └── .gitkeep │ └── version ├── postgres │ ├── .env.template │ ├── CHANGELOG.md │ ├── CHANGELOG.old.md │ ├── Makefile │ ├── README.md │ ├── common │ │ ├── .sqlfluff │ │ ├── DROP_FUNCTIONS.sql │ │ ├── Makefile │ │ ├── VERSION.sql │ │ ├── analytics-toolbox-postgres.png │ │ ├── build_modules.js │ │ ├── list_functions.js │ │ ├── list_libraries.js │ │ ├── package.json │ │ ├── python3_requirements.txt │ │ ├── rollup.config.js │ │ ├── run_query.py │ │ ├── run_script.py │ │ ├── sql_lint.py │ │ └── test_utils │ │ │ └── __init__.py │ ├── libraries │ │ └── javascript │ │ │ ├── Makefile │ │ │ ├── libs │ │ │ └── h3.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── h3.js │ │ │ └── index.js │ │ │ └── test │ │ │ └── h3.test.js │ ├── modules │ │ ├── Makefile │ │ ├── doc │ │ │ ├── h3 │ │ │ │ ├── H3_BOUNDARY.md │ │ │ │ ├── H3_CENTER.md │ │ │ │ ├── H3_COMPACT.md │ │ │ │ ├── H3_DISTANCE.md │ │ │ │ ├── H3_FROMGEOGPOINT.md │ │ │ │ ├── H3_FROMLONGLAT.md │ │ │ │ ├── H3_HEXRING.md │ │ │ │ ├── H3_INT_TOSTRING.md │ │ │ │ ├── H3_ISPENTAGON.md │ │ │ │ ├── H3_ISVALID.md │ │ │ │ ├── H3_KRING.md │ │ │ │ ├── H3_KRING_DISTANCES.md │ │ │ │ ├── H3_POLYFILL.md │ │ │ │ ├── H3_STRING_TOINT.md │ │ │ │ ├── H3_TOCHILDREN.md │ │ │ │ ├── H3_TOPARENT.md │ │ │ │ ├── H3_UNCOMPACT.md │ │ │ │ ├── _INTRO.md │ │ │ │ └── images │ │ │ │ │ ├── H3_POLYFILL_MODE_center.png │ │ │ │ │ ├── H3_POLYFILL_MODE_contains.png │ │ │ │ │ └── H3_POLYFILL_MODE_intersects.png │ │ │ └── quadbin │ │ │ │ ├── QUADBIN_BBOX.md │ │ │ │ ├── QUADBIN_BOUNDARY.md │ │ │ │ ├── QUADBIN_CENTER.md │ │ │ │ ├── QUADBIN_DISTANCE.md │ │ │ │ ├── QUADBIN_FROMGEOGPOINT.md │ │ │ │ ├── QUADBIN_FROMLONGLAT.md │ │ │ │ ├── QUADBIN_FROMQUADKEY.md │ │ │ │ ├── QUADBIN_FROMZXY.md │ │ │ │ ├── QUADBIN_ISVALID.md │ │ │ │ ├── QUADBIN_KRING.md │ │ │ │ ├── QUADBIN_KRING_DISTANCES.md │ │ │ │ ├── QUADBIN_POLYFILL.md │ │ │ │ ├── QUADBIN_RESOLUTION.md │ │ │ │ ├── QUADBIN_SIBLING.md │ │ │ │ ├── QUADBIN_TOCHILDREN.md │ │ │ │ ├── QUADBIN_TOPARENT.md │ │ │ │ ├── QUADBIN_TOQUADKEY.md │ │ │ │ ├── QUADBIN_TOZXY.md │ │ │ │ ├── _INTRO.md │ │ │ │ └── images │ │ │ │ ├── QUADBIN_POLYFILL_MODE_center.png │ │ │ │ ├── QUADBIN_POLYFILL_MODE_contains.png │ │ │ │ └── QUADBIN_POLYFILL_MODE_intersects.png │ │ ├── sql │ │ │ ├── h3 │ │ │ │ ├── H3_BOUNDARY.sql │ │ │ │ ├── H3_CENTER.sql │ │ │ │ ├── H3_COMPACT.sql │ │ │ │ ├── H3_DISTANCE.sql │ │ │ │ ├── H3_FROMGEOGPOINT.sql │ │ │ │ ├── H3_FROMLONGLAT.sql │ │ │ │ ├── H3_HEXRING.sql │ │ │ │ ├── H3_INT_TOSTRING.sql │ │ │ │ ├── H3_ISPENTAGON.sql │ │ │ │ ├── H3_ISVALID.sql │ │ │ │ ├── H3_KRING.sql │ │ │ │ ├── H3_KRING_DISTANCES.sql │ │ │ │ ├── H3_POLYFILL.sql │ │ │ │ ├── H3_RESOLUTION.sql │ │ │ │ ├── H3_STRING_TOINT.sql │ │ │ │ ├── H3_TOCHILDREN.sql │ │ │ │ ├── H3_TOPARENT.sql │ │ │ │ └── H3_UNCOMPACT.sql │ │ │ └── quadbin │ │ │ │ ├── QUADBIN_BBOX.sql │ │ │ │ ├── QUADBIN_BOUNDARY.sql │ │ │ │ ├── QUADBIN_CENTER.sql │ │ │ │ ├── QUADBIN_DISTANCE.sql │ │ │ │ ├── QUADBIN_FROMGEOGPOINT.sql │ │ │ │ ├── QUADBIN_FROMLONGLAT.sql │ │ │ │ ├── QUADBIN_FROMQUADKEY.sql │ │ │ │ ├── QUADBIN_FROMZXY.sql │ │ │ │ ├── QUADBIN_ISVALID.sql │ │ │ │ ├── QUADBIN_KRING.sql │ │ │ │ ├── QUADBIN_KRING_DISTANCES.sql │ │ │ │ ├── QUADBIN_POLYFILL.sql │ │ │ │ ├── QUADBIN_RESOLUTION.sql │ │ │ │ ├── QUADBIN_SIBLING.sql │ │ │ │ ├── QUADBIN_TOCHILDREN.sql │ │ │ │ ├── QUADBIN_TOPARENT.sql │ │ │ │ ├── QUADBIN_TOQUADKEY.sql │ │ │ │ ├── QUADBIN_TOZXY.sql │ │ │ │ ├── __CARTO_ERROR.sql │ │ │ │ ├── __QUADBIN_FROMQUADINT.sql │ │ │ │ ├── __QUADBIN_INT_TOSTRING.sql │ │ │ │ └── __QUADBIN_STRING_TOINT.sql │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── h3 │ │ │ ├── __init__.py │ │ │ ├── test_H3_BOUNDARY.py │ │ │ ├── test_H3_CENTER.py │ │ │ ├── test_H3_COMPACT.py │ │ │ ├── test_H3_DISTANCE.py │ │ │ ├── test_H3_FROMGEOGPOINT.py │ │ │ ├── test_H3_FROMLONGLAT.py │ │ │ ├── test_H3_HEXRING.py │ │ │ ├── test_H3_INT_TOSTRING.py │ │ │ ├── test_H3_ISPENTAGON.py │ │ │ ├── test_H3_ISVALID.py │ │ │ ├── test_H3_KRING.py │ │ │ ├── test_H3_KRING_DISTANCES.py │ │ │ ├── test_H3_POLYFILL.py │ │ │ ├── test_H3_RESOLUTION.py │ │ │ ├── test_H3_STRING_TOINT.py │ │ │ ├── test_H3_TOCHILDREN.py │ │ │ └── test_H3_TOPARENT.py │ │ │ └── quadbin │ │ │ ├── __init__.py │ │ │ ├── test_QUADBIN_BBOX.py │ │ │ ├── test_QUADBIN_BOUNDARY.py │ │ │ ├── test_QUADBIN_CENTER.py │ │ │ ├── test_QUADBIN_DISTANCE.py │ │ │ ├── test_QUADBIN_FROMGEOGPOINT.py │ │ │ ├── test_QUADBIN_FROMLONGLAT.py │ │ │ ├── test_QUADBIN_FROMQUADKEY.py │ │ │ ├── test_QUADBIN_FROMZXY.py │ │ │ ├── test_QUADBIN_ISVALID.py │ │ │ ├── test_QUADBIN_KRING.py │ │ │ ├── test_QUADBIN_KRING_DISTANCES.py │ │ │ ├── test_QUADBIN_POLYFILL.py │ │ │ ├── test_QUADBIN_RESOLUTION.py │ │ │ ├── test_QUADBIN_SIBLING.py │ │ │ ├── test_QUADBIN_TOCHILDREN.py │ │ │ ├── test_QUADBIN_TOPARENT.py │ │ │ ├── test_QUADBIN_TOQUADKEY.py │ │ │ ├── test_QUADBIN_TOZXY.py │ │ │ ├── test___QUADBIN_FROMQUADINT.py │ │ │ ├── test___QUADBIN_INT_TOSTRING.py │ │ │ └── test___QUADBIN_STRING_TOINT.py │ └── version ├── redshift │ ├── .env.template │ ├── CHANGELOG.md │ ├── CHANGELOG.old.md │ ├── Makefile │ ├── README.md │ ├── common │ │ ├── .sqlfluff │ │ ├── DROP_FUNCTIONS.sql │ │ ├── Makefile │ │ ├── VERSION.sql │ │ ├── analytics-toolbox-redshift.png │ │ ├── build_modules.js │ │ ├── list_functions.js │ │ ├── package.json │ │ ├── python2_requirements.txt │ │ ├── python3_requirements.txt │ │ ├── run_query.py │ │ ├── run_script.py │ │ ├── serialize_libraries.sh │ │ ├── sql_lint.py │ │ └── test_utils │ │ │ └── __init__.py │ ├── libraries │ │ └── python │ │ │ ├── Makefile │ │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── clustering │ │ │ │ ├── __init__.py │ │ │ │ └── kmeans.py │ │ │ ├── constructors │ │ │ │ ├── __init__.py │ │ │ │ ├── bezier_spline │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── helper.py │ │ │ │ │ └── spline.py │ │ │ │ └── ellipse │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── helper.py │ │ │ │ │ ├── measurement.py │ │ │ │ │ ├── meta.py │ │ │ │ │ └── transformation.py │ │ │ ├── placekey │ │ │ │ └── __init__.py │ │ │ ├── processing │ │ │ │ ├── __init__.py │ │ │ │ ├── helper.py │ │ │ │ └── voronoi │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── helper.py │ │ │ ├── quadbin │ │ │ │ └── __init__.py │ │ │ ├── quadkey │ │ │ │ ├── __init__.py │ │ │ │ └── tilecover │ │ │ │ │ └── __init__.py │ │ │ ├── random │ │ │ │ ├── __init__.py │ │ │ │ ├── helper.py │ │ │ │ └── measurement.py │ │ │ ├── s2 │ │ │ │ └── __init__.py │ │ │ └── transformations │ │ │ │ ├── __init__.py │ │ │ │ ├── center_lib │ │ │ │ ├── __init__.py │ │ │ │ ├── center_mean.py │ │ │ │ ├── center_median.py │ │ │ │ ├── centroid.py │ │ │ │ └── helper.py │ │ │ │ ├── destination │ │ │ │ ├── __init__.py │ │ │ │ └── helper.py │ │ │ │ ├── great_circle │ │ │ │ └── __init__.py │ │ │ │ └── helper.py │ │ │ ├── requirements.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ └── ellipse_out.txt │ │ │ ├── test_constructors.py │ │ │ ├── test_init.py │ │ │ ├── test_processing.py │ │ │ ├── test_quadkey.py │ │ │ └── test_transformations.py │ ├── modules │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── doc │ │ │ ├── clustering │ │ │ │ ├── CREATE_CLUSTERKMEANS.md │ │ │ │ ├── ST_CLUSTERKMEANS.md │ │ │ │ └── _INTRO.md │ │ │ ├── constructors │ │ │ │ ├── ST_BEZIERSPLINE.md │ │ │ │ ├── ST_MAKEELLIPSE.md │ │ │ │ ├── ST_MAKEENVELOPE.md │ │ │ │ ├── ST_TILEENVELOPE.md │ │ │ │ └── _INTRO.md │ │ │ ├── placekey │ │ │ │ ├── PLACEKEY_ASH3.md │ │ │ │ ├── PLACEKEY_FROMH3.md │ │ │ │ ├── PLACEKEY_ISVALID.md │ │ │ │ └── _INTRO.md │ │ │ ├── processing │ │ │ │ ├── ST_DELAUNAYLINES.md │ │ │ │ ├── ST_DELAUNAYPOLYGONS.md │ │ │ │ ├── ST_POLYGONIZE.md │ │ │ │ ├── ST_VORONOILINES.md │ │ │ │ ├── ST_VORONOIPOLYGONS.md │ │ │ │ └── _INTRO.md │ │ │ ├── quadbin │ │ │ │ ├── QUADBIN_BBOX.md │ │ │ │ ├── QUADBIN_BOUNDARY.md │ │ │ │ ├── QUADBIN_CENTER.md │ │ │ │ ├── QUADBIN_DISTANCE.md │ │ │ │ ├── QUADBIN_FROMGEOGPOINT.md │ │ │ │ ├── QUADBIN_FROMLONGLAT.md │ │ │ │ ├── QUADBIN_FROMQUADKEY.md │ │ │ │ ├── QUADBIN_FROMZXY.md │ │ │ │ ├── QUADBIN_ISVALID.md │ │ │ │ ├── QUADBIN_KRING.md │ │ │ │ ├── QUADBIN_KRING_DISTANCES.md │ │ │ │ ├── QUADBIN_POLYFILL.md │ │ │ │ ├── QUADBIN_RESOLUTION.md │ │ │ │ ├── QUADBIN_SIBLING.md │ │ │ │ ├── QUADBIN_TOCHILDREN.md │ │ │ │ ├── QUADBIN_TOPARENT.md │ │ │ │ ├── QUADBIN_TOQUADKEY.md │ │ │ │ ├── QUADBIN_TOZXY.md │ │ │ │ └── _INTRO.md │ │ │ ├── random │ │ │ │ ├── ST_GENERATEPOINTS.md │ │ │ │ └── _INTRO.md │ │ │ ├── s2 │ │ │ │ ├── S2_BOUNDARY.md │ │ │ │ ├── S2_FROMGEOGPOINT.md │ │ │ │ ├── S2_FROMHILBERTQUADKEY.md │ │ │ │ ├── S2_FROMLONGLAT.md │ │ │ │ ├── S2_FROMTOKEN.md │ │ │ │ ├── S2_FROMUINT64REPR.md │ │ │ │ ├── S2_POLYFILL_BBOX.md │ │ │ │ ├── S2_RESOLUTION.md │ │ │ │ ├── S2_TOCHILDREN.md │ │ │ │ ├── S2_TOHILBERTQUADKEY.md │ │ │ │ ├── S2_TOPARENT.md │ │ │ │ ├── S2_TOTOKEN.md │ │ │ │ ├── S2_TOUINT64REPR.md │ │ │ │ └── _INTRO.md │ │ │ └── transformations │ │ │ │ ├── ST_CENTERMEAN.md │ │ │ │ ├── ST_CENTERMEDIAN.md │ │ │ │ ├── ST_CENTEROFMASS.md │ │ │ │ ├── ST_CENTROID.md │ │ │ │ ├── ST_DESTINATION.md │ │ │ │ ├── ST_GREATCIRCLE.md │ │ │ │ └── _INTRO.md │ │ ├── sql │ │ │ ├── clustering │ │ │ │ ├── CREATE_CLUSTERKMEANS.sql │ │ │ │ └── ST_CLUSTERKMEANS.sql │ │ │ ├── constructors │ │ │ │ ├── ST_BEZIERSPLINE.sql │ │ │ │ ├── ST_MAKEELLIPSE.sql │ │ │ │ ├── ST_MAKEENVELOPE.sql │ │ │ │ └── ST_TILEENVELOPE.sql │ │ │ ├── placekey │ │ │ │ ├── PLACEKEY_ASH3.sql │ │ │ │ ├── PLACEKEY_FROMH3.sql │ │ │ │ └── PLACEKEY_ISVALID.sql │ │ │ ├── processing │ │ │ │ ├── ST_DELAUNAYLINES.sql │ │ │ │ ├── ST_DELAUNAYPOLYGONS.sql │ │ │ │ ├── ST_POLYGONIZE.sql │ │ │ │ ├── ST_VORONOILINES.sql │ │ │ │ ├── ST_VORONOIPOLYGONS.sql │ │ │ │ ├── __DELAUNAYGENERIC.sql │ │ │ │ └── __VORONOIGENERIC.sql │ │ │ ├── quadbin │ │ │ │ ├── QUADBIN_BBOX.sql │ │ │ │ ├── QUADBIN_BOUNDARY.sql │ │ │ │ ├── QUADBIN_CENTER.sql │ │ │ │ ├── QUADBIN_DISTANCE.sql │ │ │ │ ├── QUADBIN_FROMGEOGPOINT.sql │ │ │ │ ├── QUADBIN_FROMLONGLAT.sql │ │ │ │ ├── QUADBIN_FROMQUADKEY.sql │ │ │ │ ├── QUADBIN_FROMZXY.sql │ │ │ │ ├── QUADBIN_ISVALID.sql │ │ │ │ ├── QUADBIN_KRING.sql │ │ │ │ ├── QUADBIN_KRING_DISTANCES.sql │ │ │ │ ├── QUADBIN_POLYFILL.sql │ │ │ │ ├── QUADBIN_RESOLUTION.sql │ │ │ │ ├── QUADBIN_SIBLING.sql │ │ │ │ ├── QUADBIN_TOCHILDREN.sql │ │ │ │ ├── QUADBIN_TOPARENT.sql │ │ │ │ ├── QUADBIN_TOQUADKEY.sql │ │ │ │ ├── QUADBIN_TOZXY.sql │ │ │ │ ├── __QUADBIN_FROMQUADINT.sql │ │ │ │ ├── __QUADBIN_INT_TOSTRING.sql │ │ │ │ ├── __QUADBIN_STRING_TOINT.sql │ │ │ │ ├── __QUADBIN_TOZXY_X.sql │ │ │ │ └── __QUADBIN_TOZXY_Y.sql │ │ │ ├── quadkey │ │ │ │ ├── QUADINT_BBOX.sql │ │ │ │ ├── QUADINT_BOUNDARY.sql │ │ │ │ ├── QUADINT_FROMGEOGPOINT.sql │ │ │ │ ├── QUADINT_FROMLONGLAT.sql │ │ │ │ ├── QUADINT_FROMQUADKEY.sql │ │ │ │ ├── QUADINT_FROMZXY.sql │ │ │ │ ├── QUADINT_KRING.sql │ │ │ │ ├── QUADINT_KRING_DISTANCES.sql │ │ │ │ ├── QUADINT_POLYFILL.sql │ │ │ │ ├── QUADINT_SIBLING.sql │ │ │ │ ├── QUADINT_TOCHILDREN.sql │ │ │ │ ├── QUADINT_TOPARENT.sql │ │ │ │ ├── QUADINT_TOQUADKEY.sql │ │ │ │ ├── QUADINT_TOZXY.sql │ │ │ │ ├── __QUADINT_RESOLUTION.sql │ │ │ │ └── __QUADKEY_BBOX.sql │ │ │ ├── random │ │ │ │ └── ST_GENERATEPOINTS.sql │ │ │ ├── s2 │ │ │ │ ├── S2_BOUNDARY.sql │ │ │ │ ├── S2_FROMGEOGPOINT.sql │ │ │ │ ├── S2_FROMHILBERTQUADKEY.sql │ │ │ │ ├── S2_FROMLONGLAT.sql │ │ │ │ ├── S2_FROMTOKEN.sql │ │ │ │ ├── S2_FROMUINT64REPR.sql │ │ │ │ ├── S2_POLYFILL_BBOX.sql │ │ │ │ ├── S2_RESOLUTION.sql │ │ │ │ ├── S2_TOCHILDREN.sql │ │ │ │ ├── S2_TOHILBERTQUADKEY.sql │ │ │ │ ├── S2_TOPARENT.sql │ │ │ │ ├── S2_TOTOKEN.sql │ │ │ │ └── S2_TOUINT64REPR.sql │ │ │ └── transformations │ │ │ │ ├── ST_CENTERMEAN.sql │ │ │ │ ├── ST_CENTERMEDIAN.sql │ │ │ │ ├── ST_CENTEROFMASS.sql │ │ │ │ ├── ST_CENTROID.sql │ │ │ │ ├── ST_DESTINATION.sql │ │ │ │ └── ST_GREATCIRCLE.sql │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ ├── st_clusterkmeans_in.txt │ │ │ │ └── st_clusterkmeans_out.txt │ │ │ ├── test_CREATE_CLUSTERKMEANS.py │ │ │ └── test_ST_CLUSTERKMEANS.py │ │ │ ├── constructors │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ ├── st_bezierspline_in.txt │ │ │ │ ├── st_bezierspline_out.txt │ │ │ │ ├── st_makeellipse_out.txt │ │ │ │ └── st_tileenvelope_out.txt │ │ │ ├── test_ST_BEZIERSPLINE.py │ │ │ ├── test_ST_MAKEELLIPSE.py │ │ │ ├── test_ST_MAKEENVELOPE.py │ │ │ └── test_ST_TILEENVELOPE.py │ │ │ ├── placekey │ │ │ ├── __init__.py │ │ │ ├── test_PLACEKEY_ASH3.py │ │ │ ├── test_PLACEKEY_FROMH3.py │ │ │ └── test_PLACEKEY_ISVALID.py │ │ │ ├── processing │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ ├── st_delaunay_in.txt │ │ │ │ ├── st_delaunay_lines_out.txt │ │ │ │ ├── st_delaunay_poly_out.txt │ │ │ │ ├── st_polygonize_in.txt │ │ │ │ ├── st_polygonize_out.txt │ │ │ │ ├── st_voronoi_in.txt │ │ │ │ ├── st_voronoi_lines_out.txt │ │ │ │ └── st_voronoi_poly_out.txt │ │ │ ├── test_ST_DELAUNAYLINES.py │ │ │ ├── test_ST_DELAUNAYPOLYGONS.py │ │ │ ├── test_ST_POLYGONIZE.py │ │ │ ├── test_ST_VORONOILINES.py │ │ │ └── test_ST_VORONOIPOLYGONS.py │ │ │ ├── quadbin │ │ │ ├── __init__.py │ │ │ ├── test_QUADBIN_BBOX.py │ │ │ ├── test_QUADBIN_BOUNDARY.py │ │ │ ├── test_QUADBIN_CENTER.py │ │ │ ├── test_QUADBIN_DISTANCE.py │ │ │ ├── test_QUADBIN_FROMGEOGPOINT.py │ │ │ ├── test_QUADBIN_FROMLONGLAT.py │ │ │ ├── test_QUADBIN_FROMQUADKEY.py │ │ │ ├── test_QUADBIN_FROMZXY.py │ │ │ ├── test_QUADBIN_ISVALID.py │ │ │ ├── test_QUADBIN_KRING.py │ │ │ ├── test_QUADBIN_KRING_DISTANCES.py │ │ │ ├── test_QUADBIN_POLYFILL.py │ │ │ ├── test_QUADBIN_RESOLUTION.py │ │ │ ├── test_QUADBIN_SIBLING.py │ │ │ ├── test_QUADBIN_TOCHILDREN.py │ │ │ ├── test_QUADBIN_TOPARENT.py │ │ │ ├── test_QUADBIN_TOQUADKEY.py │ │ │ ├── test_QUADBIN_TOZXY.py │ │ │ ├── test___QUADBIN_FROMQUADINT.py │ │ │ ├── test___QUADBIN_INT_TOSTRING.py │ │ │ └── test___QUADBIN_STRING_TOINT.py │ │ │ ├── quadkey │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ ├── quadint_boundary_out.txt │ │ │ │ ├── quadint_fromlonglat_out.txt │ │ │ │ ├── quadint_polyfill_in.txt │ │ │ │ ├── quadint_polyfill_out.txt │ │ │ │ ├── quadint_tochildren_out.txt │ │ │ │ └── quadint_tozxy_out.txt │ │ │ ├── test_QUADINT_BBOX.py │ │ │ ├── test_QUADINT_BOUNDARY.py │ │ │ ├── test_QUADINT_FROMLONGLAT.py │ │ │ ├── test_QUADINT_KRING.py │ │ │ ├── test_QUADINT_KRING_DISTANCES.py │ │ │ ├── test_QUADINT_POLYFILL.py │ │ │ ├── test_QUADINT_TOCHILDREN.py │ │ │ ├── test_QUADINT_TOPARENT.py │ │ │ └── test_QUADINT_TOZXY.py │ │ │ ├── random │ │ │ ├── __init__.py │ │ │ └── test_ST_GENERATEPOINTS.py │ │ │ ├── s2 │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ ├── s2_boundary_out.txt │ │ │ │ ├── s2_fromgeogpoint_out.txt │ │ │ │ ├── s2_fromhilbertquadkey_out.txt │ │ │ │ ├── s2_fromlonglat_out.txt │ │ │ │ ├── s2_fromtoken_out.txt │ │ │ │ ├── s2_fromuint64repr_out.txt │ │ │ │ ├── s2_polyfill_bbox_out.txt │ │ │ │ ├── s2_tochildren_out.txt │ │ │ │ ├── s2_tohilbertquadkey_out.txt │ │ │ │ ├── s2_toparent_out.txt │ │ │ │ ├── s2_totoken_out.txt │ │ │ │ └── s2_touint64repr_out.txt │ │ │ ├── test_S2_BOUNDARY.py │ │ │ ├── test_S2_FROMGEOGPOINT.py │ │ │ ├── test_S2_FROMHILBERTQUADKEY.py │ │ │ ├── test_S2_FROMLONGLAT.py │ │ │ ├── test_S2_FROMTOKEN.py │ │ │ ├── test_S2_FROMUINT64REPR.py │ │ │ ├── test_S2_POLYFILL_BBOX.py │ │ │ ├── test_S2_RESOLUTION.py │ │ │ ├── test_S2_TOCHILDREN.py │ │ │ ├── test_S2_TOHILBERTQUADKEY.py │ │ │ ├── test_S2_TOPARENT.py │ │ │ ├── test_S2_TOTOKEN.py │ │ │ └── test_S2_TOUINT64REPR.py │ │ │ └── transformations │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ ├── st_centermean_in.txt │ │ │ ├── st_centermedian_in.txt │ │ │ ├── st_centerofmass_in.txt │ │ │ ├── st_centroid_in.txt │ │ │ ├── st_greatcircle_out.txt │ │ │ └── st_greatcircle_table_out.txt │ │ │ ├── test_ST_CENTERMEAN.py │ │ │ ├── test_ST_CENTERMEDIAN.py │ │ │ ├── test_ST_CENTEROFMASS.py │ │ │ ├── test_ST_CENTROID.py │ │ │ ├── test_ST_DESTINATION.py │ │ │ └── test_ST_GREATCIRCLE.py │ └── version └── snowflake │ ├── .env.template │ ├── CHANGELOG.md │ ├── CHANGELOG.old.md │ ├── Makefile │ ├── README.md │ ├── common │ ├── .sqlfluff │ ├── DROP_FUNCTIONS.sql │ ├── Makefile │ ├── VERSION.sql │ ├── analytics-toolbox-snowflake.png │ ├── build_modules.js │ ├── build_native_app_setup_script.js │ ├── build_share.js │ ├── list_functions.js │ ├── list_libraries.js │ ├── native-app-utils.js │ ├── package.json │ ├── python3_requirements.txt │ ├── rollup.config.js │ ├── run-query.js │ ├── run-script.js │ ├── sql_lint.py │ ├── test-extend.js │ └── test-utils.js │ ├── libraries │ └── javascript │ │ ├── Makefile │ │ ├── libs │ │ ├── accessors.js │ │ ├── clustering.js │ │ ├── constructors.js │ │ ├── h3_boundary.js │ │ ├── h3_compact.js │ │ ├── h3_fromlonglat.js │ │ ├── h3_hexring.js │ │ ├── h3_ispentagon.js │ │ ├── h3_isvalid.js │ │ ├── h3_kring_distances.js │ │ ├── h3_polyfill.js │ │ ├── h3_uncompact.js │ │ ├── measurements.js │ │ ├── placekey.js │ │ ├── processing.js │ │ ├── quadbin.js │ │ ├── quadkey.js │ │ ├── random.js │ │ ├── s2.js │ │ ├── transformations_along.js │ │ ├── transformations_buffer.js │ │ ├── transformations_center.js │ │ ├── transformations_concave.js │ │ ├── transformations_convex.js │ │ ├── transformations_destination.js │ │ └── transformations_greatcircle.js │ │ ├── package.json │ │ ├── src │ │ ├── h3 │ │ │ ├── README.md │ │ │ ├── h3_boundary │ │ │ │ ├── h3core_custom.js │ │ │ │ └── libh3_custom.js │ │ │ ├── h3_compact │ │ │ │ ├── h3core_custom.js │ │ │ │ └── libh3_custom.js │ │ │ ├── h3_hexring │ │ │ │ ├── h3core_custom.js │ │ │ │ └── libh3_custom.js │ │ │ ├── h3_ispentagon │ │ │ │ ├── h3core_custom.js │ │ │ │ └── libh3_custom.js │ │ │ ├── h3_isvalid │ │ │ │ ├── h3core_custom.js │ │ │ │ └── libh3_custom.js │ │ │ ├── h3_kring_distances │ │ │ │ ├── h3core_custom.js │ │ │ │ └── libh3_custom.js │ │ │ ├── h3_polyfill │ │ │ │ ├── h3core_custom.js │ │ │ │ └── libh3_custom.js │ │ │ └── h3_uncompact │ │ │ │ ├── h3core_custom.js │ │ │ │ └── libh3_custom.js │ │ ├── index.js │ │ ├── quadbin.js │ │ ├── quadkey.js │ │ ├── random.js │ │ └── s2.js │ │ └── test │ │ ├── accessors.test.js │ │ ├── clustering.test.js │ │ ├── constructors.test.js │ │ ├── h3.test.js │ │ ├── measurements.test.js │ │ ├── placekey.test.js │ │ ├── processing.test.js │ │ ├── quadbin.test.js │ │ ├── quadkey.test.js │ │ ├── random.test.js │ │ ├── s2.test.js │ │ ├── transformations.test.js │ │ └── transformations_buffer.test.js │ ├── modules │ ├── Makefile │ ├── doc │ │ ├── accessors │ │ │ ├── ST_ENVELOPE_ARR.md │ │ │ └── _INTRO.md │ │ ├── clustering │ │ │ ├── ST_CLUSTERKMEANS.md │ │ │ └── _INTRO.md │ │ ├── constructors │ │ │ ├── ST_BEZIERSPLINE.md │ │ │ ├── ST_MAKEELLIPSE.md │ │ │ ├── ST_MAKEENVELOPE.md │ │ │ ├── ST_TILEENVELOPE.md │ │ │ └── _INTRO.md │ │ ├── h3 │ │ │ ├── H3_BOUNDARY.md │ │ │ ├── H3_CENTER.md │ │ │ ├── H3_COMPACT.md │ │ │ ├── H3_DISTANCE.md │ │ │ ├── H3_FROMGEOGPOINT.md │ │ │ ├── H3_FROMLONGLAT.md │ │ │ ├── H3_HEXRING.md │ │ │ ├── H3_INT_TOSTRING.md │ │ │ ├── H3_ISPENTAGON.md │ │ │ ├── H3_ISVALID.md │ │ │ ├── H3_KRING.md │ │ │ ├── H3_KRING_DISTANCES.md │ │ │ ├── H3_POLYFILL.md │ │ │ ├── H3_POLYFILL_TABLE.md │ │ │ ├── H3_RESOLUTION.md │ │ │ ├── H3_STRING_TOINT.md │ │ │ ├── H3_TOCHILDREN.md │ │ │ ├── H3_TOPARENT.md │ │ │ ├── H3_UNCOMPACT.md │ │ │ ├── _INTRO.md │ │ │ └── images │ │ │ │ ├── H3_POLYFILL_MODE_center.png │ │ │ │ ├── H3_POLYFILL_MODE_contains.png │ │ │ │ └── H3_POLYFILL_MODE_intersects.png │ │ ├── measurements │ │ │ ├── ST_MINKOWSKIDISTANCE.md │ │ │ └── _INTRO.md │ │ ├── placekey │ │ │ ├── PLACEKEY_FROMH3.md │ │ │ ├── PLACEKEY_ISVALID.md │ │ │ ├── PLACEKEY_TOH3.md │ │ │ └── _INTRO.md │ │ ├── processing │ │ │ ├── ST_DELAUNAYLINES.md │ │ │ ├── ST_DELAUNAYPOLYGONS.md │ │ │ ├── ST_POLYGONIZE.md │ │ │ ├── ST_VORONOILINES.md │ │ │ ├── ST_VORONOIPOLYGONS.md │ │ │ └── _INTRO.md │ │ ├── quadbin │ │ │ ├── QUADBIN_BBOX.md │ │ │ ├── QUADBIN_BOUNDARY.md │ │ │ ├── QUADBIN_CENTER.md │ │ │ ├── QUADBIN_DISTANCE.md │ │ │ ├── QUADBIN_FROMGEOGPOINT.md │ │ │ ├── QUADBIN_FROMLONGLAT.md │ │ │ ├── QUADBIN_FROMQUADKEY.md │ │ │ ├── QUADBIN_FROMZXY.md │ │ │ ├── QUADBIN_ISVALID.md │ │ │ ├── QUADBIN_KRING.md │ │ │ ├── QUADBIN_KRING_DISTANCES.md │ │ │ ├── QUADBIN_POLYFILL.md │ │ │ ├── QUADBIN_RESOLUTION.md │ │ │ ├── QUADBIN_SIBLING.md │ │ │ ├── QUADBIN_TOCHILDREN.md │ │ │ ├── QUADBIN_TOPARENT.md │ │ │ ├── QUADBIN_TOQUADKEY.md │ │ │ ├── QUADBIN_TOZXY.md │ │ │ └── _INTRO.md │ │ ├── random │ │ │ ├── ST_GENERATEPOINTS.md │ │ │ └── _INTRO.md │ │ ├── s2 │ │ │ ├── S2_BOUNDARY.md │ │ │ ├── S2_FROMGEOGPOINT.md │ │ │ ├── S2_FROMHILBERTQUADKEY.md │ │ │ ├── S2_FROMLONGLAT.md │ │ │ ├── S2_TOHILBERTQUADKEY.md │ │ │ └── _INTRO.md │ │ └── transformations │ │ │ ├── ST_BUFFER.md │ │ │ ├── ST_CENTERMEAN.md │ │ │ ├── ST_CENTERMEDIAN.md │ │ │ ├── ST_CENTEROFMASS.md │ │ │ ├── ST_CONCAVEHULL.md │ │ │ ├── ST_CONVEXHULL.md │ │ │ ├── ST_DESTINATION.md │ │ │ ├── ST_GREATCIRCLE.md │ │ │ ├── ST_LINE_INTERPOLATE_POINT.md │ │ │ ├── ST_POINTONSURFACE.md │ │ │ └── _INTRO.md │ ├── sql │ │ ├── accessors │ │ │ └── ST_ENVELOPE_ARR.sql │ │ ├── clustering │ │ │ └── ST_CLUSTERKMEANS.sql │ │ ├── constructors │ │ │ ├── ST_BEZIERSPLINE.sql │ │ │ ├── ST_MAKEELLIPSE.sql │ │ │ ├── ST_MAKEENVELOPE.sql │ │ │ └── ST_TILEENVELOPE.sql │ │ ├── h3 │ │ │ ├── H3_BOUNDARY.sql │ │ │ ├── H3_CENTER.sql │ │ │ ├── H3_COMPACT.sql │ │ │ ├── H3_DISTANCE.sql │ │ │ ├── H3_FROMGEOGPOINT.sql │ │ │ ├── H3_FROMLONGLAT.sql │ │ │ ├── H3_HEXRING.sql │ │ │ ├── H3_INT_TOSTRING.sql │ │ │ ├── H3_ISPENTAGON.sql │ │ │ ├── H3_ISVALID.sql │ │ │ ├── H3_KRING.sql │ │ │ ├── H3_KRING_DISTANCES.sql │ │ │ ├── H3_POLYFILL.sql │ │ │ ├── H3_POLYFILL_TABLE.sql │ │ │ ├── H3_RESOLUTION.sql │ │ │ ├── H3_STRING_TOINT.sql │ │ │ ├── H3_TOCHILDREN.sql │ │ │ ├── H3_TOPARENT.sql │ │ │ └── H3_UNCOMPACT.sql │ │ ├── measurements │ │ │ └── ST_MINKOWSKIDISTANCE.sql │ │ ├── placekey │ │ │ ├── PLACEKEY_FROMH3.sql │ │ │ ├── PLACEKEY_ISVALID.sql │ │ │ └── PLACEKEY_TOH3.sql │ │ ├── processing │ │ │ ├── ST_DELAUNAYLINES.sql │ │ │ ├── ST_DELAUNAYPOLYGONS.sql │ │ │ ├── ST_POLYGONIZE.sql │ │ │ ├── ST_VORONOILINES.sql │ │ │ ├── ST_VORONOIPOLYGONS.sql │ │ │ ├── _DELAUNAYHELPER.sql │ │ │ └── _VORONOIHELPER.sql │ │ ├── quadbin │ │ │ ├── QUADBIN_BBOX.sql │ │ │ ├── QUADBIN_BOUNDARY.sql │ │ │ ├── QUADBIN_CENTER.sql │ │ │ ├── QUADBIN_DISTANCE.sql │ │ │ ├── QUADBIN_FROMGEOGPOINT.sql │ │ │ ├── QUADBIN_FROMLONGLAT.sql │ │ │ ├── QUADBIN_FROMQUADKEY.sql │ │ │ ├── QUADBIN_FROMZXY.sql │ │ │ ├── QUADBIN_ISVALID.sql │ │ │ ├── QUADBIN_KRING.sql │ │ │ ├── QUADBIN_KRING_DISTANCES.sql │ │ │ ├── QUADBIN_POLYFILL.sql │ │ │ ├── QUADBIN_RESOLUTION.sql │ │ │ ├── QUADBIN_SIBLING.sql │ │ │ ├── QUADBIN_TOCHILDREN.sql │ │ │ ├── QUADBIN_TOPARENT.sql │ │ │ ├── QUADBIN_TOQUADKEY.sql │ │ │ ├── QUADBIN_TOZXY.sql │ │ │ ├── _GENERATE_RANGE.sql │ │ │ ├── _QUADBIN_FROMQUADINT.sql │ │ │ ├── _QUADBIN_INT_TOSTRING.sql │ │ │ ├── _QUADBIN_KRING.sql │ │ │ ├── _QUADBIN_SIBLING.sql │ │ │ ├── _QUADBIN_STRING_TOINT.sql │ │ │ ├── _QUADBIN_TOZXY.sql │ │ │ └── _ZXY_QUADBIN_SIBLING.sql │ │ ├── quadkey │ │ │ ├── QUADINT_BBOX.sql │ │ │ ├── QUADINT_BOUNDARY.sql │ │ │ ├── QUADINT_FROMGEOGPOINT.sql │ │ │ ├── QUADINT_FROMLONGLAT.sql │ │ │ ├── QUADINT_FROMQUADKEY.sql │ │ │ ├── QUADINT_FROMZXY.sql │ │ │ ├── QUADINT_KRING.sql │ │ │ ├── QUADINT_KRING_DISTANCES.sql │ │ │ ├── QUADINT_POLYFILL.sql │ │ │ ├── QUADINT_SIBLING.sql │ │ │ ├── QUADINT_TOCHILDREN.sql │ │ │ ├── QUADINT_TOPARENT.sql │ │ │ ├── QUADINT_TOQUADKEY.sql │ │ │ └── QUADINT_TOZXY.sql │ │ ├── random │ │ │ └── ST_GENERATEPOINTS.sql │ │ ├── s2 │ │ │ ├── S2_BOUNDARY.sql │ │ │ ├── S2_FROMGEOGPOINT.sql │ │ │ ├── S2_FROMHILBERTQUADKEY.sql │ │ │ ├── S2_FROMLONGLAT.sql │ │ │ └── S2_TOHILBERTQUADKEY.sql │ │ ├── transformations │ │ │ ├── ST_BUFFER.sql │ │ │ ├── ST_CENTERMEAN.sql │ │ │ ├── ST_CENTERMEDIAN.sql │ │ │ ├── ST_CENTEROFMASS.sql │ │ │ ├── ST_CONCAVEHULL.sql │ │ │ ├── ST_CONVEXHULL.sql │ │ │ ├── ST_DESTINATION.sql │ │ │ ├── ST_GREATCIRCLE.sql │ │ │ ├── ST_LINE_INTERPOLATE_POINT.sql │ │ │ └── ST_POINTONSURFACE.sql │ │ └── utils │ │ │ └── _CARTO_ARRAY_ERROR.sql │ └── test │ │ ├── accessors │ │ ├── ST_ENVELOPE_ARR.test.js │ │ └── fixtures │ │ │ ├── st_envelope_arr_featureCollection_in.js │ │ │ ├── st_envelope_arr_featureCollection_out.js │ │ │ ├── st_envelope_arr_points_in.js │ │ │ └── st_envelope_arr_points_out.js │ │ ├── clustering │ │ ├── ST_CLUSTERKMEANS.test.js │ │ └── fixtures │ │ │ ├── st_clusterkmeans_out_points1.js │ │ │ ├── st_clusterkmeans_out_points2.js │ │ │ └── st_clusterkmeans_out_points3.js │ │ ├── constructors │ │ ├── ST_BEZIERSPLINE.test.js │ │ ├── ST_MAKEELLIPSE.test.js │ │ ├── ST_MAKEENVELOPE.test.js │ │ └── ST_TILEENVELOPE.test.js │ │ ├── h3 │ │ ├── H3_BOUNDARY.test.js │ │ ├── H3_CENTER.test.js │ │ ├── H3_COMPACT.test.js │ │ ├── H3_DISTANCE.test.js │ │ ├── H3_FROMGEOGPOINT.test.js │ │ ├── H3_FROMLONGLAT.test.js │ │ ├── H3_HEXRING.test.js │ │ ├── H3_INT_TOSTRING.test.js │ │ ├── H3_ISPENTAGON.test.js │ │ ├── H3_ISVALID.test.js │ │ ├── H3_KRING.test.js │ │ ├── H3_KRING_DISTANCES.test.js │ │ ├── H3_POLYFILL.test.js │ │ ├── H3_RESOLUTION.test.js │ │ ├── H3_STRING_TOINT.test.js │ │ ├── H3_TOCHILDREN.test.js │ │ └── H3_TOPARENT.test.js │ │ ├── measurements │ │ └── ST_MINKOWSKIDISTANCE.test.js │ │ ├── placekey │ │ ├── PLACEKEY_FROMH3.test.js │ │ ├── PLACEKEY_ISVALID.test.js │ │ └── PLACEKEY_TOH3.test.js │ │ ├── processing │ │ ├── ST_DELAUNAYLINES.test.js │ │ ├── ST_DELAUNAYPOLYGONS.test.js │ │ ├── ST_POLYGONIZE.test.js │ │ ├── ST_VORONOILINES.test.js │ │ ├── ST_VORONOIPOLYGONS.test.js │ │ └── fixtures │ │ │ ├── st_delaunay_in.js │ │ │ ├── st_delaunay_out.js │ │ │ ├── st_polygonize_in.js │ │ │ ├── st_polygonize_out.js │ │ │ ├── st_voronoi_in.js │ │ │ └── st_voronoi_out.js │ │ ├── quadbin │ │ ├── QUADBIN_BBOX.test.js │ │ ├── QUADBIN_BOUNDARY.test.js │ │ ├── QUADBIN_CENTER.test.js │ │ ├── QUADBIN_DISTANCE.test.js │ │ ├── QUADBIN_FROMGEOGPOINT.test.js │ │ ├── QUADBIN_FROMLONGLAT.test.js │ │ ├── QUADBIN_FROMQUADKEY.test.js │ │ ├── QUADBIN_FROMZXY.test.js │ │ ├── QUADBIN_ISVALID.test.js │ │ ├── QUADBIN_KRING.test.js │ │ ├── QUADBIN_KRING_DISTANCES.test.js │ │ ├── QUADBIN_POLYFILL.test.js │ │ ├── QUADBIN_RESOLUTION.test.js │ │ ├── QUADBIN_SIBLING.test.js │ │ ├── QUADBIN_TOCHILDREN.test.js │ │ ├── QUADBIN_TOPARENT.test.js │ │ ├── QUADBIN_TOQUADKEY.test.js │ │ ├── QUADBIN_TOZXY.test.js │ │ ├── _QUADBIN_INT_TOSTRING.test.js │ │ ├── _QUADBIN_STRING_TOINT.test.js │ │ ├── fixtures │ │ │ └── coords_sample.sql │ │ └── global │ │ │ ├── setup.js │ │ │ └── teardown.js │ │ ├── quadkey │ │ ├── QUADINT.test.js │ │ ├── QUADINT_BBOX.test.js │ │ ├── QUADINT_BOUNDARY.test.js │ │ ├── QUADINT_FROMLONGLAT.test.js │ │ ├── QUADINT_KRING.test.js │ │ ├── QUADINT_KRING_DISTANCES.test.js │ │ ├── QUADINT_POLYFILL.test.js │ │ ├── QUADINT_TOCHILDREN.test.js │ │ ├── QUADINT_TOPARENT.test.js │ │ └── fixtures │ │ │ ├── quadint_fromlonglat_out.js │ │ │ └── quadint_polyfill_out.js │ │ ├── random │ │ └── ST_GENERATEPOINTS.test.js │ │ ├── s2 │ │ ├── S2_BOUNDARY.test.js │ │ ├── S2_FROMGEOGPOINT.test.js │ │ ├── S2_FROMHILBERTQUADKEY.test.js │ │ ├── S2_FROMLONGLAT.test.js │ │ └── S2_TOHILBERTQUADKEY.test.js │ │ └── transformations │ │ ├── ST_BUFFER.test.js │ │ ├── ST_CENTERMEAN.test.js │ │ ├── ST_CENTERMEDIAN.test.js │ │ ├── ST_CENTEROFMASS.test.js │ │ ├── ST_CONCAVEHULL.test.js │ │ ├── ST_CONVEXHULL.test.js │ │ ├── ST_DESTINATION.test.js │ │ ├── ST_GREATCIRCLE.test.js │ │ ├── ST_LINE_INTERPOLATE_POINT.test.js │ │ ├── ST_POINTONSURFACE.test.js │ │ └── fixtures │ │ ├── st_buffer_in.js │ │ ├── st_buffer_out.js │ │ ├── st_concavehull_duplicates_in.js │ │ ├── st_concavehull_duplicates_out.js │ │ ├── st_concavehull_fiji_in.js │ │ ├── st_concavehull_fiji_out.js │ │ ├── st_concavehull_hole_in.js │ │ ├── st_concavehull_hole_out.js │ │ ├── st_concavehull_in.js │ │ ├── st_concavehull_out.js │ │ ├── st_concavehull_point_in.js │ │ └── st_concavehull_point_out.js │ ├── native_app │ ├── ADDITIONAL_TABLES.sql │ ├── Makefile │ ├── README.md │ ├── SETUP_SCRIPT.sql │ ├── get_modules_sql_from_stage.py │ └── manifest.yml │ └── version ├── common └── assets │ ├── h3_polyfill_mode_center.png │ ├── h3_polyfill_mode_contains.png │ ├── h3_polyfill_mode_intersects.png │ ├── input_polygon.png │ ├── quadbin_polyfill_mode_center.png │ ├── quadbin_polyfill_mode_contains.png │ └── quadbin_polyfill_mode_intersects.png └── jest.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | /.github/ @CartoDB/infrastructure-team -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/bigquery-ded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/bigquery-ded.yml -------------------------------------------------------------------------------- /.github/workflows/bigquery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/bigquery.yml -------------------------------------------------------------------------------- /.github/workflows/databricks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/databricks.yml -------------------------------------------------------------------------------- /.github/workflows/postgres-ded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/postgres-ded.yml -------------------------------------------------------------------------------- /.github/workflows/postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/postgres.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/redshift-ded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/redshift-ded.yml -------------------------------------------------------------------------------- /.github/workflows/redshift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/redshift.yml -------------------------------------------------------------------------------- /.github/workflows/snowflake-ded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/snowflake-ded.yml -------------------------------------------------------------------------------- /.github/workflows/snowflake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.github/workflows/snowflake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/README.md -------------------------------------------------------------------------------- /clouds/bigquery/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/.env.template -------------------------------------------------------------------------------- /clouds/bigquery/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/CHANGELOG.md -------------------------------------------------------------------------------- /clouds/bigquery/CHANGELOG.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/CHANGELOG.old.md -------------------------------------------------------------------------------- /clouds/bigquery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/Makefile -------------------------------------------------------------------------------- /clouds/bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/README.md -------------------------------------------------------------------------------- /clouds/bigquery/common/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/.sqlfluff -------------------------------------------------------------------------------- /clouds/bigquery/common/DROP_FUNCTIONS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/DROP_FUNCTIONS.sql -------------------------------------------------------------------------------- /clouds/bigquery/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/Makefile -------------------------------------------------------------------------------- /clouds/bigquery/common/VERSION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/VERSION.sql -------------------------------------------------------------------------------- /clouds/bigquery/common/analytics-toolbox-bigquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/analytics-toolbox-bigquery.png -------------------------------------------------------------------------------- /clouds/bigquery/common/build_modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/build_modules.js -------------------------------------------------------------------------------- /clouds/bigquery/common/copy_module_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/copy_module_permissions.sh -------------------------------------------------------------------------------- /clouds/bigquery/common/list_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/list_functions.js -------------------------------------------------------------------------------- /clouds/bigquery/common/list_libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/list_libraries.js -------------------------------------------------------------------------------- /clouds/bigquery/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/package.json -------------------------------------------------------------------------------- /clouds/bigquery/common/python3_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/python3_requirements.txt -------------------------------------------------------------------------------- /clouds/bigquery/common/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/rollup.config.js -------------------------------------------------------------------------------- /clouds/bigquery/common/run-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/run-query.js -------------------------------------------------------------------------------- /clouds/bigquery/common/run-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/run-script.js -------------------------------------------------------------------------------- /clouds/bigquery/common/set_module_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/set_module_permissions.sh -------------------------------------------------------------------------------- /clouds/bigquery/common/set_module_permissions_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/set_module_permissions_group.sh -------------------------------------------------------------------------------- /clouds/bigquery/common/sql_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/sql_lint.py -------------------------------------------------------------------------------- /clouds/bigquery/common/test-extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/test-extend.js -------------------------------------------------------------------------------- /clouds/bigquery/common/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/common/test-utils.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/Makefile -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/accessors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/accessors.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/clustering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/clustering.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/constructors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/constructors.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/h3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/h3.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/measurements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/measurements.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/placekey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/placekey.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/processing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/processing.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/quadkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/quadkey.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/random.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/libs/s2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/libs/s2.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/package.json -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/src/index.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/src/quadkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/src/quadkey.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/src/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/src/random.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/src/s2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/src/s2.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/test/h3.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/test/h3.test.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/test/placekey.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/test/placekey.test.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/test/quadkey.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/test/quadkey.test.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/test/random.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/test/random.test.js -------------------------------------------------------------------------------- /clouds/bigquery/libraries/javascript/test/s2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/libraries/javascript/test/s2.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/Makefile -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/accessors/ST_ENVELOPE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/accessors/ST_ENVELOPE.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/accessors/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/accessors/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/clustering/ST_CLUSTERKMEANS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/clustering/ST_CLUSTERKMEANS.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/clustering/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/clustering/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/constructors/ST_MAKEELLIPSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/constructors/ST_MAKEELLIPSE.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/constructors/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/constructors/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/geohash/GEOHASH_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/geohash/GEOHASH_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/geohash/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/geohash/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_CENTER.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_COMPACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_COMPACT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_DISTANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_DISTANCE.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_FROMGEOGPOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_FROMGEOGPOINT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_HEXRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_HEXRING.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_INT_TOSTRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_INT_TOSTRING.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_ISPENTAGON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_ISPENTAGON.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_ISVALID.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_KRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_KRING.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_KRING_DISTANCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_KRING_DISTANCES.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_POLYFILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_POLYFILL.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_POLYFILL_MODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_POLYFILL_MODE.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_POLYFILL_TABLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_POLYFILL_TABLE.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_RESOLUTION.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_STRING_TOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_STRING_TOINT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_TOPARENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_TOPARENT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/H3_UNCOMPACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/H3_UNCOMPACT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/_H3_COVERINGCELLIDS.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/_H3_COVERINGCELLIDS.mdx -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/h3/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/h3/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/measurements/ST_ANGLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/measurements/ST_ANGLE.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/measurements/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/measurements/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/placekey/PLACEKEY_FROMH3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/placekey/PLACEKEY_FROMH3.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/placekey/PLACEKEY_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/placekey/PLACEKEY_ISVALID.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/placekey/PLACEKEY_TOH3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/placekey/PLACEKEY_TOH3.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/placekey/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/placekey/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/processing/ST_DELAUNAYLINES.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/processing/ST_POLYGONIZE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/processing/ST_POLYGONIZE.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/processing/ST_VORONOILINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/processing/ST_VORONOILINES.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/processing/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/processing/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_BBOX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_BBOX.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_CENTER.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_DISTANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_DISTANCE.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMQUADKEY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMZXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_FROMZXY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_ISVALID.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_KRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_KRING.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_POLYFILL.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_RESOLUTION.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_SIBLING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_SIBLING.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_TOPARENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_TOPARENT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_TOQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_TOQUADKEY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/QUADBIN_TOZXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/QUADBIN_TOZXY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/quadbin/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/quadbin/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/random/ST_GENERATEPOINTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/random/ST_GENERATEPOINTS.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/random/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/random/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_CENTER.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_FROMGEOGPOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_FROMGEOGPOINT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_FROMHILBERTQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_FROMHILBERTQUADKEY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_FROMTOKEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_FROMTOKEN.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_FROMUINT64REPR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_FROMUINT64REPR.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_RESOLUTION.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_TOHILBERTQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_TOHILBERTQUADKEY.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_TOTOKEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_TOTOKEN.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/S2_TOUINT64REPR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/S2_TOUINT64REPR.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/s2/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/s2/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/transformations/ST_BUFFER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/transformations/ST_BUFFER.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/doc/transformations/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/doc/transformations/_INTRO.md -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/.sqlfluffignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/.sqlfluffignore -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/accessors/ST_ENVELOPE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/accessors/ST_ENVELOPE.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/geohash/GEOHASH_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/geohash/GEOHASH_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_CENTER.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_COMPACT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_COMPACT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_DISTANCE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_DISTANCE.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_FROMGEOGPOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_FROMGEOGPOINT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_FROMLONGLAT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_FROMLONGLAT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_HEXRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_HEXRING.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_INT_TOSTRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_INT_TOSTRING.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_ISPENTAGON.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_ISPENTAGON.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_ISVALID.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_KRING.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_KRING_DISTANCES.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_KRING_DISTANCES.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_POLYFILL_TABLE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_POLYFILL_TABLE.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_STRING_TOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_STRING_TOINT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/H3_UNCOMPACT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/H3_UNCOMPACT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/h3/_H3_COVERINGCELLIDS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/h3/_H3_COVERINGCELLIDS.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/measurements/ST_ANGLE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/measurements/ST_ANGLE.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/placekey/PLACEKEY_FROMH3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/placekey/PLACEKEY_FROMH3.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/placekey/PLACEKEY_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/placekey/PLACEKEY_ISVALID.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/placekey/PLACEKEY_TOH3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/placekey/PLACEKEY_TOH3.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/processing/ST_POLYGONIZE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/processing/ST_POLYGONIZE.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/processing/ST_VORONOILINES.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/processing/ST_VORONOILINES.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/processing/__VORONOIHELPER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/processing/__VORONOIHELPER.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_BBOX.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_CENTER.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_DISTANCE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_DISTANCE.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_FROMZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_FROMZXY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_ISVALID.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_KRING.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_SIBLING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_SIBLING.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_TOQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_TOQUADKEY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadbin/QUADBIN_TOZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadbin/QUADBIN_TOZXY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_BBOX.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_CENTER.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_FROMZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_FROMZXY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_KRING.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_SIBLING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_SIBLING.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_TOQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_TOQUADKEY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/quadkey/QUADINT_TOZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/quadkey/QUADINT_TOZXY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/random/ST_GENERATEPOINTS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/random/ST_GENERATEPOINTS.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_CENTER.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_FROMGEOGPOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_FROMGEOGPOINT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_FROMHILBERTQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_FROMHILBERTQUADKEY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_FROMLONGLAT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_FROMLONGLAT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_FROMTOKEN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_FROMTOKEN.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_FROMUINT64REPR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_FROMUINT64REPR.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_TOHILBERTQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_TOHILBERTQUADKEY.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_TOTOKEN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_TOTOKEN.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/s2/S2_TOUINT64REPR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/s2/S2_TOUINT64REPR.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/transformations/ST_BUFFER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/transformations/ST_BUFFER.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/utils/__CHECK_TABLE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/utils/__CHECK_TABLE.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/utils/__TABLENAME_JOIN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/utils/__TABLENAME_JOIN.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/sql/utils/__TABLENAME_SPLIT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/sql/utils/__TABLENAME_SPLIT.sql -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/accessors/ST_ENVELOPE.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/accessors/ST_ENVELOPE.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_BOUNDARY.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_BOUNDARY.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_CENTER.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_CENTER.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_COMPACT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_COMPACT.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_DISTANCE.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_DISTANCE.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_FROMGEOGPOINT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_FROMGEOGPOINT.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_FROMLONGLAT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_FROMLONGLAT.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_HEXRING.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_HEXRING.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_INT_TOSTRING.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_INT_TOSTRING.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_ISPENTAGON.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_ISPENTAGON.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_ISVALID.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_ISVALID.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_KRING.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_KRING.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_KRING_DISTANCES.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_KRING_DISTANCES.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_POLYFILL.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_POLYFILL.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_POLYFILL_TABLE.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_POLYFILL_TABLE.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_RESOLUTION.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_RESOLUTION.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_STRING_TOINT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_STRING_TOINT.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_TOCHILDREN.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_TOCHILDREN.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/h3/H3_TOPARENT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/h3/H3_TOPARENT.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/measurements/ST_ANGLE.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/measurements/ST_ANGLE.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/quadbin/QUADBIN_BBOX.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/quadbin/QUADBIN_BBOX.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/quadbin/QUADBIN_KRING.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/quadbin/QUADBIN_KRING.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/quadbin/QUADBIN_TOZXY.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/quadbin/QUADBIN_TOZXY.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/quadkey/QUADINT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/quadkey/QUADINT.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/quadkey/QUADINT_BBOX.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/quadkey/QUADINT_BBOX.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/quadkey/QUADINT_KRING.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/quadkey/QUADINT_KRING.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_BOUNDARY.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_BOUNDARY.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_CENTER.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_CENTER.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_FROMGEOGPOINT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_FROMGEOGPOINT.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_FROMLONGLAT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_FROMLONGLAT.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_FROMTOKEN.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_FROMTOKEN.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_FROMUINT64REPR.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_FROMUINT64REPR.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_RESOLUTION.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_RESOLUTION.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_TOCHILDREN.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_TOCHILDREN.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_TOTOKEN.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_TOTOKEN.test.js -------------------------------------------------------------------------------- /clouds/bigquery/modules/test/s2/S2_TOUINT64REPR.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/bigquery/modules/test/s2/S2_TOUINT64REPR.test.js -------------------------------------------------------------------------------- /clouds/bigquery/version: -------------------------------------------------------------------------------- 1 | 1.2.6 2 | -------------------------------------------------------------------------------- /clouds/databricks/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/.env.template -------------------------------------------------------------------------------- /clouds/databricks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/.gitignore -------------------------------------------------------------------------------- /clouds/databricks/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/CHANGELOG.md -------------------------------------------------------------------------------- /clouds/databricks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/Makefile -------------------------------------------------------------------------------- /clouds/databricks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/README.md -------------------------------------------------------------------------------- /clouds/databricks/common/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/.sqlfluff -------------------------------------------------------------------------------- /clouds/databricks/common/DROP_FUNCTIONS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/DROP_FUNCTIONS.sql -------------------------------------------------------------------------------- /clouds/databricks/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/Makefile -------------------------------------------------------------------------------- /clouds/databricks/common/VERSION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/VERSION.sql -------------------------------------------------------------------------------- /clouds/databricks/common/analytics-toolbox-databricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/analytics-toolbox-databricks.png -------------------------------------------------------------------------------- /clouds/databricks/common/build_modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/build_modules.js -------------------------------------------------------------------------------- /clouds/databricks/common/list_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/list_functions.js -------------------------------------------------------------------------------- /clouds/databricks/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/package.json -------------------------------------------------------------------------------- /clouds/databricks/common/python3_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/python3_requirements.txt -------------------------------------------------------------------------------- /clouds/databricks/common/run_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/run_query.py -------------------------------------------------------------------------------- /clouds/databricks/common/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/run_script.py -------------------------------------------------------------------------------- /clouds/databricks/common/sql_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/sql_lint.py -------------------------------------------------------------------------------- /clouds/databricks/common/test_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/common/test_utils/__init__.py -------------------------------------------------------------------------------- /clouds/databricks/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/databricks/modules/Makefile -------------------------------------------------------------------------------- /clouds/databricks/modules/doc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/databricks/modules/sql/.sqlfluffignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/databricks/modules/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/databricks/version: -------------------------------------------------------------------------------- 1 | 0.1.0 2 | -------------------------------------------------------------------------------- /clouds/postgres/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/.env.template -------------------------------------------------------------------------------- /clouds/postgres/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/CHANGELOG.md -------------------------------------------------------------------------------- /clouds/postgres/CHANGELOG.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/CHANGELOG.old.md -------------------------------------------------------------------------------- /clouds/postgres/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/Makefile -------------------------------------------------------------------------------- /clouds/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/README.md -------------------------------------------------------------------------------- /clouds/postgres/common/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/.sqlfluff -------------------------------------------------------------------------------- /clouds/postgres/common/DROP_FUNCTIONS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/DROP_FUNCTIONS.sql -------------------------------------------------------------------------------- /clouds/postgres/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/Makefile -------------------------------------------------------------------------------- /clouds/postgres/common/VERSION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/VERSION.sql -------------------------------------------------------------------------------- /clouds/postgres/common/analytics-toolbox-postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/analytics-toolbox-postgres.png -------------------------------------------------------------------------------- /clouds/postgres/common/build_modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/build_modules.js -------------------------------------------------------------------------------- /clouds/postgres/common/list_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/list_functions.js -------------------------------------------------------------------------------- /clouds/postgres/common/list_libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/list_libraries.js -------------------------------------------------------------------------------- /clouds/postgres/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/package.json -------------------------------------------------------------------------------- /clouds/postgres/common/python3_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/python3_requirements.txt -------------------------------------------------------------------------------- /clouds/postgres/common/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/rollup.config.js -------------------------------------------------------------------------------- /clouds/postgres/common/run_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/run_query.py -------------------------------------------------------------------------------- /clouds/postgres/common/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/run_script.py -------------------------------------------------------------------------------- /clouds/postgres/common/sql_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/sql_lint.py -------------------------------------------------------------------------------- /clouds/postgres/common/test_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/common/test_utils/__init__.py -------------------------------------------------------------------------------- /clouds/postgres/libraries/javascript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/libraries/javascript/Makefile -------------------------------------------------------------------------------- /clouds/postgres/libraries/javascript/libs/h3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/libraries/javascript/libs/h3.js -------------------------------------------------------------------------------- /clouds/postgres/libraries/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/libraries/javascript/package.json -------------------------------------------------------------------------------- /clouds/postgres/libraries/javascript/src/h3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/libraries/javascript/src/h3.js -------------------------------------------------------------------------------- /clouds/postgres/libraries/javascript/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/libraries/javascript/src/index.js -------------------------------------------------------------------------------- /clouds/postgres/libraries/javascript/test/h3.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/libraries/javascript/test/h3.test.js -------------------------------------------------------------------------------- /clouds/postgres/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/Makefile -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_CENTER.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_COMPACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_COMPACT.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_DISTANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_DISTANCE.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_FROMGEOGPOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_FROMGEOGPOINT.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_HEXRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_HEXRING.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_INT_TOSTRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_INT_TOSTRING.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_ISPENTAGON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_ISPENTAGON.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_ISVALID.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_KRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_KRING.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_KRING_DISTANCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_KRING_DISTANCES.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_POLYFILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_POLYFILL.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_STRING_TOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_STRING_TOINT.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_TOPARENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_TOPARENT.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/H3_UNCOMPACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/H3_UNCOMPACT.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/h3/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/h3/_INTRO.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_BBOX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_BBOX.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_CENTER.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_DISTANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_DISTANCE.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_FROMQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMQUADKEY.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_FROMZXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_FROMZXY.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_ISVALID.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_KRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_KRING.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_POLYFILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_POLYFILL.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_RESOLUTION.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_SIBLING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_SIBLING.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_TOPARENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_TOPARENT.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_TOQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_TOQUADKEY.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/QUADBIN_TOZXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/QUADBIN_TOZXY.md -------------------------------------------------------------------------------- /clouds/postgres/modules/doc/quadbin/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/doc/quadbin/_INTRO.md -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_CENTER.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_COMPACT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_COMPACT.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_DISTANCE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_DISTANCE.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_FROMGEOGPOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_FROMGEOGPOINT.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_FROMLONGLAT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_FROMLONGLAT.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_HEXRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_HEXRING.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_INT_TOSTRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_INT_TOSTRING.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_ISPENTAGON.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_ISPENTAGON.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_ISVALID.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_KRING.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_KRING_DISTANCES.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_KRING_DISTANCES.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_STRING_TOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_STRING_TOINT.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/h3/H3_UNCOMPACT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/h3/H3_UNCOMPACT.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_BBOX.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_CENTER.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_DISTANCE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_DISTANCE.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_FROMZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_FROMZXY.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_ISVALID.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_KRING.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_SIBLING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_SIBLING.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_TOQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_TOQUADKEY.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/QUADBIN_TOZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/QUADBIN_TOZXY.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/sql/quadbin/__CARTO_ERROR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/sql/quadbin/__CARTO_ERROR.sql -------------------------------------------------------------------------------- /clouds/postgres/modules/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/__init__.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_BOUNDARY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_BOUNDARY.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_CENTER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_CENTER.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_COMPACT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_COMPACT.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_DISTANCE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_DISTANCE.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_FROMGEOGPOINT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_FROMGEOGPOINT.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_FROMLONGLAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_FROMLONGLAT.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_HEXRING.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_HEXRING.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_INT_TOSTRING.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_INT_TOSTRING.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_ISPENTAGON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_ISPENTAGON.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_ISVALID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_ISVALID.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_KRING.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_KRING.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_KRING_DISTANCES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_KRING_DISTANCES.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_POLYFILL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_POLYFILL.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_RESOLUTION.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_RESOLUTION.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_STRING_TOINT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_STRING_TOINT.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_TOCHILDREN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_TOCHILDREN.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/h3/test_H3_TOPARENT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/h3/test_H3_TOPARENT.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/quadbin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/postgres/modules/test/quadbin/test_QUADBIN_BBOX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/quadbin/test_QUADBIN_BBOX.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/quadbin/test_QUADBIN_KRING.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/quadbin/test_QUADBIN_KRING.py -------------------------------------------------------------------------------- /clouds/postgres/modules/test/quadbin/test_QUADBIN_TOZXY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/postgres/modules/test/quadbin/test_QUADBIN_TOZXY.py -------------------------------------------------------------------------------- /clouds/postgres/version: -------------------------------------------------------------------------------- 1 | 1.3.1 2 | -------------------------------------------------------------------------------- /clouds/redshift/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/.env.template -------------------------------------------------------------------------------- /clouds/redshift/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/CHANGELOG.md -------------------------------------------------------------------------------- /clouds/redshift/CHANGELOG.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/CHANGELOG.old.md -------------------------------------------------------------------------------- /clouds/redshift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/Makefile -------------------------------------------------------------------------------- /clouds/redshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/README.md -------------------------------------------------------------------------------- /clouds/redshift/common/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/.sqlfluff -------------------------------------------------------------------------------- /clouds/redshift/common/DROP_FUNCTIONS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/DROP_FUNCTIONS.sql -------------------------------------------------------------------------------- /clouds/redshift/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/Makefile -------------------------------------------------------------------------------- /clouds/redshift/common/VERSION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/VERSION.sql -------------------------------------------------------------------------------- /clouds/redshift/common/analytics-toolbox-redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/analytics-toolbox-redshift.png -------------------------------------------------------------------------------- /clouds/redshift/common/build_modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/build_modules.js -------------------------------------------------------------------------------- /clouds/redshift/common/list_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/list_functions.js -------------------------------------------------------------------------------- /clouds/redshift/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/package.json -------------------------------------------------------------------------------- /clouds/redshift/common/python2_requirements.txt: -------------------------------------------------------------------------------- 1 | pytest==4.6.11 -------------------------------------------------------------------------------- /clouds/redshift/common/python3_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/python3_requirements.txt -------------------------------------------------------------------------------- /clouds/redshift/common/run_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/run_query.py -------------------------------------------------------------------------------- /clouds/redshift/common/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/run_script.py -------------------------------------------------------------------------------- /clouds/redshift/common/serialize_libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/serialize_libraries.sh -------------------------------------------------------------------------------- /clouds/redshift/common/sql_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/sql_lint.py -------------------------------------------------------------------------------- /clouds/redshift/common/test_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/common/test_utils/__init__.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/Makefile -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/lib/__init__.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.0' 2 | -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/lib/clustering/kmeans.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/placekey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/lib/placekey/__init__.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/processing/helper.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2021, CARTO 2 | 3 | PRECISION = 10 4 | -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/quadbin/__init__.py: -------------------------------------------------------------------------------- 1 | from quadbin.main import * 2 | -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/quadkey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/lib/quadkey/__init__.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/random/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/lib/random/__init__.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/random/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/lib/random/helper.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/random/measurement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/lib/random/measurement.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/lib/s2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/lib/s2/__init__.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/requirements.txt -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/test/__init__.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/test/test_constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/test/test_constructors.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/test/test_init.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/test/test_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/test/test_processing.py -------------------------------------------------------------------------------- /clouds/redshift/libraries/python/test/test_quadkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/libraries/python/test/test_quadkey.py -------------------------------------------------------------------------------- /clouds/redshift/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/Makefile -------------------------------------------------------------------------------- /clouds/redshift/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/clustering/ST_CLUSTERKMEANS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/clustering/ST_CLUSTERKMEANS.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/clustering/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/clustering/_INTRO.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/constructors/ST_MAKEELLIPSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/constructors/ST_MAKEELLIPSE.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/constructors/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/constructors/_INTRO.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/placekey/PLACEKEY_ASH3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/placekey/PLACEKEY_ASH3.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/placekey/PLACEKEY_FROMH3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/placekey/PLACEKEY_FROMH3.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/placekey/PLACEKEY_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/placekey/PLACEKEY_ISVALID.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/placekey/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/placekey/_INTRO.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/processing/ST_DELAUNAYLINES.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/processing/ST_POLYGONIZE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/processing/ST_POLYGONIZE.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/processing/ST_VORONOILINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/processing/ST_VORONOILINES.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/processing/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/processing/_INTRO.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_BBOX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_BBOX.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_CENTER.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_DISTANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_DISTANCE.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_FROMQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMQUADKEY.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_FROMZXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_FROMZXY.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_ISVALID.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_KRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_KRING.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_POLYFILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_POLYFILL.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_RESOLUTION.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_SIBLING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_SIBLING.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_TOPARENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_TOPARENT.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_TOQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_TOQUADKEY.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/QUADBIN_TOZXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/QUADBIN_TOZXY.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/quadbin/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/quadbin/_INTRO.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/random/ST_GENERATEPOINTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/random/ST_GENERATEPOINTS.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/random/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/random/_INTRO.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_FROMGEOGPOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_FROMGEOGPOINT.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_FROMHILBERTQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_FROMHILBERTQUADKEY.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_FROMTOKEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_FROMTOKEN.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_FROMUINT64REPR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_FROMUINT64REPR.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_POLYFILL_BBOX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_POLYFILL_BBOX.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_RESOLUTION.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_TOHILBERTQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_TOHILBERTQUADKEY.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_TOPARENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_TOPARENT.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_TOTOKEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_TOTOKEN.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/S2_TOUINT64REPR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/S2_TOUINT64REPR.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/s2/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/s2/_INTRO.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/transformations/ST_CENTROID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/transformations/ST_CENTROID.md -------------------------------------------------------------------------------- /clouds/redshift/modules/doc/transformations/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/doc/transformations/_INTRO.md -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/placekey/PLACEKEY_ASH3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/placekey/PLACEKEY_ASH3.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/placekey/PLACEKEY_FROMH3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/placekey/PLACEKEY_FROMH3.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/placekey/PLACEKEY_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/placekey/PLACEKEY_ISVALID.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/processing/ST_POLYGONIZE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/processing/ST_POLYGONIZE.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/processing/ST_VORONOILINES.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/processing/ST_VORONOILINES.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_BBOX.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_CENTER.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_DISTANCE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_DISTANCE.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_FROMZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_FROMZXY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_ISVALID.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_KRING.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_SIBLING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_SIBLING.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_TOQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_TOQUADKEY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/QUADBIN_TOZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/QUADBIN_TOZXY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/__QUADBIN_TOZXY_X.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/__QUADBIN_TOZXY_X.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadbin/__QUADBIN_TOZXY_Y.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadbin/__QUADBIN_TOZXY_Y.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_BBOX.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_FROMZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_FROMZXY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_KRING.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_SIBLING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_SIBLING.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_TOQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_TOQUADKEY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/QUADINT_TOZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/QUADINT_TOZXY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/quadkey/__QUADKEY_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/quadkey/__QUADKEY_BBOX.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/random/ST_GENERATEPOINTS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/random/ST_GENERATEPOINTS.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_FROMGEOGPOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_FROMGEOGPOINT.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_FROMHILBERTQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_FROMHILBERTQUADKEY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_FROMLONGLAT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_FROMLONGLAT.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_FROMTOKEN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_FROMTOKEN.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_FROMUINT64REPR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_FROMUINT64REPR.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_POLYFILL_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_POLYFILL_BBOX.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_TOHILBERTQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_TOHILBERTQUADKEY.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_TOTOKEN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_TOTOKEN.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/sql/s2/S2_TOUINT64REPR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/sql/s2/S2_TOUINT64REPR.sql -------------------------------------------------------------------------------- /clouds/redshift/modules/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/__init__.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/clustering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/test/constructors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/test/placekey/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/test/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/test/quadbin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/test/quadbin/test_QUADBIN_BBOX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/quadbin/test_QUADBIN_BBOX.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/quadbin/test_QUADBIN_KRING.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/quadbin/test_QUADBIN_KRING.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/quadbin/test_QUADBIN_TOZXY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/quadbin/test_QUADBIN_TOZXY.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/quadkey/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/test/quadkey/test_QUADINT_BBOX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/quadkey/test_QUADINT_BBOX.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/quadkey/test_QUADINT_KRING.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/quadkey/test_QUADINT_KRING.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/quadkey/test_QUADINT_TOZXY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/quadkey/test_QUADINT_TOZXY.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/random/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_BOUNDARY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_BOUNDARY.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_FROMGEOGPOINT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_FROMGEOGPOINT.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_FROMLONGLAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_FROMLONGLAT.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_FROMTOKEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_FROMTOKEN.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_FROMUINT64REPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_FROMUINT64REPR.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_POLYFILL_BBOX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_POLYFILL_BBOX.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_RESOLUTION.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_RESOLUTION.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_TOCHILDREN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_TOCHILDREN.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_TOPARENT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_TOPARENT.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_TOTOKEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_TOTOKEN.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/s2/test_S2_TOUINT64REPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/redshift/modules/test/s2/test_S2_TOUINT64REPR.py -------------------------------------------------------------------------------- /clouds/redshift/modules/test/transformations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/redshift/version: -------------------------------------------------------------------------------- 1 | 1.1.3 2 | -------------------------------------------------------------------------------- /clouds/snowflake/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/.env.template -------------------------------------------------------------------------------- /clouds/snowflake/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/CHANGELOG.md -------------------------------------------------------------------------------- /clouds/snowflake/CHANGELOG.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/CHANGELOG.old.md -------------------------------------------------------------------------------- /clouds/snowflake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/Makefile -------------------------------------------------------------------------------- /clouds/snowflake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/README.md -------------------------------------------------------------------------------- /clouds/snowflake/common/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/.sqlfluff -------------------------------------------------------------------------------- /clouds/snowflake/common/DROP_FUNCTIONS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/DROP_FUNCTIONS.sql -------------------------------------------------------------------------------- /clouds/snowflake/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/Makefile -------------------------------------------------------------------------------- /clouds/snowflake/common/VERSION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/VERSION.sql -------------------------------------------------------------------------------- /clouds/snowflake/common/analytics-toolbox-snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/analytics-toolbox-snowflake.png -------------------------------------------------------------------------------- /clouds/snowflake/common/build_modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/build_modules.js -------------------------------------------------------------------------------- /clouds/snowflake/common/build_native_app_setup_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/build_native_app_setup_script.js -------------------------------------------------------------------------------- /clouds/snowflake/common/build_share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/build_share.js -------------------------------------------------------------------------------- /clouds/snowflake/common/list_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/list_functions.js -------------------------------------------------------------------------------- /clouds/snowflake/common/list_libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/list_libraries.js -------------------------------------------------------------------------------- /clouds/snowflake/common/native-app-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/native-app-utils.js -------------------------------------------------------------------------------- /clouds/snowflake/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/package.json -------------------------------------------------------------------------------- /clouds/snowflake/common/python3_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/python3_requirements.txt -------------------------------------------------------------------------------- /clouds/snowflake/common/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/rollup.config.js -------------------------------------------------------------------------------- /clouds/snowflake/common/run-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/run-query.js -------------------------------------------------------------------------------- /clouds/snowflake/common/run-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/run-script.js -------------------------------------------------------------------------------- /clouds/snowflake/common/sql_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/sql_lint.py -------------------------------------------------------------------------------- /clouds/snowflake/common/test-extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/test-extend.js -------------------------------------------------------------------------------- /clouds/snowflake/common/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/common/test-utils.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/Makefile -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/accessors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/accessors.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/clustering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/clustering.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/constructors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/constructors.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/h3_boundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/h3_boundary.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/h3_compact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/h3_compact.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/h3_hexring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/h3_hexring.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/h3_isvalid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/h3_isvalid.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/h3_polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/h3_uncompact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/h3_uncompact.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/measurements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/measurements.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/placekey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/placekey.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/processing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/processing.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/quadbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/quadbin.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/quadkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/quadkey.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/random.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/libs/s2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/libs/s2.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/package.json -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/src/h3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/src/h3/README.md -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/src/index.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/src/quadbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/src/quadbin.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/src/quadkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/src/quadkey.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/src/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/src/random.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/src/s2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/src/s2.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/test/h3.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/test/h3.test.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/test/quadbin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/test/quadbin.test.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/test/quadkey.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/test/quadkey.test.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/test/random.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/test/random.test.js -------------------------------------------------------------------------------- /clouds/snowflake/libraries/javascript/test/s2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/libraries/javascript/test/s2.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/Makefile -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/accessors/ST_ENVELOPE_ARR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/accessors/ST_ENVELOPE_ARR.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/accessors/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/accessors/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/clustering/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/clustering/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/constructors/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/constructors/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_CENTER.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_COMPACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_COMPACT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_DISTANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_DISTANCE.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_FROMGEOGPOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_FROMGEOGPOINT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_HEXRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_HEXRING.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_INT_TOSTRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_INT_TOSTRING.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_ISPENTAGON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_ISPENTAGON.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_ISVALID.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_KRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_KRING.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_KRING_DISTANCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_KRING_DISTANCES.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_POLYFILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_POLYFILL.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_POLYFILL_TABLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_POLYFILL_TABLE.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_RESOLUTION.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_STRING_TOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_STRING_TOINT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_TOPARENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_TOPARENT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/H3_UNCOMPACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/H3_UNCOMPACT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/h3/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/h3/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/measurements/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/measurements/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/placekey/PLACEKEY_FROMH3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/placekey/PLACEKEY_FROMH3.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/placekey/PLACEKEY_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/placekey/PLACEKEY_ISVALID.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/placekey/PLACEKEY_TOH3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/placekey/PLACEKEY_TOH3.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/placekey/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/placekey/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/processing/ST_POLYGONIZE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/processing/ST_POLYGONIZE.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/processing/ST_VORONOILINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/processing/ST_VORONOILINES.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/processing/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/processing/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_BBOX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_BBOX.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_CENTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_CENTER.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_DISTANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_DISTANCE.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMZXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_FROMZXY.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_ISVALID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_ISVALID.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_KRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_KRING.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_POLYFILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_POLYFILL.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_RESOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_RESOLUTION.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_SIBLING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_SIBLING.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_TOCHILDREN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_TOCHILDREN.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_TOPARENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_TOPARENT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_TOQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_TOQUADKEY.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/QUADBIN_TOZXY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/QUADBIN_TOZXY.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/quadbin/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/quadbin/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/random/ST_GENERATEPOINTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/random/ST_GENERATEPOINTS.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/random/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/random/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/s2/S2_BOUNDARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/s2/S2_BOUNDARY.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/s2/S2_FROMGEOGPOINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/s2/S2_FROMGEOGPOINT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/s2/S2_FROMHILBERTQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/s2/S2_FROMHILBERTQUADKEY.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/s2/S2_FROMLONGLAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/s2/S2_FROMLONGLAT.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/s2/S2_TOHILBERTQUADKEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/s2/S2_TOHILBERTQUADKEY.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/s2/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/s2/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/transformations/ST_BUFFER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/transformations/ST_BUFFER.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/doc/transformations/_INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/doc/transformations/_INTRO.md -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/accessors/ST_ENVELOPE_ARR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/accessors/ST_ENVELOPE_ARR.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_CENTER.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_COMPACT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_COMPACT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_DISTANCE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_DISTANCE.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_FROMGEOGPOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_FROMGEOGPOINT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_FROMLONGLAT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_FROMLONGLAT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_HEXRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_HEXRING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_INT_TOSTRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_INT_TOSTRING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_ISPENTAGON.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_ISPENTAGON.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_ISVALID.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_KRING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_KRING_DISTANCES.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_KRING_DISTANCES.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_POLYFILL_TABLE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_POLYFILL_TABLE.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_RESOLUTION.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_RESOLUTION.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_STRING_TOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_STRING_TOINT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_TOCHILDREN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_TOCHILDREN.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/h3/H3_UNCOMPACT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/h3/H3_UNCOMPACT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/placekey/PLACEKEY_FROMH3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/placekey/PLACEKEY_FROMH3.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/placekey/PLACEKEY_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/placekey/PLACEKEY_ISVALID.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/placekey/PLACEKEY_TOH3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/placekey/PLACEKEY_TOH3.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/processing/ST_POLYGONIZE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/processing/ST_POLYGONIZE.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/processing/_VORONOIHELPER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/processing/_VORONOIHELPER.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_BBOX.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_CENTER.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_CENTER.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_DISTANCE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_DISTANCE.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_FROMZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_FROMZXY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_ISVALID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_ISVALID.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_KRING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_POLYFILL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_POLYFILL.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_SIBLING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_SIBLING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_TOPARENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_TOPARENT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_TOQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_TOQUADKEY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/QUADBIN_TOZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/QUADBIN_TOZXY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/_GENERATE_RANGE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/_GENERATE_RANGE.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/_QUADBIN_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/_QUADBIN_KRING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/_QUADBIN_SIBLING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/_QUADBIN_SIBLING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadbin/_QUADBIN_TOZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadbin/_QUADBIN_TOZXY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadkey/QUADINT_BBOX.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadkey/QUADINT_BBOX.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadkey/QUADINT_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadkey/QUADINT_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadkey/QUADINT_FROMZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadkey/QUADINT_FROMZXY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadkey/QUADINT_KRING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadkey/QUADINT_KRING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadkey/QUADINT_SIBLING.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadkey/QUADINT_SIBLING.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/quadkey/QUADINT_TOZXY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/quadkey/QUADINT_TOZXY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/s2/S2_BOUNDARY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/s2/S2_BOUNDARY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/s2/S2_FROMGEOGPOINT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/s2/S2_FROMGEOGPOINT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/s2/S2_FROMLONGLAT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/s2/S2_FROMLONGLAT.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/sql/s2/S2_TOHILBERTQUADKEY.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/sql/s2/S2_TOHILBERTQUADKEY.sql -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_BOUNDARY.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_BOUNDARY.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_CENTER.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_CENTER.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_COMPACT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_COMPACT.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_DISTANCE.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_DISTANCE.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_FROMLONGLAT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_FROMLONGLAT.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_HEXRING.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_HEXRING.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_INT_TOSTRING.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_INT_TOSTRING.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_ISPENTAGON.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_ISPENTAGON.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_ISVALID.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_ISVALID.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_KRING.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_KRING.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_POLYFILL.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_POLYFILL.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_RESOLUTION.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_RESOLUTION.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_STRING_TOINT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_STRING_TOINT.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_TOCHILDREN.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_TOCHILDREN.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/h3/H3_TOPARENT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/h3/H3_TOPARENT.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/quadbin/global/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/quadbin/global/setup.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/quadbin/global/teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/quadbin/global/teardown.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/quadkey/QUADINT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/quadkey/QUADINT.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/s2/S2_BOUNDARY.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/s2/S2_BOUNDARY.test.js -------------------------------------------------------------------------------- /clouds/snowflake/modules/test/s2/S2_FROMLONGLAT.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/modules/test/s2/S2_FROMLONGLAT.test.js -------------------------------------------------------------------------------- /clouds/snowflake/native_app/ADDITIONAL_TABLES.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clouds/snowflake/native_app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/native_app/Makefile -------------------------------------------------------------------------------- /clouds/snowflake/native_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/native_app/README.md -------------------------------------------------------------------------------- /clouds/snowflake/native_app/SETUP_SCRIPT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/native_app/SETUP_SCRIPT.sql -------------------------------------------------------------------------------- /clouds/snowflake/native_app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/clouds/snowflake/native_app/manifest.yml -------------------------------------------------------------------------------- /clouds/snowflake/version: -------------------------------------------------------------------------------- 1 | 1.2.8 2 | -------------------------------------------------------------------------------- /common/assets/h3_polyfill_mode_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/common/assets/h3_polyfill_mode_center.png -------------------------------------------------------------------------------- /common/assets/h3_polyfill_mode_contains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/common/assets/h3_polyfill_mode_contains.png -------------------------------------------------------------------------------- /common/assets/h3_polyfill_mode_intersects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/common/assets/h3_polyfill_mode_intersects.png -------------------------------------------------------------------------------- /common/assets/input_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/common/assets/input_polygon.png -------------------------------------------------------------------------------- /common/assets/quadbin_polyfill_mode_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/common/assets/quadbin_polyfill_mode_center.png -------------------------------------------------------------------------------- /common/assets/quadbin_polyfill_mode_contains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/common/assets/quadbin_polyfill_mode_contains.png -------------------------------------------------------------------------------- /common/assets/quadbin_polyfill_mode_intersects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/analytics-toolbox-core/HEAD/common/assets/quadbin_polyfill_mode_intersects.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------