Class BigQueryGeography (2.4.0)

public sealed class BigQueryGeography : IEquatable<BigQueryGeography>

Representation of the BigQuery GEOGRAPHY type, representing geospatial information. Equality is determined on a simple textual basis.

Inheritance

Object > BigQueryGeography

Namespace

Google.Cloud.BigQuery.V2

Assembly

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
TypeDescription
String

Methods

GetHashCode()

public override int GetHashCode()

Returns a hash code for this object.

Returns
TypeDescription
Int32

A hash code for this object.

Overrides

Parse(String)

public static BigQueryGeography Parse(string text)

Creates a BigQueryGeography object based on the given text.

Parameter
NameDescription
textString

Text to parse. Must not be null.

Returns
TypeDescription
BigQueryGeography

A BigQueryGeography with the specified text.

Remarks

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
TypeDescription
String

The textual representation of this value

Overrides