Last active
January 8, 2023 10:40
-
-
Save mbforr/ba8f198eccdf773154817d913e24793c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
state_name, | |
st_x(st_centroid(state_geom)) as lng, | |
st_y(st_centroid(state_geom)) as lat | |
# we can use two functions together | |
# st_centroid returns a geography | |
# which we can pass to st_x and st_y which return the lat/longs of the point | |
from | |
`bigquery-public-data.geo_us_boundaries.states` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment