-
Notifications
You must be signed in to change notification settings - Fork 2.2k
carto: add typedocs to source types #8343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
bd1095b to
6e47784
Compare
modules/carto/src/sources/types.ts
Outdated
| /** | ||
| * Defines the tile aggregation resolution. | ||
| * | ||
| * If not present, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove 'if not present'
modules/carto/src/sources/types.ts
Outdated
| * Values for named or positional paramteres in the query. | ||
| * | ||
| * | ||
| * The way query parameters are determined by data ware house. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * The way query parameters are determined by data ware house. | |
| * The way query parameters are determined by data warehouse. |
|
|
||
| /** | ||
| * Values for named or positional paramteres in the query. | ||
| * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * |
modules/carto/src/sources/types.ts
Outdated
| * | ||
| * The way query parameters are determined by data ware house. | ||
| * | ||
| * * BigQuery has named query parameters as `@name` and they can be specified as dictionary |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * * BigQuery has named query parameters as `@name` and they can be specified as dictionary | |
| * * BigQuery has named query parameters, specified with a dictionary, and referenced by key (`@key`) |
modules/carto/src/sources/types.ts
Outdated
| * sqlQuery: "SELECT * FROM carto-demo-data.demo_tables.retail_stores WHERE storetype = @type AND revenue > @minRevenue" | ||
| * queryParameters: { type: 'Supermarket', minRevenue: 1000000 } | ||
| * ``` | ||
| * * Snowflake supports positional parametes, in form `:1`, `:2`, etc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * * Snowflake supports positional parametes, in form `:1`, `:2`, etc. | |
| * * Snowflake supports positional parameters, in the form `:1`, `:2`, etc. |
modules/carto/src/sources/types.ts
Outdated
| * sqlQuery: "SELECT * FROM demo_db.public.import_retail_stores WHERE storetype = :2 AND revenue > :1 | ||
| * queryParameters: [100000, "Supermarket"] | ||
| * ``` | ||
| * * Postgres and Redhisft supports positional parametes, but in form `$1`, `$2`, etc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * * Postgres and Redhisft supports positional parametes, but in form `$1`, `$2`, etc. | |
| * * Postgres and Redhisft supports positional parameters, but in the form `$1`, `$2`, etc. |
modules/carto/src/sources/types.ts
Outdated
| /** | ||
| * Columns to retrieve from the table. | ||
| * | ||
| * If not specidfied, default all columns are returned. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * If not specidfied, default all columns are returned. | |
| * If not specified, all columns are returned. |
eb5ba21 to
221f752
Compare
Basic picking working useNormalizedColors Forward undefined/null log on null object Co-authored-by: Ib Green <ib@foursquare.com> Move uniformStore binding to _getModel Type uniformStore Tidy Tidy Bump luma API update chore(ci): Update CI dependencies (#8331) * chore(ci): Update CI to Node.js v18 * chore(ci): Update checkout, setup-node, and setup-python actions [website] Fix FirstPersonView broken video URL (#8330) Bump luma Improve types Tidy Remove unneeded state.uniformStore carto/fetchMap: fix support for quantile color scale in numeric columns for static quadbin/h3 tilesets (#8347) docs: fix source link for `fly-to-interpolator` (#8320) carto: add typedocs to source types (#8343) Remove use of deprecated BufferWithAccessor (#8345) [v9] Fix GoogleMapsOverlay by not clearing canvas (#8351) [website] GEOMATICO-371 | Taxo map biodiversity map showcase (#8169) Update Scatterplot to GLSL 300 (#8369) Update PathLayer to GLSL 300 (#8370) Update ArcLayer, LineLayer, PolygonLayer to GLSL 300 (#8371) Update BitmapLayer, IconLayer, PointCloudLayer, TripsLayer to GLSL 300 (#8372) Update remaining shaders to GLSL 300 (#8373) Co-authored-by: felixpalmer <felixpalmer@gmail.com> Bump vite from 4.4.9 to 4.5.1 (#8341) Bump luma Fix build Switch to ShaderInputs in ScatterployLayer Picking working again (without highlight)
For #8304
Change List