Skip to content

Commit 13e20d6

Browse files
authored
Merge pull request #14816 from WilliamAntonRohm/issue-4653
sql-docs issue 4653 -- latitude vs longitude
2 parents 35d47f3 + f26ac29 commit 13e20d6

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

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

Lines changed: 5 additions & 7 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

@@ -60,5 +60,3 @@ SELECT @g.ToString();
6060

6161
## See Also
6262
[Extended Static Geography Methods](../../t-sql/spatial-geography/extended-static-geography-methods.md)
63-
64-

0 commit comments

Comments
 (0)