Skip to content

Instantly share code, notes, and snippets.

@cjwinchester
Last active August 29, 2015 14:24
Show Gist options
  • Save cjwinchester/10cbf3ec6c5491d87b6b to your computer and use it in GitHub Desktop.
Save cjwinchester/10cbf3ec6c5491d87b6b to your computer and use it in GitHub Desktop.
Nebraska DMV locations
"""
Gets you in the ballpark, at least...
"""
import requests
from bs4 import *
import re
def scrapeDMV():
baseurl = "http://www.dmv.nebraska.gov/examining/map.html"
r = requests.get(baseurl)
soup = BeautifulSoup(r.text)
for linebreak in soup.find_all('br'):
linebreak.extract()
wrapper = soup.find('div', {'id':'Content1'})
boxes = wrapper.find_all('div', id=re.compile("box\d"))
f = open('dmv.txt', 'wb')
for county in boxes:
p = county.find_all('p')
countystring = p[0].b.text
findcounty = re.search('\).+?(?=\()', countystring)
county = findcounty.group().replace(")","").replace("County","").strip()
print county
addyblock = p[2].text.replace("\n","").replace("\r","").strip()
ls = [county, addyblock]
f.write("|".join(ls) + "\n")
f.flush()
f.close()
scrapeDMV()
{
"dmv": [{
"fips": "001",
"county": "Adams",
"address": "500 West 4th St.",
"city": "Hastings",
"state": "NE",
"zip": "68901",
"phone": "402-462-1958",
"hours": "8:30 a.m. to 5 p.m. Monday through Friday",
"lat": 40.5875301,
"lng": -98.3881951
}, {
"fips": "003",
"county": "Antelope",
"address": "501 Main St.",
"city": "Neligh",
"state": "NE",
"zip": "68756",
"phone": "402-887-9992",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. Wednesdays",
"lat": 42.1296518,
"lng": -98.0298681
}, {
"fips": "005",
"county": "Arthur",
"address": "205 Fir St.",
"city": "Arthur",
"state": "NE",
"zip": "69121",
"phone": "308-764-2203",
"hours": "9:30 a.m. to noon, 1 to 4 p.m. on the following Mondays: Jan. 26, Feb. 23, March 23, April 20, May 18, June 15, July 13, Aug. 10, Oct. 5, Nov. 2, Nov. 30, Dec. 28",
"lat": 41.5700324,
"lng": -101.6911554
}, {
"fips": "007",
"county": "Banner",
"address": "204 State St.",
"city": "Harrisburg",
"state": "NE",
"zip": "69345",
"phone": "308-436-5260",
"hours": "9 a.m. to noon on the following Wednesdays: Jan. 21, Feb. 18, March 18, April 15, May 20, June 17, July 15, Aug. 19, Sept. 16, Oct. 21, Nov. 18, Dec. 16",
"lat": 41.5561346,
"lng": -103.7413905
}, {
"fips": "009",
"county": "Blaine",
"address": "145 Lincoln Ave.",
"city": "Brewster",
"state": "NE",
"zip": "68821",
"phone": "308-547-2223",
"hours": "8:30 a.m. to 1 p.m. on the following Thursdays: Jan. 29, Feb. 26, March 26, April 23, May 21, June 18, July 16, Aug. 13, Sept. 10, Oct. 8, Nov. 5, Dec. 3, Dec. 31",
"lat": 41.9388258,
"lng": -99.8646302
}, {
"fips": "011",
"county": "Boone",
"address": "222 S 4th St.",
"city": "Albion",
"state": "NE",
"zip": "68620",
"phone": "402-395-6826",
"hours": "9:30 - 4:15 on the following Wednesdays: June 10, June 24, July 8, July 22, Aug. 5, Aug. 19, Sept. 2, Sept. 16, Sept. 30, Oct. 14, Oct. 28, Nov. 25, Dec. 9, Dec. 23",
"lat": 41.6911205,
"lng": -98.0017698
}, {
"fips": "013",
"county": "Box Butte",
"address": "524 Box Butte Ave.",
"city": "Alliance",
"state": "NE",
"zip": "69301",
"phone": "308-763-2949",
"hours": "9 a.m. to 4 p.m. Thursdays and Fridays",
"lat": 42.0999642,
"lng": -102.8710543
}, {
"fips": "015",
"county": "Boyd",
"address": "401 Thayer St.",
"city": "Butte",
"state": "NE",
"zip": "68722",
"phone": "402-775-2581",
"hours": "9:15 a.m. to 1:30 p.m. on the following Mondays: Jan. 5, Feb. 2, March 2, March 16, March 30, April 13, April 27, May 11, June 8, June 22, July 6, July 20, Aug. 3, Aug. 17, Aug. 31, Sept. 14, Sept. 28, Oct. 26, Nov. 9, Nov. 23, Dec. 7, Dec. 21",
"lat": 42.911119,
"lng": -98.8491221
}, {
"fips": "017",
"county": "Brown",
"address": "148 W 4th St.",
"city": "Ainsworth",
"state": "NE",
"zip": "69210",
"phone": "402-387-2650",
"hours": "8:15 a.m. to noon, 1 to 4:30 p.m. Fridays",
"lat": 42.5504208,
"lng": -99.8638737
}, {
"fips": "019",
"county": "Buffalo",
"address": "1512 Central Ave.",
"city": "Kearney",
"state": "NE",
"zip": "68847",
"phone": "308-236-1248",
"hours": "8 a.m. to 4:30 p.m. Monday through Friday",
"lat": 40.6893763,
"lng": -99.0825634
}, {
"fips": "021",
"county": "Burt",
"address": "111 N 13th St.",
"city": "Tekamah",
"state": "NE",
"zip": "68061",
"phone": "402-374-2940",
"hours": "10 a.m. to noon, 1 to 4 p.m. Thursdays",
"lat": 41.7787565,
"lng": -96.220617
}, {
"fips": "023",
"county": "Butler",
"address": "451 N 5th St.",
"city": "David City",
"state": "NE",
"zip": "68632",
"phone": "402-367-7452",
"hours": "9:45 a.m. to noon, 1 to 4:30 p.m. Mondays",
"lat": 41.2535853,
"lng": -97.1290767
}, {
"fips": "025",
"county": "Cass",
"address": "201 S Second St.",
"city": "Plattsmouth",
"state": "NE",
"zip": "68048",
"phone": "402-296-1028",
"hours": "8:45 a.m. to noon, 1 to 4:30 p.m. Thursdays and Fridays",
"lat": 41.0103802,
"lng": -95.8818445
}, {
"fips": "027",
"county": "Cedar",
"address": "101 S Broadway",
"city": "Hartington",
"state": "NE",
"zip": "68739",
"phone": "402-254-2435",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. Thursdays",
"lat": 42.6205643,
"lng": -97.2646446
}, {
"fips": "029",
"county": "Chase",
"address": "921 Broadway",
"city": "Imperial",
"state": "NE",
"zip": "69033",
"phone": "308-882-7517",
"hours": "8:45 a.m. to noon, 1 to 3:30 p.m. Thursdays",
"lat": 40.5204536,
"lng": -101.6438172
}, {
"fips": "031",
"county": "Cherry",
"address": "365 N Main St.",
"city": "Valentine",
"state": "NE",
"zip": "69201",
"phone": "402-376-1580",
"hours": "9:15 a.m. to noon, 1 to 4 p.m. Tuesdays and Wednesdays",
"lat": 42.8757714,
"lng": -100.5510926
}, {
"fips": "033",
"county": "Cheyenne",
"address": "1000 10th St.",
"city": "Sidney",
"state": "NE",
"zip": "69162",
"phone": "308-254-2733",
"hours": "8:15 a.m. to noon, 1 to 4 p.m. Wednesdays and Thursdays",
"lat": 41.1440354,
"lng": -102.9775423
}, {
"fips": "035",
"county": "Clay",
"address": "111 W Fairfield",
"city": "Clay Center",
"state": "NE",
"zip": "68933",
"phone": "402-762-3082",
"hours": "9 a.m. to noon, 1 to 4:30 p.m. on the following Tuesdays: Jan. 13, Jan. 27, Feb. 10, Feb. 24, March 10, March 24, April 7, April 21, May 5, May 19, June 2, June 16, June 30, July 14, July 28, Aug. 11, Aug. 25, Sept. 8, Sept. 22, Oct. 6, Oct. 20, Nov. 3, Nov. 17, Dec. 1, Dec. 15, Dec. 29",
"lat": 40.5217583,
"lng": -98.0544783
}, {
"fips": "037",
"county": "Colfax",
"address": "411 E 11th St.",
"city": "Schuyler",
"state": "NE",
"zip": "68661",
"phone": "402-352-5041",
"hours": "8:30 a.m. to noon, 1 to 4:30 p.m. Thursdays",
"lat": 41.4469681,
"lng": -97.0552112
}, {
"fips": "039",
"county": "Cuming",
"address": "200 S Lincoln St.",
"city": "West Point",
"state": "NE",
"zip": "68788",
"phone": "402-372-6016",
"hours": "9 a.m. to noon, 1 to 4:15 p.m. Tuesdays",
"lat": 41.8391375,
"lng": -96.7111835
}, {
"fips": "041",
"county": "Custer",
"address": "1030 S. D St.",
"city": "Broken Bow",
"state": "NE",
"zip": "68822",
"phone": "308-872-6260",
"hours": "8:45 a.m. to 12:30 p.m., 1 to 4:30 p.m. Mondays and Fridays",
"lat": 41.4026562,
"lng": -99.6420929
}, {
"fips": "043",
"county": "Dakota",
"address": "1601 Broadway St.",
"city": "Dakota City",
"state": "NE",
"zip": "68731",
"phone": "402-494-8260",
"hours": "8 a.m. to 12:30 p.m., 1 to 4:30 p.m. Mondays and Fridays for full service, Tuesdays, Wednesdays and Thursdays for ",
"lat": 42.4160261,
"lng": -96.4195375
}, {
"fips": "045",
"county": "Dawes",
"address": "451 Main St.",
"city": "Chadron",
"state": "NE",
"zip": "69337",
"phone": "308-432-6112",
"hours": "9 a.m. to noon, 1 to 4 p.m. Monday and Tuesdays except the last Tuesday of the month",
"lat": 42.8271396,
"lng": -103.0010113
}, {
"fips": "047",
"county": "Dawson",
"address": "700 N. Washington St.",
"city": "Lexington",
"state": "NE",
"zip": "68850",
"phone": "308-324-5466",
"hours": "8 a.m. to 4:30 p.m. Monday through Friday",
"lat": 40.7800524,
"lng": -99.7405405
}, {
"fips": "049",
"county": "Deuel",
"address": "718 3rd St.",
"city": "Chappell",
"state": "NE",
"zip": "69129",
"phone": "308-874-3497",
"hours": "9 a.m. to noon, 1 to 4 p.m. on the following Mondays: Jan. 5, Feb. 2, March 2, March 16, March 30, April 13, April 27, May 11, June 8, June 22, July 6, July 20, Aug. 3, Aug. 17, Aug. 31, Sept. 14, Sept. 28, Oct. 26, Nov. 9, Nov. 23, Dec. 7, Dec. 21",
"lat": 41.0936476,
"lng": -102.4720394
}, {
"fips": "051",
"county": "Dixon",
"address": "302 3rd St.",
"city": "Ponca",
"state": "NE",
"zip": "68770",
"phone": "402-755-4291",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. on the following Thursdays: Feb. 5, March 5, April 2, May 7, June 4, July 2, Aug. 6, Sept. 3, Oct. 1, Nov. 5, Dec. 3",
"lat": 42.5629617,
"lng": -96.7088468
}, {
"fips": "053",
"county": "Dodge",
"address": "435 N. Park St.",
"city": "Fremont",
"state": "NE",
"zip": "68025",
"phone": "402-727-2902",
"hours": "8:45 a.m. to 4:30 p.m. Wednesdays, Thursdays and Fridays",
"lat": 41.4334768,
"lng": -96.4977848
}, {
"fips": "055",
"county": "Douglas",
"address": "4208 S. 50th St.",
"city": "Omaha",
"state": "NE",
"zip": "68117",
"phone": "402-595-2039",
"hours": "8 a.m. to 4 p.m., Monday through Friday",
"lat": 41.217764,
"lng": -95.9933306
}, {
"fips": "055",
"county": "Douglas",
"address": "7414 N. 30th St",
"city": "Omaha",
"state": "NE",
"zip": "68112",
"phone": "402-595-2040",
"hours": "8 a.m. to 4 p.m., Monday through Friday",
"lat": 41.3278331,
"lng": -95.96018
}, {
"fips": "055",
"county": "Douglas",
"address": "5730 S 144th St",
"city": "Omaha",
"state": "NE",
"zip": "68137",
"phone": "402-595-2424",
"hours": "8 a.m. to 4 p.m., Monday through Friday",
"lat": 41.2009118,
"lng": -96.1397459
}, {
"fips": "055",
"county": "Douglas",
"address": "2910 N. 108th St",
"city": "Omaha",
"state": "NE",
"zip": "68164",
"phone": "402-595-3106",
"hours": "8 a.m. to 4 p.m., Monday through Friday",
"lat": 41.2852786,
"lng": -96.0820033
}, {
"fips": "057",
"county": "Dundy",
"address": "102 7th Ave. W.",
"city": "Benkelman",
"state": "NE",
"zip": "69021",
"phone": "308-423-2425",
"hours": "9:15 a.m. to noon, 1 to 4 p.m. on the following Wednesdays: Jan. 7, Jan. 21, Feb. 4, Feb. 18, March 4, March 18, April 1, April 15, April 29, May 13, May 27, June 10, June 24, July 8, July 22, Aug. 5, Aug. 19, Sept. 2, Sept. 16, Sept. 30, Oct. 14, Oct. 28, Nov. 25, Dec. 9, Dec. 23",
"lat": 40.0501727,
"lng": -101.5330027
}, {
"fips": "059",
"county": "Fillmore",
"address": "900 G St.",
"city": "Geneva",
"state": "NE",
"zip": "68361",
"phone": "402-759-3492",
"hours": "8:30 a.m. to noon, 1 to 4 p.m. Thursdays and Fridays",
"lat": 40.525691,
"lng": -97.602805
}, {
"fips": "061",
"county": "Franklin",
"address": "405 15th Ave.",
"city": "Franklin",
"state": "NE",
"zip": "68939",
"phone": "308-425-3350",
"hours": "9:15 a.m. to 4 p.m. on the following Tuesdays: Jan. 13, Jan. 27, Feb. 10, Feb. 24, March 10, March 24, April 7, April 21, May 5, May 19, June 2, June 16, June 30, July 14, July 28, Aug. 11, Aug. 25, Sept. 8, Sept. 22, Oct. 6, Oct. 20, Nov. 3, Nov. 17, Dec. 1, Dec. 15, Dec. 29",
"lat": 40.0976099,
"lng": -98.9542684
}, {
"fips": "063",
"county": "Frontier",
"address": "1 Wellington St.",
"city": "Stockville",
"state": "NE",
"zip": "69042",
"phone": "308-367-4525",
"hours": "9:45 a.m. to noon, 1 to 4:30 p.m. on the following Fridays: Jan. 2, Jan. 16, Jan. 30, Feb. 13, Feb. 27, March 13, March 27, April 10, May 8, May 22, June 5, June 19, July 17, July 31, Aug. 14, Aug. 28, Sept. 11, Sept. 25, Oct. 9, Oct. 23, Nov. 6, Nov. 20, Dec. 7, Dec. 21",
"lat": 40.5255668,
"lng": -100.3838329
}, {
"fips": "065",
"county": "Furnas",
"address": "912 R St.",
"city": "Beaver City",
"state": "NE",
"zip": "68926",
"phone": "308-268-3702",
"hours": "9:30 a.m. to noon, 1 to 3:30 p.m. on the follwing Mondays: Jan. 5, Feb. 2, March 2, March 16, March 30, April 13, April 27, May 11, June 8, June 22, July 6, July 20, Aug. 3, Aug. 17, Aug. 31, Sept. 14, Sept. 28, Oct. 26, Nov. 9, Nov. 23, Dec. 7, Dec. 21",
"lat": 40.138779,
"lng": -99.8276693
}, {
"fips": "067",
"county": "Gage",
"address": "612 Grant St.",
"city": "Beatrice",
"state": "NE",
"zip": "68310",
"phone": "402-223-1350",
"hours": "8:30 a.m. to noon, 1 to 4 p.m. Mondays and Tuesdays",
"lat": 40.2712097,
"lng": -96.7459913
}, {
"fips": "069",
"county": "Garden",
"address": "611 Main St.",
"city": "Oshkosh",
"state": "NE",
"zip": "69154",
"phone": "308-772-3924",
"hours": "8:45 a.m. to noon, 1 to 4 p.m. on the following Wednesdays: Jan. 7, Jan. 21, Feb. 4, Feb. 18, March 4, March 18, April 1, April 15, April 29, May 13, May 27, June 10, June 24,July 8, July 22, Aug. 5, Aug. 19, Sept. 2, Sept. 16, Sept. 30, Oct. 14, Oct. 28, Nov. 25, Dec. 9, Dec. 23",
"lat": 41.4082609,
"lng": -102.3441922
}, {
"fips": "071",
"county": "Garfield",
"address": "250 S 8th St.",
"city": "Burwell",
"state": "NE",
"zip": "68823",
"phone": "308-346-4161",
"hours": "10 a.m. to 12:30 p.m., 1 to 3 p.m. on the following Thursdays: Jan. 15, Feb. 5, Feb. 19, March 5, March 19, April 2, April 16, May 7, May 21, June 4, June 18, July 2, July 16, Aug. 6, Aug. 20, Sept. 3, Sept. 17, Oct. 1, Oct. 15, Nov. 5, Nov. 19, Dec. 3, Dec. 17",
"lat": 41.7795918,
"lng": -99.1352786
}, {
"fips": "073",
"county": "Gosper",
"address": "507 Smith St.",
"city": "Elwood",
"state": "NE",
"zip": "68937",
"phone": "308-785-2450",
"hours": "9:15 a.m. to noon, 1 to 4:30 p.m. on the following Thursdays: Jan. 22, Feb. 26, March 26, April 23, May 28, June 25, July 23, Aug. 27, Sept. 24, Oct. 22, Dec. 24",
"lat": 40.5877971,
"lng": -99.8609724
}, {
"fips": "075",
"county": "Grant",
"address": "105 E Harrison St.",
"city": "Hyannis",
"state": "NE",
"zip": "69350",
"phone": "308-458-2422",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. on the following Mondays: Jan. 12, Feb. 9, March 9, April 6, May 4, June 1, June 29, July 27, Aug. 24, Sept. 21, Oct. 19, Nov. 16, Dec. 14",
"lat": 41.9999789,
"lng": -101.763191
}, {
"fips": "077",
"county": "Greeley",
"address": "100 Main St.",
"city": "Greeley",
"state": "NE",
"zip": "68842",
"phone": "308-428-3655",
"hours": "10 a.m. to noon, 1 to 4 p.m. on the following Thursdays: Jan. 15, Feb. 5, Feb. 19, March 5, March 19, April 2, April 16, May 7, May 21, June 4, June 18, July 2, July 16, Aug. 6, Aug. 20, Sept. 3, Sept. 17, Oct. 1, Oct. 15, Nov. 5, Nov. 19, Dec. 3, Dec. 17",
"lat": 41.4664526,
"lng": -98.70306
}, {
"fips": "079",
"county": "Hall",
"address": "121 S Pine St.",
"city": "Grand Island",
"state": "NE",
"zip": "68801",
"phone": "308-385-5047",
"hours": "8 a.m. to 4:30 p.m. Monday through Friday",
"lat": 40.9233362,
"lng": -98.3380737
}, {
"fips": "081",
"county": "Hamilton",
"address": "1111 13th St.",
"city": "Aurora",
"state": "NE",
"zip": "68818",
"phone": "402-694-4030",
"hours": "9:45 a.m. to noon, 1 to 4:30 p.m. Tuesdays",
"lat": 40.8679391,
"lng": -98.0021455
}, {
"fips": "083",
"county": "Harlan",
"address": "706 W 2nd St.",
"city": "Alma",
"state": "NE",
"zip": "68920",
"phone": "308-928-2171",
"hours": "9 a.m. to noon, 1 to 4 p.m. on the following Mondays: Jan. 12, Jan 26, Feb. 9, Feb. 23, March 9, March 23, April 6, April 20, May 4, May 18, June 1, June 15, June 29, July 13, July 27, Aug. 10, Aug. 24, Sept. 21, Oct. 5, Oct. 19, Nov. 2, Nov. 16, Nov. 30, Dec. 14, Dec. 28",
"lat": 40.0998244,
"lng": -99.3627374
}, {
"fips": "085",
"county": "Hayes",
"address": "505 Troth St.",
"city": "Hayes Center",
"state": "NE",
"zip": "69032",
"phone": "308-286-3214",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. on the following Wednesdays: Jan. 14, Jan 28, Feb. 11, Feb. 25, March 11, March 25, April 8, April 22, May 6, May 20, June 3, June 17, July 1, July 15, July 29, Aug. 12, Aug. 26, Sept. 9, Sept. 23, Oct. 7, Oct. 21, Nov. 4, Nov. 18, Dec. 2, Dec. 16, Dec. 30",
"lat": 40.5108902,
"lng": -101.0187643
}, {
"fips": "087",
"county": "Hitchcock",
"address": "229 East D St.",
"city": "Trenton",
"state": "NE",
"zip": "69044",
"phone": "308-334-5844",
"hours": "9:15 a.m. to noon, 1 to 4 p.m. on the following Fridays: Jan. 9, Jan 23, Feb. 6, Feb. 20, March 6, March 20, April 3, April 17, May 1, May 15, May 29, June 12, June 26, July 10, July 24, Aug. 7, Aug. 21, Sept. 4, Sept. 18, Oct. 2, Oct. 16, Oct. 30, Nov. 13, Dec. 11",
"lat": 40.1757477,
"lng": -101.0115977
}, {
"fips": "089",
"county": "Holt",
"address": "204 E. Hwy 20",
"city": "O'Neill",
"state": "NE",
"zip": "68763",
"phone": "402-336-1864",
"hours": "8:15 a.m. to 4 p.m. Mondays",
"lat": 42.4576509,
"lng": -98.6544885
}, {
"fips": "091",
"county": "Hooker",
"address": "303 NW 1st St.",
"city": "Mullen",
"state": "NE",
"zip": "69152",
"phone": "308-546-2245",
"hours": "8:45 a.m. to noon, 1 to 4:30 p.m. on the following Tuesdays: Jan. 13, Feb. 10, March 10, April 7, May 5, June 2, June 30, July 28, Aug. 25, Sept. 22, Oct. 20, Nov. 17, Dec. 15",
"lat": 42.0429406,
"lng": -101.0448788
}, {
"fips": "093",
"county": "Howard",
"address": "612 Indian St.",
"city": "St. Paul",
"state": "NE",
"zip": "68873",
"phone": "308-754-4852",
"hours": "9:15 a.m. to noon, 1 to 4:30 p.m. Wednesdays",
"lat": 41.2143642,
"lng": -98.45696
}, {
"fips": "095",
"county": "Jefferson",
"address": "411 4th St.",
"city": "Fairbury",
"state": "NE",
"zip": "68352",
"phone": "402-729-6473",
"hours": "9:30 a.m. to noon, 1 to 4:30 p.m. Wednesdays",
"lat": 40.1356653,
"lng": -97.1806382
}, {
"fips": "097",
"county": "Johnson",
"address": "351 Broadway Ave.",
"city": "Tecumseh",
"state": "NE",
"zip": "68450",
"phone": "402-335-6302",
"hours": "8:45 a.m. to noon, 1 to 4 p.m. on the following Fridays: Jan. 9, Jan 23, Feb. 6, Feb. 20, March 6, March 20, April 3, April 17, May 1, May 15, May 29, June 12, June 26, July 10, July 24, Aug. 7, Aug. 21, Sept. 4, Sept. 18, Oct. 2, Oct. 16, Oct. 30, Nov. 13, Dec. 11",
"lat": 40.3681647,
"lng": -96.19497
}, {
"fips": "099",
"county": "Kearney",
"address": "424 N Colorado St.",
"city": "Minden",
"state": "NE",
"zip": "68959",
"phone": "308-832-0710",
"hours": "9 a.m. to noon, 1 to 4:30 p.m. Wednesdays",
"lat": 40.4989648,
"lng": -98.9484294
}, {
"fips": "101",
"county": "Keith",
"address": "511 N Spruce St.",
"city": "Ogallala",
"state": "NE",
"zip": "69153",
"phone": "308-284-8078",
"hours": "8:15 a.m. to noon, 1 to 4 p.m. Thursdays and Fridays",
"lat": 41.1286315,
"lng": -101.7191681
}, {
"fips": "103",
"county": "Keya Paha",
"address": "310 Courthouse Dr.",
"city": "Springview",
"state": "NE",
"zip": "68778",
"phone": "402-497-3791",
"hours": "9 a.m. to noon, 1 to 3:30 p.m. on the following Thursdays: Jan. 15, Feb. 12, March 12, April 9, May 7, June 4, July 2, July 30, Aug. 27, Sept. 24, Oct. 22, Nov. 19, Dec. 17",
"lat": 42.8249932,
"lng": -99.7465495
}, {
"fips": "105",
"county": "Kimball",
"address": "114 E. 3rd St.",
"city": "Kimball",
"state": "NE",
"zip": "69145",
"phone": "308-235-2242",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. Tuesdays",
"lat": 41.2356827,
"lng": -103.6630859
}, {
"fips": "107",
"county": "Knox",
"address": "206 Main St.",
"city": "Center",
"state": "NE",
"zip": "68724",
"phone": "402-288-5614",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. Fridays",
"lat": 42.609384,
"lng": -97.8768203
}, {
"fips": "109",
"county": "Lancaster",
"address": "500 West ",
"city": "Lincoln",
"state": "NE",
"zip": "68528",
"phone": "402-471-2823",
"hours": "7:30 a.m. to 4 p.m. Monday through Friday",
"lat": 40.8140911,
"lng": -96.7271594
}, {
"fips": "109",
"county": "Lancaster",
"address": "625 N 46th St",
"city": "Lincoln",
"state": "NE",
"zip": "68503",
"phone": "402-471-3008",
"hours": "7:30 a.m. to 4 p.m. Monday through Friday (no written or drive testing)",
"lat": 40.8188976,
"lng": -96.6578846
}, {
"fips": "111",
"county": "Lincoln",
"address": "311 N Vine St, Suite 1",
"city": "North Platte",
"state": "NE",
"zip": "69101",
"phone": "308-535-8326",
"hours": "8 a.m. to 4:30 p.m. Monday through Friday",
"lat": 41.1358282,
"lng": -100.7646858
}, {
"fips": "113",
"county": "Logan",
"address": "317 Main St.",
"city": "Stapleton",
"state": "NE",
"zip": "69163",
"phone": "308-636-2244",
"hours": "9:15 a.m. to noon, 1 to 4 p.m. on the following Wednesdays: Jan. 28, Feb. 25, March 25, April 22, May 20, June 17, July 15, Aug. 12, Sept. 9, Oct. 7, Nov. 4, Dec. 2, Dec. 30",
"lat": 41.4799099,
"lng": -100.5127217
}, {
"fips": "115",
"county": "Loup",
"address": "408 4th St.",
"city": "Taylor",
"state": "NE",
"zip": "68879",
"phone": "308-942-3115",
"hours": "10 a.m. to 12:30 p.m., 1 to 3:30 p.m. on the following Thursdays: Jan. 8, Feb. 12, March 12, April 9, May 14, June 11, July 9, Aug. 13, Sept. 10, Oct. 8, Nov. 12, Dec. 10",
"lat": 41.7722641,
"lng": -99.3810199
}, {
"fips": "119",
"county": "Madison",
"address": "1313 N Main St.",
"city": "Madison",
"state": "NE",
"zip": "68748",
"phone": "402-454-3311",
"hours": "8:30 a.m. to 4:30 p.m. Monday, Tuesday, Thursday and Friday for full service; 8 a.m. to noon, 12:30 to 4:30 p.m. Wednedsay for ",
"lat": 41.8435972,
"lng": -97.4560402
}, {
"fips": "117",
"county": "McPherson",
"address": "500 Anderson St.",
"city": "Tryon",
"state": "NE",
"zip": "69167",
"phone": "308-587-2363",
"hours": "10:15 a.m. to noon, 1 to 4:30 p.m. on the following Tuesdays: Jan. 27, Feb. 24, March 24, April 21, May 19, June 16, July 14, Aug. 11, Sept. 8, Oct. 6, Nov. 3, Dec. 1, Dec. 29",
"lat": 41.5528907,
"lng": -100.9580284
}, {
"fips": "121",
"county": "Merrick",
"address": "1510 18th St.",
"city": "Central City",
"state": "NE",
"zip": "68826",
"phone": "308-946-2171",
"hours": "8:45 a.m. to noon, 1 to 4:30 p.m. Fridays",
"lat": 41.11361,
"lng": -97.9995958
}, {
"fips": "123",
"county": "Morrill",
"address": "602 L St.",
"city": "Bridgeport",
"state": "NE",
"zip": "69336",
"phone": "308-262-1927",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. Mondays",
"lat": 41.6691087,
"lng": -103.1009411
}, {
"fips": "125",
"county": "Nance",
"address": "209 Esther St.",
"city": "Fullerton",
"state": "NE",
"zip": "68638",
"phone": "308-536-2165",
"hours": "10 a.m. to noon, 1 to 4 p.m. Mondays",
"lat": 41.3643584,
"lng": -97.9672626
}, {
"fips": "127",
"county": "Nemaha",
"address": "1824 N St.",
"city": "Auburn",
"state": "NE",
"zip": "68305",
"phone": "402-274-5787",
"hours": "8:45 a.m. to noon, 12:45 to 4:30 p.m. Wednesdays",
"lat": 40.3862759,
"lng": -95.8440219
}, {
"fips": "129",
"county": "Nuckolls",
"address": "150 S Main St.",
"city": "Nelson",
"state": "NE",
"zip": "68961",
"phone": "402-225-2458",
"hours": "9:30 a.m. to noon, 1 to 4 p.m. on the following Tuesdays: Jan. 6, Jan 20, Feb. 3, Feb. 17, March 3, March 17, March 31, April 14, April 28, May 12, May 26, June 9, June 23, July 7, July 21, Aug. 4, Aug. 18, Sept. 1, Sept. 15, Sept. 29, Oct. 13, Oct. 27, Nov. 10, Nov. 24, Dec. 8, Dec. 22",
"lat": 40.2040922,
"lng": -98.06746
}, {
"fips": "131",
"county": "Otoe",
"address": "1021 Central Ave.",
"city": "Nebraska City",
"state": "NE",
"zip": "68410",
"phone": "402-873-4944",
"hours": "8:45 a.m. to noon, 1 to 4:30 p.m. Mondays and Tuesdays",
"lat": 40.6761848,
"lng": -95.8583001
}, {
"fips": "133",
"county": "Pawnee",
"address": "625 6th St.",
"city": "Pawnee City",
"state": "NE",
"zip": "68420",
"phone": "402-852-2438",
"hours": "9:30 a.m. to noon, 1 to 4 p.m. on the following Fridays: Jan. 2, Jan 16, Jan. 30, Feb. 13, Feb. 27, March 13, March 27, April 10, May 8, May 22, June 5, June 19, July 17, July 31, Aug. 14, Aug. 28, Sept. 11, Sept. 25, Oct. 9, Oct. 23, Nov. 6, Nov. 20, Dec. 4, Dec. 18",
"lat": 40.1084557,
"lng": -96.1543632
}, {
"fips": "135",
"county": "Perkins",
"address": "200 Lincoln Ave.",
"city": "Grant",
"state": "NE",
"zip": "69140",
"phone": "308-352-7579",
"hours": "8:45 a.m. to noon, 1 to 4 p.m. on the following Tuesdays: Jan. 6, Jan. 20, Feb. 3, Feb. 17, March 3, March 17, March 31, April 14, April 28, May 12, May 26, June 9, June 23, July 7, July 21, Aug. 4, Aug. 18, Sept. 1, Sept. 15, Sept. 29, Oct. 13, Oct. 27, Nov. 10, Nov. 24, Dec. 8, Dec. 22",
"lat": 40.840957,
"lng": -101.7264657
}, {
"fips": "137",
"county": "Phelps",
"address": "1308 2nd St.",
"city": "Holdrege",
"state": "NE",
"zip": "68949",
"phone": "308-995-8103",
"hours": "8:45 a.m. to noon, 1 to 4:30 p.m. Thursdays and Fridays",
"lat": 40.4344389,
"lng": -99.3626726
}, {
"fips": "139",
"county": "Pierce",
"address": "111 West Court",
"city": "Pierce",
"state": "NE",
"zip": "68767",
"phone": "402-329-4810",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. Tuesdays",
"lat": 42.1999933,
"lng": -97.5274632
}, {
"fips": "141",
"county": "Platte",
"address": "2610 14th St.",
"city": "Columbus",
"state": "NE",
"zip": "68601",
"phone": "402-563-4907",
"hours": "8:30 a.m. to 4:30 p.m. Mondays, Tuesdays, Wednesdays and Fridays",
"lat": 41.4307121,
"lng": -97.360002
}, {
"fips": "143",
"county": "Polk",
"address": "400 Hawkeye St.",
"city": "Osceola",
"state": "NE",
"zip": "68651",
"phone": "402-747-4071",
"hours": "9:45 a.m. to noon, 1 to 4:30 p.m. Tuesdays",
"lat": 41.1797102,
"lng": -97.5480257
}, {
"fips": "145",
"county": "Red Willow",
"address": "502 Norris Ave.",
"city": "McCook",
"state": "NE",
"zip": "69001",
"phone": "308-345-4139",
"hours": "8:30 a.m. to noon, 1 to 4 p.m. Mondays and Tuesdays",
"lat": 40.201791,
"lng": -100.6258154
}, {
"fips": "147",
"county": "Richardson",
"address": "1700 Stone St.",
"city": "Falls City",
"state": "NE",
"zip": "68355",
"phone": "402-245-2772",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. Wednesdays",
"lat": 40.0622073,
"lng": -95.6023861
}, {
"fips": "149",
"county": "Rock",
"address": "400 State St.",
"city": "Bassett",
"state": "NE",
"zip": "68714",
"phone": "402-684-3337",
"hours": "10:30 a.m. to noon, 1 to 5 p.m. on the following Thursdays: Jan. 8, Jan. 22, Feb. 5, Feb. 19, March 5, March 19, April 2, April 16, April 30, May 14, May 28, June 11, June 25, July 9, July 23, Aug. 6, Aug. 20, Sept. 3, Sept. 17, Oct. 1, Oct. 15, Oct. 29, Nov. 12, Dec. 10, Dec. 24",
"lat": 42.589685,
"lng": -99.5365121
}, {
"fips": "151",
"county": "Saline",
"address": "215 S Court",
"city": "Wilber",
"state": "NE",
"zip": "68465",
"phone": "402-821-3518",
"hours": "9 a.m. to noon, 1 to 4 p.m. Thursdays",
"lat": 40.4819471,
"lng": -96.9661035
}, {
"fips": "153",
"county": "Sarpy",
"address": "1210 Golden Gate Dr.",
"city": "Papillion",
"state": "NE",
"zip": "68046",
"phone": "402-595-1834",
"hours": "8 a.m. to 4 p.m. Monday through Friday",
"lat": 41.1412923,
"lng": -96.0401701
}, {
"fips": "155",
"county": "Saunders",
"address": "433 N Chestnut St.",
"city": "Wahoo",
"state": "NE",
"zip": "68066",
"phone": "402-443-4970",
"hours": "8 a.m. to noon, 12:30 to 4:30 p.m. Mondays and Tuesdays",
"lat": 41.2095678,
"lng": -96.6232468
}, {
"fips": "157",
"county": "Scotts Bluff",
"address": "1825 10th St.",
"city": "Gering",
"state": "NE",
"zip": "69341",
"phone": "308-436-6597",
"hours": "8 a.m. to 4:30 p.m. Monday through Friday",
"lat": 41.8269872,
"lng": -103.6609347
}, {
"fips": "159",
"county": "Seward",
"address": "529 Seward St.",
"city": "Seward",
"state": "NE",
"zip": "68434",
"phone": "402-643-2980",
"hours": "9:15 a.m. to 4:30 p.m. Wednesdays",
"lat": 40.907376,
"lng": -97.0984151
}, {
"fips": "161",
"county": "Sheridan",
"address": "301 East 2nd St.",
"city": "Rushville",
"state": "NE",
"zip": "69360",
"phone": "308-327-2902",
"hours": "9 a.m. to noon, 1 to 4 p.m. Wednesdays",
"lat": 42.7181135,
"lng": -102.4608773
}, {
"fips": "163",
"county": "Sherman",
"address": "630 ",
"city": "Loup City",
"state": "NE",
"zip": "68853",
"phone": "308-745-1425",
"hours": "10:45 a.m. to 12:30 p.m., 1 to 4 p.m. Tuesdays",
"lat": 41.275309,
"lng": -98.966607
}, {
"fips": "165",
"county": "Sioux",
"address": "325 Main St.",
"city": "Harrison",
"state": "NE",
"zip": "69346",
"phone": "308-668-2422",
"hours": "10:30 a.m. to noon, 1 to 3 p.m. on the following Tuesdays: Jan. 27, Feb. 24, March 31, April 28, May 26, June 30, July 28, Aug. 25, Sept. 29, Oct. 27, Nov. 24, Dec. 29",
"lat": 42.6898848,
"lng": -103.8830577
}, {
"fips": "167",
"county": "Stanton",
"address": "804 Ivy St.",
"city": "Stanton",
"state": "NE",
"zip": "68779",
"phone": "402-439-2605",
"hours": "9 a.m. to 4:30 p.m. on the following Wednesdays: June 3, June 17, July 1, July 15, July 29, Aug. 12, Aug. 26, Sept. 9, Sept. 23, Oct. 7, Oct. 21, Nov. 4, Nov. 18, Dec. 2, Dec. 16, Dec. 30",
"lat": 41.9510048,
"lng": -97.2219579
}, {
"fips": "169",
"county": "Thayer",
"address": "225 N 4th St.",
"city": "Hebron",
"state": "NE",
"zip": "68370",
"phone": "402-768-0425",
"hours": "9 a.m. to noon, 1 to 4 p.m. Mondays",
"lat": 40.1684195,
"lng": -97.590939
}, {
"fips": "171",
"county": "Thomas",
"address": "503 Main St.",
"city": "Thedford",
"state": "NE",
"zip": "69166",
"phone": "308-645-2262",
"hours": "9:15 a.m. to noon, 1 to 4 p.m. on the following Wednesdays: Jan. 14, Feb. 11, March 11, April 8, May 6, June 3, July 1, July 29, Aug. 26, Sept. 23, Oct. 21, Nov. 18, Dec. 16",
"lat": 41.9775326,
"lng": -100.5730326
}, {
"fips": "173",
"county": "Thurston",
"address": "415 Main St.",
"city": "Pender",
"state": "NE",
"zip": "68047",
"phone": "402-385-2201",
"hours": "10:30 a.m. to noon, 1 to 4:15 p.m. on the following Thursdays: Jan. 8, Feb. 12, March 12, April 9, May 14, June 11, July 9, Aug. 13, Sept. 10, Oct. 8, Nov. 12, Dec. 10",
"lat": 42.1140588,
"lng": -96.7073141
}, {
"fips": "175",
"county": "Valley",
"address": "125 S 15th St.",
"city": "Ord",
"state": "NE",
"zip": "68862",
"phone": "308-728-3731",
"hours": "9:15 a.m. to 12:30 p.m., 1 to 4 p.m. Wednesdays",
"lat": 41.6025719,
"lng": -98.9284729
}, {
"fips": "177",
"county": "Washington",
"address": "1555 Colfax St.",
"city": "Blair",
"state": "NE",
"zip": "68008",
"phone": "402-426-5660",
"hours": "8:45 a.m. to 4:30 p.m. Mondays",
"lat": 41.5401247,
"lng": -96.1354103
}, {
"fips": "179",
"county": "Wayne",
"address": "510 Pearl St.",
"city": "Wayne",
"state": "NE",
"zip": "68787",
"phone": "402-375-7009",
"hours": "9:45 a.m. to noon, 1 to 4:30 p.m. Wednesdays",
"lat": 42.2341134,
"lng": -97.020092
}, {
"fips": "181",
"county": "Webster",
"address": "621 N Cedar St.",
"city": "Red Cloud",
"state": "NE",
"zip": "68970",
"phone": "402-746-2877",
"hours": "9:45 a.m. to noon, 1 to 4 p.m. on the following Tuesdays: Jan. 6, Jan. 20, Feb. 3, Feb. 17, March 3, March 17, March 31, April 14, April 28, May 12, May 26, June 9, June 23, July 7, July 21, Aug. 4, Aug. 18, Sept. 1, Sept. 15, Sept. 29, Oct. 13, Oct. 27, Nov. 10, Nov. 24, Dec. 8, Dec. 22",
"lat": 40.091404,
"lng": -98.5213791
}, {
"fips": "183",
"county": "Wheeler",
"address": "300 Main St.",
"city": "Bartlett",
"state": "NE",
"zip": "68622",
"phone": "308-654-3236",
"hours": "9:45 a.m. to noon, 1 to 3 p.m. on the following Thursdays: Jan. 8, Feb. 12, March 12, April 9, May 14, June 11, July 9, Aug. 13, Sept. 10, Oct. 8, Nov. 12, Dec. 10",
"lat": 41.884448,
"lng": -98.551621
}, {
"fips": "185",
"county": "York",
"address": "510 Lincoln Ave.",
"city": "York",
"state": "NE",
"zip": "68467",
"phone": "402-362-3471",
"hours": "9 a.m. to noon, 1 to 4:30 p.m. Thursdays and Fridays",
"lat": 40.8598338,
"lng": -97.5934181
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment