0.12.9 • Published 4 years ago

mongoose-geojson-schemas v0.12.9

Weekly downloads
63
License
MIT
Repository
github
Last release
4 years ago

mongoose-geojson-schemas

Build Status Dependencies Status npm version

mongoose schema to support GeoJSON fields.

Note: All geojson types will added as single-embedded document(sub-schema) and 2dsphere indexed

Requirements

Install

$ npm install --save mongoose mongoose-geojson-schemas

Usage

const { Schema } = require('mongoose');
const {
  Point,
  LineString,
  Polygon,
  MultiPoint,
  MultiLineString,
  MultiPolygon,
  Geometry,
  GeometryCollection
} = require('mongoose-geojson-schemas');

...

const Shop = new Schema({
  name: { type: String, required: true }
  location: Point
});

...

const Road = new Schema({
  name: { type: String, required: true }
  footpath: LineString
});

...

const Farm = new Schema({
  owner: { type: String, required: true }
  boundary: Polygon
});

...

const Dump = new Schema({
  name: { type: String, required: true }
  area: MultiPoint
});

...

const Rail = new Schema({
  name: { type: String, required: true }
  ways: MultiLineString
});

...

const Jurisdiction = new Schema({
  name: { type: String, required: true }
  boundaries: MultiPolygon
});

...

const Shape = new Schema({
  name: { type: String, required: true }
  form: Geometry
});

...

const Trash = new Schema({
  name: { type: String, required: true }
  pile: GeomentryCollection
});

...

Testing

  • Clone this repository

  • Install all development dependencies

$ npm install
  • Then run test
$ npm test

References

Contribute

It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.

Licence

The MIT License (MIT)

Copyright (c) 2018 lykmapipo & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.12.9

4 years ago

0.12.8

4 years ago

0.12.7

4 years ago

0.12.6

4 years ago

0.12.5

4 years ago

0.12.4

4 years ago

0.12.3

4 years ago

0.12.2

4 years ago

0.12.1

4 years ago

0.12.0

4 years ago

0.11.13

4 years ago

0.11.12

4 years ago

0.11.11

4 years ago

0.11.10

4 years ago

0.11.9

4 years ago

0.11.8

4 years ago

0.11.7

4 years ago

0.11.6

4 years ago

0.11.5

4 years ago

0.11.4

4 years ago

0.11.2

4 years ago

0.11.3

4 years ago

0.11.1

4 years ago

0.10.19

4 years ago

0.11.0

4 years ago

0.10.18

4 years ago

0.10.16

4 years ago

0.10.15

4 years ago

0.10.14

5 years ago

0.10.13

5 years ago

0.10.12

5 years ago

0.10.11

5 years ago

0.10.10

5 years ago

0.10.9

5 years ago

0.10.8

5 years ago

0.10.7

5 years ago

0.10.6

5 years ago

0.10.5

5 years ago

0.10.4

5 years ago

0.10.3

5 years ago

0.10.2

5 years ago

0.10.1

5 years ago

0.10.0

5 years ago

0.9.1

5 years ago

0.9.0

5 years ago

0.8.2

5 years ago

0.8.1

6 years ago

0.8.0

6 years ago

0.7.1

6 years ago

0.7.0

6 years ago

0.6.0

6 years ago

0.5.0

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago