Skip to content

Commit 7d4b293

Browse files
committed
formatting
1 parent 89a1a9d commit 7d4b293

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tiles/src/main/java/com/protomaps/basemap/Basemap.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import com.onthegomap.planetiler.ForwardingProfile;
44
import com.onthegomap.planetiler.Planetiler;
55
import com.onthegomap.planetiler.config.Arguments;
6-
import com.onthegomap.planetiler.util.Downloader;
76
import com.protomaps.basemap.feature.NaturalEarthDb;
87
import com.protomaps.basemap.feature.QrankDb;
98
import com.protomaps.basemap.layers.Boundaries;
@@ -130,12 +129,12 @@ static void run(Arguments args) throws Exception {
130129
.addShapefileSource("osm_land", sourcesDir.resolve("land-polygons-split-3857.zip"),
131130
"https://osmdata.openstreetmap.de/download/land-polygons-split-3857.zip");
132131

133-
// Downloader.create(planetiler.config()).add("ne", neUrl, nePath)
134-
// .add("qrank", "https://qrank.wmcloud.org/download/qrank.csv.gz", sourcesDir.resolve("qrank.csv.gz")).run();
132+
// Downloader.create(planetiler.config()).add("ne", neUrl, nePath)
133+
// .add("qrank", "https://qrank.wmcloud.org/download/qrank.csv.gz", sourcesDir.resolve("qrank.csv.gz")).run();
135134

136135
var tmpDir = nePath.resolveSibling(nePath.getFileName() + "-unzipped");
137136
var naturalEarthDb = NaturalEarthDb.fromSqlite(nePath, tmpDir);
138-
// var qrankDb = QrankDb.fromCsv(sourcesDir.resolve("qrank.csv.gz"));
137+
// var qrankDb = QrankDb.fromCsv(sourcesDir.resolve("qrank.csv.gz"));
139138
var qrankDb = QrankDb.empty();
140139

141140
planetiler.setProfile(new Basemap(naturalEarthDb, qrankDb)).setOutput(Path.of(area + ".pmtiles"))

0 commit comments

Comments
 (0)