publicv1

package
v0.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 27, 2023 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_einride_bigquery_public_v1_dogecoin_transaction_proto protoreflect.FileDescriptor
View Source
var File_einride_bigquery_public_v1_film_location_proto protoreflect.FileDescriptor
View Source
var File_einride_bigquery_public_v1_hacker_news_story_proto protoreflect.FileDescriptor
View Source
var File_einride_bigquery_public_v1_historic_severe_storm_proto protoreflect.FileDescriptor
View Source
var File_einride_bigquery_public_v1_london_bicycle_rental_proto protoreflect.FileDescriptor
View Source
var File_einride_bigquery_public_v1_london_bicycle_station_proto protoreflect.FileDescriptor
View Source
var File_einride_bigquery_public_v1_san_fransisco_transit_stop_time_proto protoreflect.FileDescriptor
View Source
var File_einride_bigquery_public_v1_whos_on_first_geojson_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type DogecoinTransaction

type DogecoinTransaction struct {
	Hash                string                 `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`                                                            // STRING REQUIRED
	Size                int64                  `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`                                                           // INTEGER NULLABLE
	VirtualSize         int64                  `protobuf:"varint,3,opt,name=virtual_size,json=virtualSize,proto3" json:"virtual_size,omitempty"`                          // INTEGER NULLABLE
	Version             int64                  `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`                                                     // INTEGER NULLABLE
	LockTime            int64                  `protobuf:"varint,5,opt,name=lock_time,json=lockTime,proto3" json:"lock_time,omitempty"`                                   // INTEGER NULLABLE
	BlockHash           string                 `protobuf:"bytes,6,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`                                 // STRING REQUIRED
	BlockNumber         int64                  `protobuf:"varint,7,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`                          // INTEGER REQUIRED
	BlockTimestamp      *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=block_timestamp,json=blockTimestamp,proto3" json:"block_timestamp,omitempty"`                  // TIMESTAMP REQUIRED
	BlockTimestampMonth *date.Date             `protobuf:"bytes,9,opt,name=block_timestamp_month,json=blockTimestampMonth,proto3" json:"block_timestamp_month,omitempty"` // DATE REQUIRED
	InputCount          int64                  `protobuf:"varint,10,opt,name=input_count,json=inputCount,proto3" json:"input_count,omitempty"`                            // INTEGER NULLABLE
	OutputCount         int64                  `protobuf:"varint,11,opt,name=output_count,json=outputCount,proto3" json:"output_count,omitempty"`                         // INTEGER NULLABLE
	// TOOD: Figure out if there's a common protobuf type for NUMERIC.
	// string input_value = 12; // NUMERIC NULLABLE
	// string output_value = 13; // NUMERIC NULLABLE
	IsCoinbase bool `protobuf:"varint,14,opt,name=is_coinbase,json=isCoinbase,proto3" json:"is_coinbase,omitempty"` // BOOLEAN NULLABLE
	// TOOD: Figure out if there's a common protobuf type for NUMERIC.
	// string fee = 15; // NUMERIC NULLABLE
	Inputs  []*DogecoinTransaction_Input  `protobuf:"bytes,16,rep,name=inputs,proto3" json:"inputs,omitempty"`   // RECORD REPEATED
	Outputs []*DogecoinTransaction_Output `protobuf:"bytes,17,rep,name=outputs,proto3" json:"outputs,omitempty"` // RECORD REPEATED
	// contains filtered or unexported fields
}

Protobuf schema for the BigQuery public table:

bigquery-public-data.crypto_dogecoin.transactions

func (*DogecoinTransaction) Descriptor deprecated

func (*DogecoinTransaction) Descriptor() ([]byte, []int)

Deprecated: Use DogecoinTransaction.ProtoReflect.Descriptor instead.

func (*DogecoinTransaction) GetBlockHash

func (x *DogecoinTransaction) GetBlockHash() string

func (*DogecoinTransaction) GetBlockNumber

func (x *DogecoinTransaction) GetBlockNumber() int64

func (*DogecoinTransaction) GetBlockTimestamp

func (x *DogecoinTransaction) GetBlockTimestamp() *timestamppb.Timestamp

func (*DogecoinTransaction) GetBlockTimestampMonth

func (x *DogecoinTransaction) GetBlockTimestampMonth() *date.Date

func (*DogecoinTransaction) GetHash

func (x *DogecoinTransaction) GetHash() string

func (*DogecoinTransaction) GetInputCount

func (x *DogecoinTransaction) GetInputCount() int64

func (*DogecoinTransaction) GetInputs

func (*DogecoinTransaction) GetIsCoinbase

func (x *DogecoinTransaction) GetIsCoinbase() bool

func (*DogecoinTransaction) GetLockTime

func (x *DogecoinTransaction) GetLockTime() int64

func (*DogecoinTransaction) GetOutputCount

func (x *DogecoinTransaction) GetOutputCount() int64

func (*DogecoinTransaction) GetOutputs

func (*DogecoinTransaction) GetSize

func (x *DogecoinTransaction) GetSize() int64

func (*DogecoinTransaction) GetVersion

func (x *DogecoinTransaction) GetVersion() int64

func (*DogecoinTransaction) GetVirtualSize

func (x *DogecoinTransaction) GetVirtualSize() int64

func (*DogecoinTransaction) ProtoMessage

func (*DogecoinTransaction) ProtoMessage()

func (*DogecoinTransaction) ProtoReflect

func (x *DogecoinTransaction) ProtoReflect() protoreflect.Message

func (*DogecoinTransaction) Reset

