Skip to content

Commit

Permalink
## 4.4.0.8
Browse files Browse the repository at this point in the history
* Bug Fix
  * fix tile size computation for equirectangular OSMDrop sqlite map data
  • Loading branch information
takdeveloper committed Feb 9, 2022
1 parent 473a1b8 commit c7354c7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Version History

## 4.4.0.8

* Bug Fix
* fix tile size computation for equirectangular OSMDrop sqlite map data

## 4.4.0.7

* Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion atak/ATAK/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import java.util.regex.Pattern
buildscript {

ext.ATAK_VERSION = "4.4.0"
ext.ATAK_VERSION_SUBMINOR = ".7"
ext.ATAK_VERSION_SUBMINOR = ".8"

ext.jacocoVersion = '0.8.5'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ private static TileTableSpec createTileTableSpec(OSMDroidInfo osm) {
TileMatrix.ZoomLevel zLevelMin = new TileMatrix.ZoomLevel();
zLevelMin.level = osm.minLevel;
if(srid == 4326) {
zLevelMin.pixelSizeX = 180d / (double)(1<<zLevelMin.level);
zLevelMin.pixelSizeY = 180d / (double)(1<<zLevelMin.level);
zLevelMin.pixelSizeX = 180d / ((double)(1<<zLevelMin.level) * osm.tileWidth);
zLevelMin.pixelSizeY = 180d / ((double)(1<<zLevelMin.level) * osm.tileHeight);
} else {
zLevelMin.pixelSizeX = OSMUtils.mapnikTileResolution(zLevelMin.level);
zLevelMin.pixelSizeY = OSMUtils.mapnikTileResolution(zLevelMin.level);
Expand Down
Binary file modified depends/assimp-4.0.1-mod.tar.gz
Binary file not shown.
Binary file modified depends/gdal-2.4.4-mod.tar.gz
Binary file not shown.
Binary file modified depends/tinygltf-2.4.1-mod.tar.gz
Binary file not shown.
Binary file modified depends/tinygltfloader-0.9.5-mod.tar.gz
Binary file not shown.
Binary file modified pluginsdk.zip
Binary file not shown.

0 comments on commit c7354c7

Please sign in to comment.