Created
May 26, 2021 21:43
-
-
Save afcotroneo/6fce8bfce1dc775f2a275df63fcd5afc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| let hash_table = build_hash_table(zipcodes.rows.polygon); // build hash table over polygon column | |
| for t1_row in t1.rows: | |
| for t2_row in hash_table(t1_row.point): | |
| if ST_Contains(t2_row.polygon, t1_row.point): | |
| output_match() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment