Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
SELECT
name,
st_y(geom)
FROM
`YOUR_PROJECT.YOUR_DATASET.airports`
WHERE
country = 'CA'
ORDER BY
st_y(geom) ASC,
name ASC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment