@ngageoint/geopackage

WebJar for @ngageoint/geopackage

License

License

MIT
Categories

Categories

Geo Business Logic Libraries Geospatial
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

ngageoint__geopackage
Last Version

Last Version

3.0.0-beta.1
Release Date

Release Date

Type

Type

jar
Description

Description

@ngageoint/geopackage
WebJar for @ngageoint/geopackage
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/ngageoint/geopackage-js

Download ngageoint__geopackage

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/ngageoint__geopackage/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>ngageoint__geopackage</artifactId>
    <version>3.0.0-beta.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/ngageoint__geopackage/
implementation 'org.webjars.npm:ngageoint__geopackage:3.0.0-beta.1'
// https://jarcasting.com/artifacts/org.webjars.npm/ngageoint__geopackage/
implementation ("org.webjars.npm:ngageoint__geopackage:3.0.0-beta.1")
'org.webjars.npm:ngageoint__geopackage:jar:3.0.0-beta.1'
<dependency org="org.webjars.npm" name="ngageoint__geopackage" rev="3.0.0-beta.1">
  <artifact name="ngageoint__geopackage" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='ngageoint__geopackage', version='3.0.0-beta.1')
)
libraryDependencies += "org.webjars.npm" % "ngageoint__geopackage" % "3.0.0-beta.1"
[org.webjars.npm/ngageoint__geopackage "3.0.0-beta.1"]

Dependencies

compile (25)

Group / Artifact Type Version
org.webjars.npm : reproject jar [1.2.5]
org.webjars.npm : image-size jar [0.8.3]
org.webjars.npm : file-type jar [12.4.0]
org.webjars.npm : rtree-sql.js jar [1.0.0]
org.webjars.npm : turf__polygon-to-line jar [6.0.3,7)
org.webjars.npm : canvas jar [2.6.0]
org.webjars.npm : turf__simplify jar [5.1.5,5.2)
org.webjars.npm : types__proj4 jar [2.5.0,3)
org.webjars.npm : turf__circle jar [6.0.1,7)
org.webjars.npm : types__geojson jar [7946.0.7,7947)
org.webjars.npm : turf__point-to-line-distance jar [6.0.0,7)
org.webjars.npm : turf__boolean-within jar [6.0.1,7)
org.webjars.npm : webworkify jar [1.1.0,2)
org.webjars.npm : better-sqlite3 jar [6.0.1]
org.webjars.npm : turf__helpers jar [6.1.4,7)
org.webjars.npm : turf__boolean-point-in-polygon jar [6.0.1,7)
org.webjars.npm : concat-stream jar [2.0.0]
org.webjars.npm : turf__line-intersect jar [6.0.2,7)
org.webjars.npm : turf__intersect jar [6.1.2,7)
org.webjars.npm : proj4 jar [2.6.0]
org.webjars.npm : wkx jar [0.4.8]
org.webjars.npm : turf__distance jar [6.0.1,7)
org.webjars.npm : turf__bbox jar [6.0.1]
org.webjars.npm : chalk Optional jar [1.1.3,2)
org.webjars.npm : inquirer Optional jar [1.0.2,2)

Project Modules

There are no modules declared in this project.

GeoPackage JS

GeoPackage JS is an implementation of the OGC GeoPackage spec. This library works in both the browser and Node 4+.

Demo

GeoPackage JS Demo Page

Cloning this repository and opening the docs/index.html in your browser will run the demo locally.

Installation

Build Status NPM Coverage Status

$ npm install @ngageoint/geopackage

GeoPackage JS Library

The GeoPackage Libraries were developed at the National Geospatial-Intelligence Agency (NGA) in collaboration with BIT Systems. The government has "unlimited rights" and is releasing this software to increase the impact of government investments by providing developers with the opportunity to take things in new directions. The software use, modification, and distribution rights are stipulated within the MIT license.

Pull Requests

If you'd like to contribute to this project, please make a pull request. We'll review the pull request and discuss the changes. All pull request contributions to this project will be released under the MIT license.

Software source code previously released under an open source license and then modified by NGA staff is considered a "joint work" (see 17 USC § 101); it is partially copyrighted, partially public domain, and as a whole is protected by the copyrights of the non-government authors and must be released according to the terms of the original open source license.

About

GeoPackage JS is a GeoPackage Library JavaScript implementation of the Open Geospatial Consortium GeoPackage spec. It is listed as an OGC GeoPackage Implementation by the National Geospatial-Intelligence Agency.

The GeoPackage JavaScript library currently provides the ability to read GeoPackage files. This library works both in the browser and in Node. In the browser tiles are rendered using HTML5 Canvas and GeoPackages are read using sql.js. In Node tiles are rendered PureImage and GeoPackages are read using node-sqlite3.

Changelog

2.1.0
  • Implementation of the Feature Style Extension and Contents ID Extension
2.0.8
  • Checks for Electron when returning a tile creator
2.0
  • All new API utilizing Promises
1.1.4
  • Adds a method to retrieve tiles in EPSG:4326
1.1.3
  • Fixes issue #115
1.1.2
  • fix case where GeoPackage Zoom does not correspond to the web map zoom
1.1.1
  • fix more instances of proj4 bug for react
  • fixed tile generation for images with different x and y pixel densities
1.1.0
  • accept pull request adding support for react
  • fix bug with projected tiles that spanned the date line
1.0.25
  • ensure we use proj4 2.4.3 instead of 2.4.4
1.0.22
  • Fixed bug where querying for indexed features only returned the geometry instead of the entire feature
1.0.19
  • Remove dependency on Lwip

Usage

View examples using Bower and Browserify

View the latest docs.

Browser Usage

