Skip to content
This repository has been archived by the owner on Dec 3, 2018. It is now read-only.

Updated to use mapnik 3.4.9 #1481

Merged
merged 2 commits into from
Oct 15, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

### 0.3.2

- Updated to use node-mapnik 3.4.9
- Vector tile sizes reduced due to removing repeated points in polylines and multi-polylines
- Simplify distance reduced from 8 to 4 causing vector tiles that are created to be LESS simplified
- Fixed various bugs with CSVs
- Various Vector Tile creation speed improvements

### 0.3.1

- Updated to use node-mapnik 3.4.7
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mapbox-studio",
"version": "0.3.1",
"version": "0.3.2",
"main": "./index",
"author": "Mapbox (https://www.mapbox.com)",
"engines": {
Expand Down Expand Up @@ -32,13 +32,14 @@
"js-yaml": "https://github.com/mapbox/js-yaml/tarball/scalar-styles",
"fstream": "1.0.x",
"tar": "2.1.x",
"mapnik": "3.4.8",
"mapnik-reference": "~8.5.0",
"mapnik": "3.4.9",
"mapnik-reference": "~8.5.1",
"carto": "0.15.3",
"tilelive": "~5.9.0",
"tilelive-bridge": "~1.6.0",
"tilelive-bridge": "~2.1.0",
"tilelive-vector": "~3.5.0",
"mapnik-omnivore": "~6.3.0",
"gdal": "0.7.0",
"abaculus": "1.2.1",
"mapbox-machine-styles": "2.3.1",
"mapbox-studio-pro-fonts": "https://mapbox-npm.s3.amazonaws.com/package/mapbox-studio-pro-fonts-1.0.0-9870a90b713f307b9391829602f4d5857e419615.tgz",
Expand Down
2 changes: 1 addition & 1 deletion test/expected/fontfamilies.json
Original file line number Diff line number Diff line change
Expand Up @@ -599,4 +599,4 @@
"Tisa SC Offc Pro Light Italic",
"Tisa SC Offc Pro Thin Italic"
]
}
}
4 changes: 2 additions & 2 deletions test/expected/source-export-reprojected-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"id": "NZ_Coastline_NZMG",
"description": "",
"fields": {
"featurecla": "String",
"scalerank": "Number"
"scalerank": "Number",
"featurecla": "String"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not expected. @flippmoke can you try to track down what caused this?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@springmeyer that the json switched order?

}
}
],
Expand Down
2 changes: 1 addition & 1 deletion test/source-reproject.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ test('source.mbtilesExport: verify reprojected export', function(t) {
src._db.get('select count(1) as count, sum(length(tile_data)) as size from tiles;', function(err, row) {
t.ifError(err);
t.equal(row.count, 19);
t.equal(row.size, 3301);
t.equal(row.size, 3386);
check([
[0,0,0],
[1,1,1],
Expand Down
2 changes: 1 addition & 1 deletion test/source.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ test('source.mbtilesExport: verify export', function(t) {
src._db.get('select count(1) as count, sum(length(tile_data)) as size from tiles;', function(err, row) {
t.ifError(err);
t.equal(row.count, 5461);
t.equal(row.size, 376847);
t.equal(row.size, 377696);
check([
[0,0,0],
[1,0,0],
Expand Down