Skip to content

Commit d9ad7eb

Browse files
committed
Remove repeated words
1 parent a60aa37 commit d9ad7eb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- [Limitations and Roadmap](#limitations-and-roadmap)
1616

1717
# What is this?
18-
This is a prototype of a geospatial extension for DuckDB that adds support for working with spatial data and functions in the form of a `GEOMETRY` type based on the the "Simple Features" geometry model, as well as non-standard specialized columnar DuckDB native geometry types that provide better compression and faster execution in exchange for flexibility.
18+
This is a prototype of a geospatial extension for DuckDB that adds support for working with spatial data and functions in the form of a `GEOMETRY` type based on the "Simple Features" geometry model, as well as non-standard specialized columnar DuckDB native geometry types that provide better compression and faster execution in exchange for flexibility.
1919

2020
Please note that this extension is still in a very early stage of development, and the internal storage format for the geometry types may change indiscriminately between commits. We are actively working on it, and we welcome both contributions and feedback. Please see the [function table](docs/functions.md) or the [roadmap entries](https://github.com/duckdblabs/duckdb_spatial/labels/roadmap) for the current implementation status.
2121

docs/functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1785,7 +1785,7 @@ VARCHAR ST_QuadKey (point GEOMETRY, level INTEGER)
17851785
#### Description
17861786

17871787
Compute the [quadkey](https://learn.microsoft.com/en-us/bingmaps/articles/bing-maps-tile-system) for a given lon/lat point at a given level.
1788-
Note that the the parameter order is __longitude__, __latitude__.
1788+
Note that the parameter order is __longitude__, __latitude__.
17891789

17901790
`level` has to be between 1 and 23, inclusive.
17911791

spatial/src/spatial/core/functions/scalar/st_quadkey.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static void GeometryQuadKeyFunction(DataChunk &args, ExpressionState &state, Vec
9393
static constexpr const char *DOC_DESCRIPTION = R"(
9494
9595
Compute the [quadkey](https://learn.microsoft.com/en-us/bingmaps/articles/bing-maps-tile-system) for a given lon/lat point at a given level.
96-
Note that the the parameter order is __longitude__, __latitude__.
96+
Note that the parameter order is __longitude__, __latitude__.
9797
9898
`level` has to be between 1 and 23, inclusive.
9999

0 commit comments

Comments
 (0)