New Mexico State Road 134

State Road 134 (NM 134) is a 22.47-mile-long (36.16 km) state highway in the US state of New Mexico. NM 134's southern terminus is at Navajo 12 near McKinley, and the northern terminus is in Sheep Springs at U.S. Route 491 (US 491).

State Road 134
Route information
Maintained by NMDOT
Length22.470 mi[1] (36.162 km)
Major junctions
South endNavajo 12 near McKinley
North end US 491 in Sheep Springs
Location
CountiesSan Juan, McKinley
Highway system
  • State Roads in New Mexico
NM 133NM 135

Major intersections

CountyLocationmi[2]kmDestinationsNotes
San JuanSheep Springs0.0000.000 US 491Northern terminus
McKinleyMcKinley22.47036.162Navajo 12Southern terminus
1.000 mi = 1.609 km; 1.000 km = 0.621 mi
gollark: It should be okay with regexes or something non-turing-complete.
gollark: Hold on, I can probably make a much nicer one.
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.

See also

  •  U.S. Roads portal

References

  1. "Posted Route: Legal Description" (PDF). New Mexico Department of Transportation. March 16, 2010. p. 91. Retrieved October 10, 2018.
  2. "TIMS Road Segments by Posted Route/Point with AADT Info; NM, NMX-Routes" (PDF). New Mexico Department of Transportation. April 3, 2013. pp. 5–7. Retrieved December 20, 2013.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.