func (x *DogecoinTransaction) Reset()

func (*DogecoinTransaction) String

func (x *DogecoinTransaction) String() string

type DogecoinTransaction_Input

type DogecoinTransaction_Input struct {
	Index                int64    `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`                                                            // INTEGER REQUIRED
	SpentTransactionHash string   `protobuf:"bytes,2,opt,name=spent_transaction_hash,json=spentTransactionHash,proto3" json:"spent_transaction_hash,omitempty"` // STRING NULLABLE
	SpentOutputIndex     int64    `protobuf:"varint,3,opt,name=spent_output_index,json=spentOutputIndex,proto3" json:"spent_output_index,omitempty"`            // INTEGER NULLABLE
	ScriptAsm            string   `protobuf:"bytes,4,opt,name=script_asm,json=scriptAsm,proto3" json:"script_asm,omitempty"`                                    // STRING NULLABLE
	ScriptHex            string   `protobuf:"bytes,5,opt,name=script_hex,json=scriptHex,proto3" json:"script_hex,omitempty"`                                    // STRING NULLABLE
	Sequence             int64    `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`                                                      // INTEGER NULLABLE
	RequiredSignatures   int64    `protobuf:"varint,7,opt,name=required_signatures,json=requiredSignatures,proto3" json:"required_signatures,omitempty"`        // INTEGER NULLABLE
	Type                 string   `protobuf:"bytes,8,opt,name=type,proto3" json:"type,omitempty"`                                                               // STRING NULLABLE
	Addresses            []string `protobuf:"bytes,9,rep,name=addresses,proto3" json:"addresses,omitempty"`                                                     // STRING REPEATED
	// contains filtered or unexported fields
}

func (*DogecoinTransaction_Input) Descriptor deprecated

func (*DogecoinTransaction_Input) Descriptor() ([]byte, []int)

Deprecated: Use DogecoinTransaction_Input.ProtoReflect.Descriptor instead.

func (*DogecoinTransaction_Input) GetAddresses

func (x *DogecoinTransaction_Input) GetAddresses() []string

func (*DogecoinTransaction_Input) GetIndex

func (x *DogecoinTransaction_Input) GetIndex() int64

func (*DogecoinTransaction_Input) GetRequiredSignatures

func (x *DogecoinTransaction_Input) GetRequiredSignatures() int64

func (*DogecoinTransaction_Input) GetScriptAsm

func (x *DogecoinTransaction_Input) GetScriptAsm() string

func (*DogecoinTransaction_Input) GetScriptHex

func (x *DogecoinTransaction_Input) GetScriptHex() string

func (*DogecoinTransaction_Input) GetSequence

func (x *DogecoinTransaction_Input) GetSequence() int64

func (*DogecoinTransaction_Input) GetSpentOutputIndex

func (x *DogecoinTransaction_Input) GetSpentOutputIndex() int64

func (*DogecoinTransaction_Input) GetSpentTransactionHash

func (x *DogecoinTransaction_Input) GetSpentTransactionHash() string

func (*DogecoinTransaction_Input) GetType

func (x *DogecoinTransaction_Input) GetType() string

func (*DogecoinTransaction_Input) ProtoMessage

func (*DogecoinTransaction_Input) ProtoMessage()

func (*DogecoinTransaction_Input) ProtoReflect

func (*DogecoinTransaction_Input) Reset

func (x *DogecoinTransaction_Input) Reset()

func (*DogecoinTransaction_Input) String

func (x *DogecoinTransaction_Input) String() string

type DogecoinTransaction_Output

type DogecoinTransaction_Output struct {
	Index              int64    `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`                                                     // INTEGER REQUIRED
	ScriptAsm          string   `protobuf:"bytes,2,opt,name=script_asm,json=scriptAsm,proto3" json:"script_asm,omitempty"`                             // STRING NULLABLE
	ScriptHex          string   `protobuf:"bytes,3,opt,name=script_hex,json=scriptHex,proto3" json:"script_hex,omitempty"`                             // STRING NULLABLE
	RequiredSignatures int64    `protobuf:"varint,4,opt,name=required_signatures,json=requiredSignatures,proto3" json:"required_signatures,omitempty"` // INTEGER NULLABLE
	Type               string   `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`                                                        // STRING NULLABLE
	Addresses          []string `protobuf:"bytes,6,rep,name=addresses,proto3" json:"addresses,omitempty"`                                              // STRING REPEATED
	// contains filtered or unexported fields
}

func (*DogecoinTransaction_Output) Descriptor deprecated

func (*DogecoinTransaction_Output) Descriptor() ([]byte, []int)

Deprecated: Use DogecoinTransaction_Output.ProtoReflect.Descriptor instead.

func (*DogecoinTransaction_Output) GetAddresses

func (x *DogecoinTransaction_Output) GetAddresses() []string

func (*DogecoinTransaction_Output) GetIndex

func (x *DogecoinTransaction_Output) GetIndex() int64

func (*DogecoinTransaction_Output) GetRequiredSignatures

func (x *DogecoinTransaction_Output) GetRequiredSignatures() int64

func (*DogecoinTransaction_Output) GetScriptAsm

func (x *DogecoinTransaction_Output) GetScriptAsm() string

func (*DogecoinTransaction_Output) GetScriptHex

func (x *DogecoinTransaction_Output) GetScriptHex() string

func (*DogecoinTransaction_Output) GetType

func (x *DogecoinTransaction_Output) GetType() string

func (*DogecoinTransaction_Output) ProtoMessage

func (*DogecoinTransaction_Output) ProtoMessage()

