Tok
Tok is a town in Interior Alaska.
Understand
Climate
Tok | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Climate chart (explanation) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Get in
Tok is an important highway junction. Most visitors coming in from The Yukon will cross the border at Port Alcan and follow the Alaska Highway to Tok. From there they can head north to Fairbanks or the Denali Highway or south to Valdez and routes to the MatSu valley and Anchorage.
Get around
The "downtown" portion of Tok is spread along the highway. There are local taxis but no other public transit.
See
Frankly, Tok is not in one of the more scenic areas of the state. The region is mostly flat with young forests that are still recovering from many wildfires in the region.
Do
Buy
Eat
- Windsock Pizza, ☎ +1 907 883-5804.
- Fast Eddies, ☎ +1 907 883-4411. Pizza, burgers and sandwiches, salad bar.
Drink
- Husky Lounge, 1313 Alaska Hwy, ☎ +1 907 883-2381.
Sleep
- A Mooseberry Inn B&B, 3 Maes Way, ☎ +1 907 883-5496.
- Caribou Cabins, Borealis Avenue, ☎ +1 907 883-8080.
- Discovery Inn B&B, ☎ +1 907 883-5559.
- Sourdough RV Park, ☎ +1 907-883-5543.
- Tok River State Recreation Site, 1309 Alaska Hwy, ☎ +1 907 505-0319.
Connect
Go next
Routes through Tok |
Anchorage ← Glennallen ← | W |
→ END |
Fairbanks ← Delta Junction ← | N |
→ |
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
gollark: Coming in about 3 minutes.
gollark: Use osmarksbuildsystem™.
gollark: I AM writing this, so you know.
This article is issued from Wikivoyage. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.