public sealed class BigQueryGeography : IEquatable<BigQueryGeography>Reference documentation and code samples for the Google BigQuery v2 API class BigQueryGeography.
Representation of the BigQuery GEOGRAPHY type, representing geospatial information. Equality is determined on a simple textual basis.
Implements
IEquatableBigQueryGeographyNamespace
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 | 
int | 
        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 | 
        stringText 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  |