func (*DogecoinTransaction_Output) ProtoReflect

func (*DogecoinTransaction_Output) Reset

func (x *DogecoinTransaction_Output) Reset()

func (*DogecoinTransaction_Output) String

func (x *DogecoinTransaction_Output) String() string

type FilmLocation

type FilmLocation struct {
	Title             string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`                                                  // STRING NULLABLE
	ReleaseYear       int64  `protobuf:"varint,2,opt,name=release_year,json=releaseYear,proto3" json:"release_year,omitempty"`                  // INTEGER NULLABLE
	Locations         string `protobuf:"bytes,3,opt,name=locations,proto3" json:"locations,omitempty"`                                          // STRING NULLABLE
	FunFacts          string `protobuf:"bytes,4,opt,name=fun_facts,json=funFacts,proto3" json:"fun_facts,omitempty"`                            // STRING NULLABLE
	ProductionCompany string `protobuf:"bytes,5,opt,name=production_company,json=productionCompany,proto3" json:"production_company,omitempty"` // STRING NULLABLE
	Distributor       string `protobuf:"bytes,6,opt,name=distributor,proto3" json:"distributor,omitempty"`                                      // STRING NULLABLE
	Director          string `protobuf:"bytes,7,opt,name=director,proto3" json:"director,omitempty"`                                            // STRING NULLABLE
	Writer            string `protobuf:"bytes,8,opt,name=writer,proto3" json:"writer,omitempty"`                                                // STRING NULLABLE
	Actor_1           string `protobuf:"bytes,9,opt,name=actor_1,json=actor1,proto3" json:"actor_1,omitempty"`                                  // STRING NULLABLE
	Actor_2           string `protobuf:"bytes,10,opt,name=actor_2,json=actor2,proto3" json:"actor_2,omitempty"`                                 // STRING NULLABLE
	Actor_3           string `protobuf:"bytes,11,opt,name=actor_3,json=actor3,proto3" json:"actor_3,omitempty"`                                 // STRING NULLABLE
	// contains filtered or unexported fields
}

Protobuf schema for the BigQuery public table:

bigquery-public-data.san_francisco_film_locations.film_locations

func (*FilmLocation) Descriptor deprecated

func (*FilmLocation) Descriptor() ([]byte, []int)

Deprecated: Use FilmLocation.ProtoReflect.Descriptor instead.

func (*FilmLocation) GetActor_1

func (x *FilmLocation) GetActor_1() string

func (*FilmLocation) GetActor_2

func (x *FilmLocation) GetActor_2() string

func (*FilmLocation) GetActor_3

func (x *FilmLocation) GetActor_3() string

func (*FilmLocation) GetDirector

func (x *FilmLocation) GetDirector() string

func (*FilmLocation) GetDistributor

func (x *FilmLocation) GetDistributor() string

func (*FilmLocation) GetFunFacts

func (x *FilmLocation) GetFunFacts() string

func (*FilmLocation) GetLocations

func (x *FilmLocation) GetLocations() string

func (*FilmLocation) GetProductionCompany

func (x *FilmLocation) GetProductionCompany() string

func (*FilmLocation) GetReleaseYear

func (x *FilmLocation) GetReleaseYear() int64

func (*FilmLocation) GetTitle

func (x *FilmLocation) GetTitle() string

func (*FilmLocation) GetWriter

func (x *FilmLocation) GetWriter() string

func (*FilmLocation) ProtoMessage

func (*FilmLocation) ProtoMessage()

func (*FilmLocation) ProtoReflect

func (x *FilmLocation) ProtoReflect() protoreflect.Message

func (*FilmLocation) Reset

func (x *FilmLocation) Reset()

func (*FilmLocation) String

func (x *FilmLocation) String() string

type HackerNewsStory

type HackerNewsStory struct {
	Id          int64                  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`                      // INTEGER NULLABLE
	By          string                 `protobuf:"bytes,2,opt,name=by,proto3" json:"by,omitempty"`                       // STRING NULLABLE
	Score       int32                  `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`                // INTEGER NULLABLE
	Time        int64                  `protobuf:"varint,4,opt,name=time,proto3" json:"time,omitempty"`                  // INTEGER NULLABLE
	TimeTs      *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=time_ts,json=timeTs,proto3" json:"time_ts,omitempty"` // TIMESTAMP NULLABLE
	Title       string                 `protobuf:"bytes,6,opt,name=title,proto3" json:"title,omitempty"`                 // STRING NULLABLE
	Url         string                 `protobuf:"bytes,7,opt,name=url,proto3" json:"url,omitempty"`                     // STRING NULLABLE
	Text        string                 `protobuf:"bytes,8,opt,name=text,proto3" json:"text,omitempty"`                   // STRING NULLABLE
	Deleted     bool                   `protobuf:"varint,9,opt,name=deleted,proto3" json:"deleted,omitempty"`            // BOOLEAN NULLABLE
	Dead        bool                   `protobuf:"varint,10,opt,name=dead,proto3" json:"dead,omitempty"`                 // BOOLEAN NULLABLE
	Descendants int32                  `protobuf:"varint,11,opt,name=descendants,proto3" json:"descendants,omitempty"`   // INTEGER NULLABLE
	Author      string                 `protobuf:"bytes,12,opt,name=author,proto3" json:"author,omitempty"`              // STRING NULLABLE
	// contains filtered or unexported fields
}

Protobuf schema for the BigQuery public table:

bigquery-public-data.hacker_news.stories

func (*HackerNewsStory) Descriptor deprecated

func (*HackerNewsStory) Descriptor() ([]byte, []int)

