You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns 1 if the type of a **geography** instance is the same as the specified type, or if the specified type is an ancestor of the instance type; otherwise, returns 0.
44
+
Returns 1 if the type of a **geography** instance is the same as the specified type, or if the specified type is an ancestor of the instance type; otherwise, returns 0.
45
45
46
-
This **geography** data type method supports **FullGlobe** instances or spatial instances that are larger than a hemisphere.
46
+
This **geography** data type method supports **FullGlobe** instances or spatial instances that are larger than a hemisphere.
47
47
48
-
The input for the method must be one of the following: Geometry, Point, Curve, LineString,CircularString, Surface, Polygon, CurvePolygon, **GeometryCollection**, **MultiSurface**, **MultiPolygon, MultiCurve, MultiLineString**, **MultiPoint**, or **FullGlobe**.
48
+
The input for the method must be one of these types: Geometry, Point, Curve, LineString,CircularString, Surface, Polygon, CurvePolygon, **GeometryCollection**, **MultiSurface**, **MultiPolygon, MultiCurve, MultiLineString**, **MultiPoint**, or **FullGlobe**.
49
49
50
-
This method throws an `ArgumentException` if any other strings are used for the input.
50
+
This method throws an `ArgumentException` if you use any other strings for the input.
51
51
52
-
This method is not precise.
52
+
This method isn't precise.
53
53
54
54
## Examples
55
-
The following example creates a `MultiPoint` instance and uses `InstanceOf()` to see whether the instance is a `GeometryCollection`.
55
+
The following example creates a `MultiPoint` instance and uses `InstanceOf()` to see whether the instance is a `GeometryCollection`.
56
56
57
-
```
57
+
```sql
58
58
DECLARE @g geography;
59
59
SET @g = geography::STGeomFromText('MULTIPOINT(-122.360 47.656, -122.343 47.656)', 4326);
0 commit comments