Giter Club home page Giter Club logo

oin-meta-generator's Introduction

Metadata Generator for OIN

The Open Imagery Network standardizes on a single format for imagery. This small CLI tool generates a JSON string of the standard metadata for a given OIN geo image.

Dependencies

You must have GDAL installed.

Installation

  • $ npm install

Usage

Usage: oin-meta-generator [args] <file>

Options:
  -u, --uuid                 Source UUID
  -t, --title                Source title
  -a, --acquisition-start    Acquisition start date
  -A, --acquisition-end      Acquisition end date
  -p, --provider             Provider / owner
  -P, --platform             Imagery platform (satellite, aircraft, UAV, etc.)
  -c, --contact              Data provider contact info
  -U, --uploaded-at          Date uploaded
  -m, --additional-metadata  Additional metadata (sensor=WV3, etc.)
  --help, -h                 Show help                                 [boolean]
  --version, -V              Show version number                       [boolean]

Sample:

$ oin-meta-generator \
  -u "http://oam-uploader.s3.amazonaws.com/uploads/2015-08-18/55d3b052f885a1bb0221434b/scene/0/scene-0-image-0-NE1_50M_SR.tif" \
   -t "Natural Earth Image" \
   -a "2015-04-01T00:00:00.000Z" \
   -A "2015-04-30T00:00:00.000Z" \
   --platform "satellite" \
   --provider "Natural Earth" \
   -c "Ziggy,[email protected]" \
   -m "sensor=Some Algorithm" \
   -m "thumbnail=http://oam-uploader.s3.amazonaws.com/uploads/2015-08-18/55d3b052f885a1bb0221434b/scene/0/scene-0-image-0-NE1_50M_SR.tif.thumb.png" \
   -m "license=CC-BY 4.0" \
   -m "tags=tropical, paradise" \
    NE1_50M_SR.tif | jq .
{
  "uuid": "http://oam-uploader.s3.amazonaws.com/uploads/2015-08-18/55d3b052f885a1bb0221434b/scene/0/scene-0-image-0-NE1_50M_SR.tif",
  "title": "Natural Earth Image",
  "platform": "satellite",
  "provider": "Natural Earth",
  "contact": "Ziggy,[email protected]",
  "properties": {
    "sensor": "Some Algorithm",
    "thumbnail": "http://oam-uploader.s3.amazonaws.com/uploads/2015-08-18/55d3b052f885a1bb0221434b/scene/0/scene-0-image-0-NE1_50M_SR.tif.thumb.png",
    "license": "CC-BY 4.0",
    "tags": "tropical, paradise"
  },
  "acquisition_start": "2015-04-01T00:00:00.000Z",
  "acquisition_end": "2015-04-30T00:00:00.000Z",
  "file_size": 1149210,
  "projection": "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0],UNIT[\"degree\",0.0174532925199433],AUTHORITY[\"EPSG\",\"4326\"]]",
  "gsd": 0.03333333333333333,
  "bbox": [
    128.99999999999997,
    29.000000000000004,
    146,
    54
  ],
  "footprint": "POLYGON((128.99999999999997 54,146 54,146 29.000000000000004,128.99999999999997 29.000000000000004,128.99999999999997 54))"
}

Testing

Run npm test

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.