Deprecated: Use HackerNewsStory.ProtoReflect.Descriptor instead.

func (*HackerNewsStory) GetAuthor

func (x *HackerNewsStory) GetAuthor() string

func (*HackerNewsStory) GetBy

func (x *HackerNewsStory) GetBy() string

func (*HackerNewsStory) GetDead

func (x *HackerNewsStory) GetDead() bool

func (*HackerNewsStory) GetDeleted

func (x *HackerNewsStory) GetDeleted() bool

func (*HackerNewsStory) GetDescendants

func (x *HackerNewsStory) GetDescendants() int32

func (*HackerNewsStory) GetId

func (x *HackerNewsStory) GetId() int64

func (*HackerNewsStory) GetScore

func (x *HackerNewsStory) GetScore() int32

func (*HackerNewsStory) GetText

func (x *HackerNewsStory) GetText() string

func (*HackerNewsStory) GetTime

func (x *HackerNewsStory) GetTime() int64

func (*HackerNewsStory) GetTimeTs

func (x *HackerNewsStory) GetTimeTs() *timestamppb.Timestamp

func (*HackerNewsStory) GetTitle

func (x *HackerNewsStory) GetTitle() string

func (*HackerNewsStory) GetUrl

func (x *HackerNewsStory) GetUrl() string

func (*HackerNewsStory) ProtoMessage

func (*HackerNewsStory) ProtoMessage()

func (*HackerNewsStory) ProtoReflect

func (x *HackerNewsStory) ProtoReflect() protoreflect.Message

func (*HackerNewsStory) Reset

func (x *HackerNewsStory) Reset()

func (*HackerNewsStory) String

func (x *HackerNewsStory) String() string

type HistoricSevereStorm

type HistoricSevereStorm struct {
	EpisodeId         string             `protobuf:"bytes,1,opt,name=episode_id,json=episodeId,proto3" json:"episode_id,omitempty"`                          // STRING NULLABLE
	EventId           string             `protobuf:"bytes,2,opt,name=event_id,json=eventId,proto3" json:"event_id,omitempty"`                                // STRING NULLABLE
	State             string             `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty"`                                                   // STRING NULLABLE
	StateFipsCode     string             `protobuf:"bytes,4,opt,name=state_fips_code,json=stateFipsCode,proto3" json:"state_fips_code,omitempty"`            // STRING NULLABLE
	EventType         string             `protobuf:"bytes,5,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"`                          // STRING NULLABLE
	CzType            string             `protobuf:"bytes,6,opt,name=cz_type,json=czType,proto3" json:"cz_type,omitempty"`                                   // STRING NULLABLE
	CzFipsCode        string             `protobuf:"bytes,7,opt,name=cz_fips_code,json=czFipsCode,proto3" json:"cz_fips_code,omitempty"`                     // STRING NULLABLE
	CzName            string             `protobuf:"bytes,8,opt,name=cz_name,json=czName,proto3" json:"cz_name,omitempty"`                                   // STRING NULLABLE
	Wfo               string             `protobuf:"bytes,9,opt,name=wfo,proto3" json:"wfo,omitempty"`                                                       // STRING NULLABLE
	EventBeginTime    *datetime.DateTime `protobuf:"bytes,10,opt,name=event_begin_time,json=eventBeginTime,proto3" json:"event_begin_time,omitempty"`        // DATETIME NULLABLE
	EventTimezone     string             `protobuf:"bytes,11,opt,name=event_timezone,json=eventTimezone,proto3" json:"event_timezone,omitempty"`             // STRING NULLABLE
	EventEndTime      *datetime.DateTime `protobuf:"bytes,12,opt,name=event_end_time,json=eventEndTime,proto3" json:"event_end_time,omitempty"`              // DATETIME NULLABLE
	InjuriesDirect    int64              `protobuf:"varint,13,opt,name=injuries_direct,json=injuriesDirect,proto3" json:"injuries_direct,omitempty"`         // INTEGER NULLABLE
	InjuriesIndirect  int64              `protobuf:"varint,14,opt,name=injuries_indirect,json=injuriesIndirect,proto3" json:"injuries_indirect,omitempty"`   // INTEGER NULLABLE
	DeathsDirect      int64              `protobuf:"varint,15,opt,name=deaths_direct,json=deathsDirect,proto3" json:"deaths_direct,omitempty"`               // INTEGER NULLABLE
	DeathsIndirect    int64              `protobuf:"varint,16,opt,name=deaths_indirect,json=deathsIndirect,proto3" json:"deaths_indirect,omitempty"`         // INTEGER NULLABLE
	DamageProperty    int64              `protobuf:"varint,17,opt,name=damage_property,json=damageProperty,proto3" json:"damage_property,omitempty"`         // INTEGER NULLABLE
	DamageCrops       int64              `protobuf:"varint,18,opt,name=damage_crops,json=damageCrops,proto3" json:"damage_crops,omitempty"`                  // INTEGER NULLABLE
	Source            string             `protobuf:"bytes,19,opt,name=source,proto3" json:"source,omitempty"`                                                // STRING NULLABLE
	Magnitude         float64            `protobuf:"fixed64,20,opt,name=magnitude,proto3" json:"magnitude,omitempty"`                                        // FLOAT NULLABLE
	MagnitudeType     string             `protobuf:"bytes,21,opt,name=magnitude_type,json=magnitudeType,proto3" json:"magnitude_type,omitempty"`             // STRING NULLABLE
	FloodCause        string             `protobuf:"bytes,22,opt,name=flood_cause,json=floodCause,proto3" json:"flood_cause,omitempty"`                      // STRING NULLABLE
	TorFScale         string             `protobuf:"bytes,23,opt,name=tor_f_scale,json=torFScale,proto3" json:"tor_f_scale,omitempty"`                       // STRING NULLABLE
	TorLength         string             `protobuf:"bytes,24,opt,name=tor_length,json=torLength,proto3" json:"tor_length,omitempty"`                         // STRING NULLABLE
	TorWidth          string             `protobuf:"bytes,25,opt,name=tor_width,json=torWidth,proto3" json:"tor_width,omitempty"`                            // STRING NULLABLE
	TorOtherWfo       string             `protobuf:"bytes,26,opt,name=tor_other_wfo,json=torOtherWfo,proto3" json:"tor_other_wfo,omitempty"`                 // STRING NULLABLE
	LocationIndex     string             `protobuf:"bytes,27,opt,name=location_index,json=locationIndex,proto3" json:"location_index,omitempty"`             // STRING NULLABLE
	EventRange        float64            `protobuf:"fixed64,28,opt,name=event_range,json=eventRange,proto3" json:"event_range,omitempty"`                    // FLOAT NULLABLE
	EventAzimuth      string             `protobuf:"bytes,29,opt,name=event_azimuth,json=eventAzimuth,proto3" json:"event_azimuth,omitempty"`                // STRING NULLABLE
	ReferenceLocation string             `protobuf:"bytes,30,opt,name=reference_location,json=referenceLocation,proto3" json:"reference_location,omitempty"` // STRING NULLABLE
	EventLatitude     float64            `protobuf:"fixed64,31,opt,name=event_latitude,json=eventLatitude,proto3" json:"event_latitude,omitempty"`           // FLOAT NULLABLE
	EventLongitude    float64            `protobuf:"fixed64,32,opt,name=event_longitude,json=eventLongitude,proto3" json:"event_longitude,omitempty"`        // FLOAT NULLABLE
	EventPoint        *latlng.LatLng     `protobuf:"bytes,33,opt,name=event_point,json=eventPoint,proto3" json:"event_point,omitempty"`                      // GEOGRAPHY NULLABLE
	// contains filtered or unexported fields
}

Protobuf schema for the BigQuery public table:

bigquery-public-data.noaa_historic_severe_storms.storms_*

func (*HistoricSevereStorm) Descriptor deprecated

func (*HistoricSevereStorm) Descriptor() ([]byte, []int)

Deprecated: Use HistoricSevereStorm.ProtoReflect.Descriptor instead.

func (*HistoricSevereStorm) GetCzFipsCode

func (x *HistoricSevereStorm) GetCzFipsCode() string

func (*HistoricSevereStorm) GetCzName

func (x *HistoricSevereStorm) GetCzName() string

func (*HistoricSevereStorm) GetCzType

func (x *HistoricSevereStorm) GetCzType() string

func (*HistoricSevereStorm) GetDamageCrops

func (x *HistoricSevereStorm) GetDamageCrops() int64

func (*HistoricSevereStorm) GetDamageProperty

func (x *HistoricSevereStorm) GetDamageProperty() int64

func (*HistoricSevereStorm) GetDeathsDirect

func (x *HistoricSevereStorm) GetDeathsDirect() int64

func (*HistoricSevereStorm) GetDeathsIndirect

func (x *HistoricSevereStorm) GetDeathsIndirect() int64

func (*HistoricSevereStorm) GetEpisodeId

func (x *HistoricSevereStorm) GetEpisodeId() string

func (*HistoricSevereStorm) GetEventAzimuth

func (x *HistoricSevereStorm) GetEventAzimuth() string

func (*HistoricSevereStorm) GetEventBeginTime

func (x *HistoricSevereStorm) GetEventBeginTime() *datetime.DateTime

func (*HistoricSevereStorm) GetEventEndTime

func (x *HistoricSevereStorm) GetEventEndTime() *datetime.DateTime

func (*HistoricSevereStorm) GetEventId

func (x *HistoricSevereStorm) GetEventId() string

func (*HistoricSevereStorm) GetEventLatitude

func (x *HistoricSevereStorm) GetEventLatitude() float64

func (*HistoricSevereStorm) GetEventLongitude

func (x *HistoricSevereStorm) GetEventLongitude() float64

func (*HistoricSevereStorm) GetEventPoint

func (x *HistoricSevereStorm) GetEventPoint() *latlng.LatLng

func (*HistoricSevereStorm) GetEventRange

func (x *HistoricSevereStorm) GetEventRange() float64

func (*HistoricSevereStorm) GetEventTimezone

func (x *HistoricSevereStorm) GetEventTimezone() string

func (*HistoricSevereStorm) GetEventType

func (x *HistoricSevereStorm) GetEventType() string

func (*HistoricSevereStorm) GetFloodCause

func (x *HistoricSevereStorm) GetFloodCause() string

func (*HistoricSevereStorm) GetInjuriesDirect

func (x *HistoricSevereStorm) GetInjuriesDirect() int64

func (*HistoricSevereStorm) GetInjuriesIndirect

func (x *HistoricSevereStorm) GetInjuriesIndirect() int64

func (*HistoricSevereStorm) GetLocationIndex

func (x *HistoricSevereStorm) GetLocationIndex() string

func (*HistoricSevereStorm) GetMagnitude

func (x *HistoricSevereStorm) GetMagnitude() float64

func (*HistoricSevereStorm) GetMagnitudeType

func (x *HistoricSevereStorm) GetMagnitudeType() string

