Tuttulikassak

Tuttulikassak (old spelling: Tugtulikavsak, Danish: Lille Renland) is a nunatak (Greenlandic: nunataq) in the Avannaata municipality in northwestern Greenland.

Tuttulikassak
Location within Greenland

Geography

Tuttulikassak is one of several nunataks in the Melville Bay region of Greenland, where the Greenland ice sheet (Greenlandic: Sermersuaq) drains into the bay alongside its entire length apart from an occasional nunatak.[1][2] Tuttulikassak is located on the mainland of Greenland in the northernmost part of Upernavik Archipelago, delimiting its northern end. To the east, Greenland icesheet drains southwards into Melville Bay via Hayes Glacier.[1]

Administrative border

Before the administrative changes on 1 January 2009 in the country, the border between the former Upernavik Municipality and the former Qaanaaq Municipality ran approximately 7.7 km (4.8 mi) to the northwest of the nunatak, through Kjer Glacier.[1] After that date both municipalities and the entire coast of Melville Bay are part of the Qaasuitsup municipality.[3]

Currently it is part of the Avannaata municipality.

gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.
gollark: Any good static-file server will ALREADY probably support the `Range` header.

References

  1. Upernavik Avannarleq, Saga Map, Tage Schjøtt, 1992
  2. Qimusseriarsuaq, Saga Map, Tage Schjøtt, 1992
  3. "Fakta om kommunen" (in Danish). Qaasuitsup Municipality. Archived from the original on 30 October 2010. Retrieved 3 September 2010.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.