// attach this method to a file input onchange event
window.loadGeoPackage = function(files) {
  var f = files[0];
  var r = new FileReader();
  r.onload = function() {
    var array = new Uint8Array(r.result);
    loadByteArray(array);
  }
  r.readAsArrayBuffer(f);
}

function loadByteArray(array, callback) {
  var db = new SQL.Database(array);
  GeoPackageConnection.connectWithDatabase(db, function(err, connection) {
    var geoPackage = new GeoPackage('', '', connection);

    // Now you can operate on the GeoPackage

    // get the tile table names
    geoPackage.getTileTables(function(err, tileTableNames) {
      // tileTableNames is an array of all tile table names

      // get the info for the first table
      geoPackage.getTileDaoWithTableName(tileTableNames[0], function(err, tileDao) {
        geoPackage.getInfoForTable(tileDao, function(err, info) {
          // do something with the tile table info
        });

        // draw a tile into a canvas for an XYZ tile
        var canvas = canvasFromSomewhere;
        var gpr = new GeoPackageTileRetriever(tileDao, 256, 256);
        var x = 0;
        var y = 0;
        var zoom = 0;

        console.time('Draw tile ' + x + ', ' + y + ' zoom: ' + zoom);
        gpr.drawTileIn(x, y, zoom, canvas, function() {
          console.timeEnd('Draw tile ' + x + ', ' + y + ' zoom: ' + zoom);
        });

        // or get a tile base64 data URL for an XYZ tile
        gpr.getTile(x, y, zoom, function(err, tileBase64DataURL) {
          console.log('got the base64 data url');
        });

        // or get a tile from a GeoPackage tile column and tile row
        tileDao.queryForTile(tileColumn, tileRow, zoom, function(err, tile) {
          var tileData = tile.getTileData();  // the raw bytes from the GeoPackage
        });

      });
    });

    // get the feature table names
    geoPackage.getFeatureTables(function(err, featureTableNames) {
      // featureTableNames is an array of all feature table names

      // get the info for the first table
      geoPackage.getFeatureDaoWithTableName(featureTableNames[0], function(err, featureDao) {
        geoPackage.getInfoForTable(featureDao, function(err, info) {
          // do something with the feature table info
        });

        // query for all features
        featureDao.queryForEach(function(err, row, rowDone) {
          var feature = featureDao.getFeatureRow(row);
          var geometry = currentRow.getGeometry();
          if (geometry) {
            var geom = geometry.geometry;
            var geoJson = geometry.geometry.toGeoJSON();

            geoJson.properties = {};
            for (var key in feature.values) {
              if(feature.values.hasOwnProperty(key) && key != feature.getGeometryColumn().name) {
                var column = info.columnMap[key];
                geoJson.properties[column.displayName] = currentRow.values[key];
              }
            }
          }
          rowDone();
        });
      });
    });
  });
}

NodeJS Usage

var GeoPackageAPI = require('@ngageoint/geopackage')
  , GeoPackageManager = GeoPackageAPI.GeoPackageManager
  , GeoPackageConnection = GeoPackageAPI.GeoPackageConnection
  , GeoPackageTileRetriever = GeoPackageAPI.GeoPackageTileRetriever;

GeoPackageAPI.open(filename, function(err, geoPackage) {

  // Now you can operate on the GeoPackage

  // get the tile table names
  geoPackage.getTileTables(function(err, tileTableNames) {
    // tileTableNames is an array of all tile table names

    // get the info for the first table
    geoPackage.getTileDaoWithTableName(tileTableNames[0], function(err, tileDao) {
      geoPackage.getInfoForTable(tileDao, function(err, info) {
        // do something with the tile table info
      });

      // draw a tile into a canvas for an XYZ tile
      var canvas = canvasFromSomewhere;
      var gpr = new GeoPackageTileRetriever(tileDao, 256, 256);
      var x = 0;
      var y = 0;
      var zoom = 0;

      console.time('Draw tile ' + x + ', ' + y + ' zoom: ' + zoom);
      gpr.drawTileIn(x, y, zoom, canvas, function() {
        console.timeEnd('Draw tile ' + x + ', ' + y + ' zoom: ' + zoom);
      });

      // or get a tile base64 data URL for an XYZ tile
      gpr.getTile(x, y, zoom, function(err, tileBase64DataURL) {
        console.log('got the base64 data url');
      });

      // or get a tile from a GeoPackage tile column and tile row
      tileDao.queryForTile(tileColumn, tileRow, zoom, function(err, tile) {
        var tileData = tile.getTileData();  // the raw bytes from the GeoPackage
      });

    });
  });

  // get the feature table names
  geoPackage.getFeatureTables(function(err, featureTableNames) {
    // featureTableNames is an array of all feature table names

    // get the info for the first table
    geoPackage.getFeatureDaoWithTableName(featureTableNames[0], function(err, featureDao) {
      geoPackage.getInfoForTable(featureDao, function(err, info) {
        // do something with the feature table info
      });

      // query for all features
      featureDao.queryForEach(function(err, row, rowDone) {
        var feature = featureDao.getFeatureRow(row);
        var geometry = currentRow.getGeometry();
        if (geometry) {
          var geom = geometry.geometry;
          var geoJson = geometry.geometry.toGeoJSON();

          geoJson.properties = {};
          for (var key in feature.values) {
            if(feature.values.hasOwnProperty(key) && key != feature.getGeometryColumn().name) {
              var column = info.columnMap[key];
              geoJson.properties[column.displayName] = currentRow.values[key];
            }
          }
        }
        rowDone();
      });
    });
  });
});
org.webjars.npm

National Geospatial-Intelligence Agency

Official organizational account for the NGA

Versions

Version
3.0.0-beta.1