func (*HistoricSevereStorm) GetReferenceLocation

func (x *HistoricSevereStorm) GetReferenceLocation() string

func (*HistoricSevereStorm) GetSource

func (x *HistoricSevereStorm) GetSource() string

func (*HistoricSevereStorm) GetState

func (x *HistoricSevereStorm) GetState() string

func (*HistoricSevereStorm) GetStateFipsCode

func (x *HistoricSevereStorm) GetStateFipsCode() string

func (*HistoricSevereStorm) GetTorFScale

func (x *HistoricSevereStorm) GetTorFScale() string

func (*HistoricSevereStorm) GetTorLength

func (x *HistoricSevereStorm) GetTorLength() string

func (*HistoricSevereStorm) GetTorOtherWfo

func (x *HistoricSevereStorm) GetTorOtherWfo() string

func (*HistoricSevereStorm) GetTorWidth

func (x *HistoricSevereStorm) GetTorWidth() string

func (*HistoricSevereStorm) GetWfo

func (x *HistoricSevereStorm) GetWfo() string

func (*HistoricSevereStorm) ProtoMessage

func (*HistoricSevereStorm) ProtoMessage()

func (*HistoricSevereStorm) ProtoReflect

func (x *HistoricSevereStorm) ProtoReflect() protoreflect.Message

func (*HistoricSevereStorm) Reset

func (x *HistoricSevereStorm) Reset()

func (*HistoricSevereStorm) String

func (x *HistoricSevereStorm) String() string

type LondonBicycleRental

