We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run the following query and then open in the geo viz app. Upon clicking to utilize street view, the behavior of the viz becomes erratic.
SELECT * FROM bigquery-public-data.san_francisco_bikeshare.bikeshare_station_info as t1 WHERE ST_WITHIN(ST_GEOGPOINT(lon, lat), ST_MAKEPOLYGON(ST_GEOGFROMTEXT("""LINESTRING( -122.41028583847944 37.797426773624345, -122.39778035397875 37.79923820799601, -122.39614117965742 37.79277567798291, -122.40880525911727 37.790152515674635)""")) )
bigquery-public-data.san_francisco_bikeshare.bikeshare_station_info
The text was updated successfully, but these errors were encountered:
@adampilz I don't think BigQuery-geo-viz maintained, but you can try Dekart. Example querying san francisco bikeshare
Sorry, something went wrong.
No branches or pull requests
Run the following query and then open in the geo viz app. Upon clicking to utilize street view, the behavior of the viz becomes erratic.
SELECT *
FROM
bigquery-public-data.san_francisco_bikeshare.bikeshare_station_info
as t1WHERE
ST_WITHIN(ST_GEOGPOINT(lon, lat),
ST_MAKEPOLYGON(ST_GEOGFROMTEXT("""LINESTRING(
-122.41028583847944 37.797426773624345,
-122.39778035397875 37.79923820799601,
-122.39614117965742 37.79277567798291,
-122.40880525911727 37.790152515674635)"""))
)
The text was updated successfully, but these errors were encountered: