GeoDB: Add 2018-us-zcta and us-state

This commit is contained in:
2021-06-23 09:15:26 -05:00
parent 339255bf9b
commit 6c70d9acd5
3 changed files with 69 additions and 12 deletions

View File

@@ -9,3 +9,15 @@ using RELOG
@test point.lat == 41.83956
@test point.lon == -88.08857
end
@testset "geodb_query (2018-us-zcta)" begin
point = RELOG.geodb_query("2018-us-zcta:60439")
@test point.lat == 41.68241
@test point.lon == -87.98954
end
@testset "geodb_query (us-state)" begin
point = RELOG.geodb_query("us-state:IL")
@test point.lat == 39.73939
@test point.lon == -89.50414
end