type LondonBicycleRental struct {
	RentalId                  int64                  `protobuf:"varint,1,opt,name=rental_id,json=rentalId,proto3" json:"rental_id,omitempty"`                          // INTEGER REQUIRED
	Duration                  *durationpb.Duration   `protobuf:"bytes,2,opt,name=duration,proto3" json:"duration,omitempty"`                                           // INTEGER NULLABLE
	BikeId                    int64                  `protobuf:"varint,3,opt,name=bike_id,json=bikeId,proto3" json:"bike_id,omitempty"`                                // INTEGER NULLABLE
	EndDate                   *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`                              // TIMESTAMP NULLABLE
	EndStationId              int64                  `protobuf:"varint,5,opt,name=end_station_id,json=endStationId,proto3" json:"end_station_id,omitempty"`            // INTEGER NULLABLE
	EndStationName            string                 `protobuf:"bytes,6,opt,name=end_station_name,json=endStationName,proto3" json:"end_station_name,omitempty"`       // STRING NULLABLE
	StartDate                 *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`                        // TIMESTAMP NULLABLE
	StartStationId            int64                  `protobuf:"varint,8,opt,name=start_station_id,json=startStationId,proto3" json:"start_station_id,omitempty"`      // INTEGER NULLABLE
	StartStationName          string                 `protobuf:"bytes,9,opt,name=start_station_name,json=startStationName,proto3" json:"start_station_name,omitempty"` // STRING NULLABLE
	EndStationLogicalTerminal int64                  ``                                                                                                                // INTEGER NULLABLE
	/* 142-byte string literal not displayed */
	StartStationLogicalTerminal int64 `` // INTEGER NULLABLE
	/* 148-byte string literal not displayed */
	EndStationPriorityId int64 `` // INTEGER NULLABLE
	/* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

Protobuf schema for the BigQuery public table:

bigquery-public-data.london_bicycles.cycle_hire

func (*LondonBicycleRental) Descriptor deprecated

func (*LondonBicycleRental) Descriptor() ([]byte, []int)

Deprecated: Use LondonBicycleRental.ProtoReflect.Descriptor instead.

func (*LondonBicycleRental) GetBikeId

func (x *LondonBicycleRental) GetBikeId() int64

func (*LondonBicycleRental) GetDuration

func (x *LondonBicycleRental) GetDuration() *durationpb.Duration

func (*LondonBicycleRental) GetEndDate

func (x *LondonBicycleRental) GetEndDate() *timestamppb.Timestamp

func (*LondonBicycleRental) GetEndStationId

func (x *LondonBicycleRental) GetEndStationId() int64

func (*LondonBicycleRental) GetEndStationLogicalTerminal

func (x *LondonBicycleRental) GetEndStationLogicalTerminal() int64

func (*LondonBicycleRental) GetEndStationName

func (x *LondonBicycleRental) GetEndStationName() string

func (*LondonBicycleRental) GetEndStationPriorityId

func (x *LondonBicycleRental) GetEndStationPriorityId() int64

func (*LondonBicycleRental) GetRentalId

func (x *LondonBicycleRental) GetRentalId() int64

func (*LondonBicycleRental) GetStartDate

func (x *LondonBicycleRental) GetStartDate() *timestamppb.Timestamp

func (*LondonBicycleRental) GetStartStationId

func (x *LondonBicycleRental) GetStartStationId() int64

func (*LondonBicycleRental) GetStartStationLogicalTerminal

func (x *LondonBicycleRental) GetStartStationLogicalTerminal() int64

func (*LondonBicycleRental) GetStartStationName

func (x *LondonBicycleRental) GetStartStationName() string

func (*LondonBicycleRental) ProtoMessage

func (*LondonBicycleRental) ProtoMessage()

func (*LondonBicycleRental) ProtoReflect

func (x *LondonBicycleRental) ProtoReflect() protoreflect.Message

func (*LondonBicycleRental) Reset

func (x *LondonBicycleRental) Reset()

func (*LondonBicycleRental) String

func (x *LondonBicycleRental) String() string

type LondonBicycleStation

type LondonBicycleStation struct {
	Id         int64   `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`                                   // INTEGER NULLABLE
	Installed  bool    `protobuf:"varint,2,opt,name=installed,proto3" json:"installed,omitempty"`                     // BOOLEAN NULLABLE
	Latitude   float64 `protobuf:"fixed64,3,opt,name=latitude,proto3" json:"latitude,omitempty"`                      // FLOAT NULLABLE
	Locked     string  `protobuf:"bytes,4,opt,name=locked,proto3" json:"locked,omitempty"`                            // STRING NULLABLE
	Longitude  float64 `protobuf:"fixed64,5,opt,name=longitude,proto3" json:"longitude,omitempty"`                    // FLOAT NULLABLE
	Name       string  `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`                                // STRING NULLABLE
	BikesCount int64   `protobuf:"varint,7,opt,name=bikes_count,json=bikesCount,proto3" json:"bikes_count,omitempty"` // INTEGER NULLABLE
	DocksCount int64   `protobuf:"varint,8,opt,name=docks_count,json=docksCount,proto3" json:"docks_count,omitempty"` // INTEGER NULLABLE
	// int64 nbEmptyDocks = 9; // INTEGER NULLABLE
	Temporary    bool       `protobuf:"varint,10,opt,name=temporary,proto3" json:"temporary,omitempty"`                          // BOOLEAN NULLABLE
	TerminalName string     `protobuf:"bytes,11,opt,name=terminal_name,json=terminalName,proto3" json:"terminal_name,omitempty"` // STRING NULLABLE
	InstallDate  *date.Date `protobuf:"bytes,12,opt,name=install_date,json=installDate,proto3" json:"install_date,omitempty"`    // DATE NULLABLE
	RemovalDate  *date.Date `protobuf:"bytes,13,opt,name=removal_date,json=removalDate,proto3" json:"removal_date,omitempty"`    // DATE NULLABLE
	// contains filtered or unexported fields
}

Protobuf schema for the BigQuery public table:

bigquery-public-data.london_bicycles.cycle_stations

func (*LondonBicycleStation) Descriptor deprecated

func (*LondonBicycleStation) Descriptor() ([]byte, []int)

Deprecated: Use LondonBicycleStation.ProtoReflect.Descriptor instead.

func (*LondonBicycleStation) GetBikesCount

func (x *LondonBicycleStation) GetBikesCount() int64

func (*LondonBicycleStation) GetDocksCount

func (x *LondonBicycleStation) GetDocksCount() int64

func (*LondonBicycleStation) GetId

func (x *LondonBicycleStation) GetId() int64

func (*LondonBicycleStation) GetInstallDate

func (x *LondonBicycleStation) GetInstallDate() *date.Date

func (*LondonBicycleStation) GetInstalled

func (x *LondonBicycleStation) GetInstalled() bool

func (*LondonBicycleStation) GetLatitude

func (x *LondonBicycleStation) GetLatitude() float64

func (*LondonBicycleStation) GetLocked

func (x *LondonBicycleStation) GetLocked() string

func (*LondonBicycleStation) GetLongitude

func (x *LondonBicycleStation) GetLongitude() float64

func (*LondonBicycleStation) GetName

func (x *LondonBicycleStation) GetName() string

func (*LondonBicycleStation) GetRemovalDate

func (x *LondonBicycleStation) GetRemovalDate() *date.Date

func (*LondonBicycleStation) GetTemporary

func (x *LondonBicycleStation) GetTemporary() bool

func (*LondonBicycleStation) GetTerminalName

func (x *LondonBicycleStation) GetTerminalName() string

func (*LondonBicycleStation) ProtoMessage

func (*LondonBicycleStation) ProtoMessage()

func (*LondonBicycleStation) ProtoReflect

func (x *LondonBicycleStation) ProtoReflect() protoreflect.Message

func (*LondonBicycleStation) Reset

func (x *LondonBicycleStation) Reset()

func (*LondonBicycleStation) String

func (x *LondonBicycleStation) String() string

type SanFransiscoTransitStopTime

type SanFransiscoTransitStopTime struct {
	StopId         int64                `protobuf:"varint,1,opt,name=stop_id,json=stopId,proto3" json:"stop_id,omitempty"`                           // INTEGER NULLABLE
	TripId         int64                `protobuf:"varint,2,opt,name=trip_id,json=tripId,proto3" json:"trip_id,omitempty"`                           // INTEGER NULLABLE
	StopSequence   int64                `protobuf:"varint,3,opt,name=stop_sequence,json=stopSequence,proto3" json:"stop_sequence,omitempty"`         // INTEGER NULLABLE
	ArrivalTime    *timeofday.TimeOfDay `protobuf:"bytes,4,opt,name=arrival_time,json=arrivalTime,proto3" json:"arrival_time,omitempty"`             // TIME NULLABLE
	ArrivesNextDay bool                 `protobuf:"varint,5,opt,name=arrives_next_day,json=arrivesNextDay,proto3" json:"arrives_next_day,omitempty"` // BOOLEAN NULLABLE
	DepartureTime  *timeofday.TimeOfDay `protobuf:"bytes,6,opt,name=departure_time,json=departureTime,proto3" json:"departure_time,omitempty"`       // TIME NULLABLE
	DepartsNextDay bool                 `protobuf:"varint,7,opt,name=departs_next_day,json=departsNextDay,proto3" json:"departs_next_day,omitempty"` // BOOLEAN NULLABLE
	DropoffType    string               `protobuf:"bytes,8,opt,name=dropoff_type,json=dropoffType,proto3" json:"dropoff_type,omitempty"`             // STRING NULLABLE
	ExactTimepoint bool                 `protobuf:"varint,9,opt,name=exact_timepoint,json=exactTimepoint,proto3" json:"exact_timepoint,omitempty"`   // BOOLEAN NULLABLE
	// contains filtered or unexported fields
}

Protobuf schema for the BigQuery public table:

bigquery-public-data.san_francisco_transit_muni.stop_times

func (*SanFransiscoTransitStopTime) Descriptor deprecated

func (*SanFransiscoTransitStopTime) Descriptor() ([]byte, []int)

Deprecated: Use SanFransiscoTransitStopTime.ProtoReflect.Descriptor instead.

func (*SanFransiscoTransitStopTime) GetArrivalTime

func (x *SanFransiscoTransitStopTime) GetArrivalTime() *timeofday.TimeOfDay

func (*SanFransiscoTransitStopTime) GetArrivesNextDay

func (x *SanFransiscoTransitStopTime) GetArrivesNextDay() bool

func (*SanFransiscoTransitStopTime) GetDepartsNextDay

func (x *SanFransiscoTransitStopTime) GetDepartsNextDay() bool

func (*SanFransiscoTransitStopTime) GetDepartureTime

func (x *SanFransiscoTransitStopTime) GetDepartureTime() *timeofday.TimeOfDay

func (*SanFransiscoTransitStopTime) GetDropoffType

func (x *SanFransiscoTransitStopTime) GetDropoffType() string

func (*SanFransiscoTransitStopTime) GetExactTimepoint

func (x *SanFransiscoTransitStopTime) GetExactTimepoint() bool

func (*SanFransiscoTransitStopTime) GetStopId

func (x *SanFransiscoTransitStopTime) GetStopId() int64

func (*SanFransiscoTransitStopTime) GetStopSequence

func (x *SanFransiscoTransitStopTime) GetStopSequence() int64

func (*SanFransiscoTransitStopTime) GetTripId

func (x *SanFransiscoTransitStopTime) GetTripId() int64

func (*SanFransiscoTransitStopTime) ProtoMessage

func (*SanFransiscoTransitStopTime) ProtoMessage()

func (*SanFransiscoTransitStopTime) ProtoReflect

func (*SanFransiscoTransitStopTime) Reset

func (x *SanFransiscoTransitStopTime) Reset()

func (*SanFransiscoTransitStopTime) String

func (x *SanFransiscoTransitStopTime) String() string

type WhosOnFirstGeoJson

type WhosOnFirstGeoJson struct {
	Geoid                 string                 `protobuf:"bytes,1,opt,name=geoid,proto3" json:"geoid,omitempty"`                                    // STRING NULLABLE
	Id                    int64                  `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`                                         // INTEGER NULLABLE
	Body                  *structpb.Struct       `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`                                      // STRING NULLABLE
	GeometryType          string                 `protobuf:"bytes,4,opt,name=geometry_type,json=geometryType,proto3" json:"geometry_type,omitempty"`  // STRING NULLABLE
	BoundingBox           string                 `protobuf:"bytes,5,opt,name=bounding_box,json=boundingBox,proto3" json:"bounding_box,omitempty"`     // GEOGRAPHY NULLABLE
	Geom                  string                 `protobuf:"bytes,6,opt,name=geom,proto3" json:"geom,omitempty"`                                      // GEOGRAPHY NULLABLE
	LastModified          int64                  `protobuf:"varint,7,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"` // INTEGER NULLABLE
	LastModifiedTimestamp *timestamppb.Timestamp ``                                                                                                   // TIMESTAMP NULLABLE
	/* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

Protobuf schema for the BigQuery public table:

bigquery-public-data.geo_whos_on_first.geojson

func (*WhosOnFirstGeoJson) Descriptor deprecated

func (*WhosOnFirstGeoJson) Descriptor() ([]byte, []int)

Deprecated: Use WhosOnFirstGeoJson.ProtoReflect.Descriptor instead.

func (*WhosOnFirstGeoJson) GetBody

func (x *WhosOnFirstGeoJson) GetBody() *structpb.Struct

func (*WhosOnFirstGeoJson) GetBoundingBox

func (x *WhosOnFirstGeoJson) GetBoundingBox() string

func (*WhosOnFirstGeoJson) GetGeoid

func (x *WhosOnFirstGeoJson) GetGeoid() string

func (*WhosOnFirstGeoJson) GetGeom

func (x *WhosOnFirstGeoJson) GetGeom() string

func (*WhosOnFirstGeoJson) GetGeometryType

func (x *WhosOnFirstGeoJson) GetGeometryType() string

func (*WhosOnFirstGeoJson) GetId

func (x *WhosOnFirstGeoJson) GetId() int64

func (*WhosOnFirstGeoJson) GetLastModified

func (x *WhosOnFirstGeoJson) GetLastModified() int64

func (*WhosOnFirstGeoJson) GetLastModifiedTimestamp

func (x *WhosOnFirstGeoJson) GetLastModifiedTimestamp() *timestamppb.Timestamp

func (*WhosOnFirstGeoJson) ProtoMessage

func (*WhosOnFirstGeoJson) ProtoMessage()

func (*WhosOnFirstGeoJson) ProtoReflect

func (x *WhosOnFirstGeoJson) ProtoReflect() protoreflect.Message

func (*WhosOnFirstGeoJson) Reset

func (x *WhosOnFirstGeoJson) Reset()

func (*WhosOnFirstGeoJson) String

func (x *WhosOnFirstGeoJson) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL