https://github.com/ngageoint/geopackage-csv-js
GeoPackage CSV Converter
https://github.com/ngageoint/geopackage-csv-js
converter csv geopackage
Last synced: 5 days ago
JSON representation
GeoPackage CSV Converter
- Host: GitHub
- URL: https://github.com/ngageoint/geopackage-csv-js
- Owner: ngageoint
- Created: 2022-04-06T22:56:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-28T18:25:04.000Z (almost 3 years ago)
- Last Synced: 2024-04-28T10:06:35.536Z (over 1 year ago)
- Topics: converter, csv, geopackage
- Language: JavaScript
- Homepage: http://ngageoint.github.io/geopackage-csv-js/
- Size: 297 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## @ngageoint/geopackage-csv-js — Convert your CSV to a GeoPackage
This utility will convert between CSV and GeoPackage using the NGA GeoPackage JS library.
### Installation ###
[](https://www.npmjs.com/package/@ngageoint/geopackage-csv-js)
```sh
$ npm install @ngageoint/geopackage-csv-js
```### Usage
#### Command Line
```sh
./cli /path/to/file/to/convert.csv /path/to/file/to/create.gpkg
```#### Javascript
```javascript
const { CSVToGeoPackage } = require('@ngageoint/geopackage-csv-js');
const csvFile = './test.csv';
const geoPackageFile = './test.gpkg';
const tableName = 'features';// Convert CSV to GeoPackage feature table
const converter = new CSVToGeoPackage();
converter.convert({ csv: csvFile, geoPackage: geoPackageFile, tableName: tableName }).then(() => {
console.log('File conversion complete');
console.log('Converted %s to %s', csvFile, geoPackageFile);
});// Extract CSV from GeoPackage feature table
converter.extract(geoPackageFile, tableName).then(csv => {
console.log('Extracted CSV.');
})
```#### GeoPackage JS Library ####
The [GeoPackage Libraries](http://ngageoint.github.io/GeoPackage/) were developed at the [National Geospatial-Intelligence Agency (NGA)](http://www.nga.mil/) in collaboration with [BIT Systems](http://www.bit-sys.com/). 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](http://choosealicense.com/licenses/mit/).
### 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.
### Changelog
##### 4.1.0
- Update to GeoPackage JS 4.1.0.