|
89 | 89 | | [`ST_MinimumRotatedRectangle`](#st_minimumrotatedrectangle) | Returns the minimum rotated rectangle that bounds the input geometry, finding the surrounding box that has the lowest area by using a rotated rectangle, rather than taking the lowest and highest coordinate values as per ST_Envelope(). |
|
90 | 90 | | [`ST_Multi`](#st_multi) | Turns a single geometry into a multi geometry. |
|
91 | 91 | | [`ST_NGeometries`](#st_ngeometries) | Returns the number of component geometries in a collection geometry. |
|
92 |
| -| [`ST_NInteriorRings`](#st_ninteriorrings) | Returns the number if interior rings of a polygon | |
| 92 | +| [`ST_NInteriorRings`](#st_ninteriorrings) | Returns the number of interior rings of a polygon | |
93 | 93 | | [`ST_NPoints`](#st_npoints) | Returns the number of vertices within a geometry |
|
94 | 94 | | [`ST_Node`](#st_node) | Returns a "noded" MultiLinestring, produced by combining a collection of input linestrings and adding additional vertices where they intersect. |
|
95 | 95 | | [`ST_Normalize`](#st_normalize) | Returns the "normalized" representation of the geometry |
|
96 | 96 | | [`ST_NumGeometries`](#st_numgeometries) | Returns the number of component geometries in a collection geometry. |
|
97 |
| -| [`ST_NumInteriorRings`](#st_numinteriorrings) | Returns the number if interior rings of a polygon | |
| 97 | +| [`ST_NumInteriorRings`](#st_numinteriorrings) | Returns the number of interior rings of a polygon | |
98 | 98 | | [`ST_NumPoints`](#st_numpoints) | Returns the number of vertices within a geometry |
|
99 | 99 | | [`ST_Overlaps`](#st_overlaps) | Returns true if the geometries overlap |
|
100 | 100 | | [`ST_Perimeter`](#st_perimeter) | Returns the length of the perimeter of the geometry |
|
@@ -1973,7 +1973,7 @@ INTEGER ST_NInteriorRings (polygon POLYGON_2D)
|
1973 | 1973 |
|
1974 | 1974 | #### Description
|
1975 | 1975 |
|
1976 |
| -Returns the number if interior rings of a polygon |
| 1976 | +Returns the number of interior rings of a polygon |
1977 | 1977 |
|
1978 | 1978 | ----
|
1979 | 1979 |
|
@@ -2065,7 +2065,7 @@ INTEGER ST_NumInteriorRings (polygon POLYGON_2D)
|
2065 | 2065 |
|
2066 | 2066 | #### Description
|
2067 | 2067 |
|
2068 |
| -Returns the number if interior rings of a polygon |
| 2068 | +Returns the number of interior rings of a polygon |
2069 | 2069 |
|
2070 | 2070 | ----
|
2071 | 2071 |
|
@@ -3285,10 +3285,10 @@ The following formats are currently recognized by their file extension:
|
3285 | 3285 |
|
3286 | 3286 | ```sql
|
3287 | 3287 | -- Read a Shapefile
|
3288 |
| -ELECT * FROM ST_Read('some/file/path/filename.shp'); |
| 3288 | +SELECT * FROM ST_Read('some/file/path/filename.shp'); |
3289 | 3289 |
|
3290 |
| -- Read a GeoJSON file |
3291 |
| -REATE TABLE my_geojson_table AS SELECT * FROM ST_Read('some/file/path/filename.json'); |
| 3290 | +-- Read a GeoJSON file |
| 3291 | +CREATE TABLE my_geojson_table AS SELECT * FROM ST_Read('some/file/path/filename.json'); |
3292 | 3292 | ```
|
3293 | 3293 |
|
3294 | 3294 | ----
|
|
0 commit comments