Skip to content

Instantly share code, notes, and snippets.

View LuigiNicaPRO's full-sized avatar

Luigi LuigiNicaPRO

  • 07:51 (UTC -05:00)
View GitHub Profile
@jakebathman
jakebathman / StateBoundaries.sql
Last active November 1, 2025 07:48
The approximate max/min latitude and longitude for all states and major territories
-- Create the table
CREATE TABLE IF NOT EXISTS `StateBoundaries` (
`State` varchar(10) DEFAULT NULL,
`Name` varchar(255) DEFAULT NULL,
`MinLat` varchar(50) DEFAULT NULL,
`MaxLat` varchar(50) DEFAULT NULL,
`MinLon` varchar(50) DEFAULT NULL,
`MaxLon` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;