The data for HuskyMaps consists of two parts: the osm
data and the tileset.
The OpenStreetMap data is generated via the BBBike extraction service which
uses the osmconvert
tool to reduce a massive planet.osm
file to a local
region.
Aardvark | |
Aardwolf | |
Albatross | |
Albertosaurus | |
Allosaurus | |
Alligator | |
Alpaca | |
Anaconda | |
Angelfish | |
Anglerfish |
Achroite | |
Actinolite | |
Adamite | |
Adularia | |
Aegerine | |
Afghanite | |
Agate | |
Agrellite | |
Ajoite | |
Albite |
Abelsonite | |
Abenakiite | |
Abernathyite | |
Abhurite | |
Abramovite | |
Abswurmbachite | |
Acanthite | |
Achavalite | |
Actinolite | |
Acuminite |
license: cc-by-4.0 | |
height: 500 | |
scrolling: no | |
border: no |
#!/bin/env python3 | |
""" | |
Play the STS sentiment evaluation game! Test your ability to predict the gold | |
standard label for the TSV containing gold labels and sentence pairs. | |
Try loading the question-question set from SemEval Semantic Textual Similarity. | |
https://github.com/brmson/dataset-sts | |
""" |
import java.util.Arrays; | |
import org.hamcrest.Description; | |
import org.hamcrest.Matcher; | |
import org.hamcrest.TypeSafeMatcher; | |
public class StringIsEqualIgnoringLineOrder extends TypeSafeMatcher<String> { | |
private final String expected; | |
private final String[] expectedLines; |
import aiohttp | |
import asyncio | |
import io | |
import pandas as pd | |
lessons = [ | |
# Ed Lesson IDs | |
] | |
token = "" # Ed login token |
class SET<Key extends Comparable<Key>> implements Iterable<Key> { | |
ST<Key, Boolean> map = new ST<>(); | |
void add(Key key) { | |
map.put(key, true); | |
} | |
boolean contains(Key key) { | |
return map.contains(key); | |
} |