public sealed class BigQueryGeography : IEquatable<BigQueryGeography>
Representation of the BigQuery GEOGRAPHY type, representing geospatial information. Equality is determined on a simple textual basis.
Implements
IEquatable<BigQueryGeography>Namespace
Google.Cloud.BigQuery.V2Assembly
Google.Cloud.BigQuery.V2.dll
Properties
Text
public string Text { get; }
The text of the vector geometry, in WKT (Well-known Text) format.
Property Value | |
---|---|
Type | Description |
String |
Methods
GetHashCode()
public override int GetHashCode()
Returns a hash code for this object.
Returns | |
---|---|
Type | Description |
Int32 | A hash code for this object. |
Parse(String)
public static BigQueryGeography Parse(string text)
Creates a BigQueryGeography object based on the given text.
Parameter | |
---|---|
Name | Description |
text | String Text to parse. Must not be null. |
Returns | |
---|---|
Type | Description |
BigQueryGeography | A BigQueryGeography with the specified text. |
Currently, this method will accept any non-null string reference. In the future it may perform genuine parsing of the Well-Known Text format.
ToString()
public override string ToString()
Returns the textual representation of this value.
Returns | |
---|---|
Type | Description |
String | The textual representation of this value |