Skip to content

Commit 4a4485b

Browse files
sql-docs issue 4653 -- latitude vs longitude
1 parent 3269212 commit 4a4485b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/t-sql/spatial-geography/point-geography-data-type.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@ Point ( Lat, Long, SRID )
3333

3434
## Arguments
3535
*Lat*
36-
Is a **float** expression representing the x-coordinate of the **Point** being generated.
36+
Is a **float** expression representing the y-coordinate of the **Point** being generated.
3737

3838
*Long*
39-
Is a **float** expression representing the y-coordinate of the **Point** being generated. For more information on valid latitude and longitude values, see [Point](../../relational-databases/spatial/point.md).
39+
Is a **float** expression representing the x-coordinate of the **Point** being generated. For more information on valid latitude and longitude values, see [Point](../../relational-databases/spatial/point.md).
4040

4141
*SRID*
4242
Is an **int** expression representing the [Spatial Reference Identifier](https://docs.microsoft.com/sql/relational-databases/spatial/spatial-reference-identifiers-srids) of the **geography** instance you wish to return.
4343

44+
> [!NOTE]
45+
> Arguments for the Point (geography Data Type) method have coordinates reversed compared to WKT.
46+
4447
## Return Types
4548
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] return type: **geography**
4649

4750
CLR return type: **SqlGeography**
4851

49-
> [!NOTE]
50-
> Arguments for the Point (geography Data Type) method have coordinates reversed compared to WKT.
51-
5252
## Examples
5353
The following example uses `Point()` to create a `geography` instance.
5454

0 commit comments

Comments
 (0)