# is-geotiff

> Super Light and Fast Method for Checking if a TIFF is a GeoTIFF

Latest version **0.0.1** (published 2020-11-17) · CC0-1.0 license · 0 weekly downloads

## Install

```sh
npm install is-geotiff
pnpm add is-geotiff
yarn add is-geotiff
bun add is-geotiff
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2020-11-17 |
| First published | 2020-11-17 |
| Weekly downloads | 0 |
| License | CC0-1.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.6 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Daniel J. Dufour |
| Maintainers | danieljdufour |
| Keywords | geotiff, tiff |

## Links

- npm: https://www.npmjs.com/package/is-geotiff
- Repository: https://github.com/GeoTIFF/is-geotiff
- Homepage: https://github.com/GeoTIFF/is-geotiff#readme
- Issues: https://github.com/GeoTIFF/is-geotiff/issues
- npm.io page: https://npm.io/package/is-geotiff

## Dependencies (1)

- [has-bytes](https://npm.io/package/has-bytes.md) 0.0.2

## Recent versions

- 0.0.1 (latest) — 2020-11-17

## README

# is-geotiff
Super Light and Fast Method for Checking if a TIFF is a GeoTIFF

# install
```bash
npm install is-geotiff
```

# usage
```js
const fs = require("fs");
const isGeoTIFF = require("is-geotiff");

const buffer = fs.readFileSync("./example.tiff");

const { result } = isGeoTIFF({
    data: buffer,
    debug: false // set debug to true for increased logging
});
// result is true
```

---
_Source: https://npm.io/package/is-geotiff · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
