npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

geojson-geometry-objects

v1.0.7

Published

GeoJSON Geometry Objects, easily turn into BSON/JSON representation

Downloads

90

Readme

GeoJSON Geometry Objects

The GeoJSON format, as the name suggests, is a format in which geospatial information can be uniformly represented using JavaScript Object Notation (JSON).

Among other implementations, the format is used by MongoDB geospatial queries, which is what lead to this module, as while the format is easy to comprehend, it also carries something that kept feeling a bit off; the latitude/longitude ordering. The common reference to anything using latitude/longitude seems to prefer latitude over longitude, where GeoJSON uses longitude then latitude. Simple to understand, simple to mess up.

This module was created to easily change between the GeoJSON format and a JSON format which expresses the latitude/longitude as named keys to an object, removing the need for order interpretation.

Installation

The GeoJSON Geometry Objects module is a scoped package, which means the scope has to be used during both installation and use of the module.

$ npm install --save geojson-geometry-objects

Usage

Like the installation, the scope also must be specified when using the module

const GeoJSON = require('geojson-geometry-object');
const point = GeoJSON.Point.from([5.9117305, 51.9748942]);
const same = GeoJSON.Point.from({
	latitude: 51.9748942,
	longitude: 5.9117305
});

API

The module offers ES6 classes which are based on the GeoJSON specification.

All GeoJSON types inherit from the Position object, which implements the coordinates property available in all types.

Common interface

| property | type | description | | ------------- | ------ | ------------------------------------------------------------------------------- | | type | string | The instance type (usable both statically and as instance property) | | coordinates | Array | The GeoJSON coordinates | | rules | Array | An array containing the validation and factory rules used by from and valid |

| method | arguments | returns | description | | -------- | ----------- | --------- | -------------------------------------------------------------------------------------------------------------------------------- | | valid | coordinates | boolean | Are the provided coordinates usable to create an instance | | from | coordinates | instance | Validate the provided coordinates and construct a new instance if so, throws an Error if the coordinates did not pass validation | | toBSON | | object | The instance represented as BSON (the JSON-like format MongoDB uses), this format adheres to the GeoJSON format | | toJSON | | object | The instance represented as JSON using the keyed object notation |

Point

The GeoJSON Point implementation, where the coordinates represent a single position with at least latitude and longitude, optionally also an altitude

| property | type | value | | ------------- | ------ | ----------------------------------------------------------------- | | type | string | 'Point' | | latitude | number | The latitude provided during creation | | longitude | number | The longitude provided during creation | | altitude | number | The altitude provided during creation (undefined if not provided) | | coordinates | array | The longitude, latitude and optionally altitude of the Point |

MultiPoint

The GeoJSON MultiPoint implementation, where the coordinates represent an array of positions.

| property | type | value | | ------------- | ------ | -------------------------- | | type | string | 'MultiPoint' | | coordinates | array | Array of Point instances |

LineString

The GeoJSON LineString implementation, where the coordinates represent a line consisting of two or more positions.

| property | type | value | | ------------- | ------ | -------------------------- | | type | string | 'LineString' | | coordinates | array | Array of Point instances |

MultiLineString

The GeoJSON MultiLineString implementation, where the coordinates represent multiple LineStrings

| property | type | value | | ------------- | ------ | ------------------------------- | | type | string | 'MultiLineString' | | coordinates | array | Array of LineString instances |

Polygon

The GeoJSON Polygon implementation, where the coordinates represent a surface expressed with a Linear Ring (a "closed" MultiLineString)

| property | type | value | | ------------- | ------ | ----------------------------------------- | | type | string | 'Polygon' | | coordinates | array | Array with a single LinearRing instance |

MultiPolygon

The GeoJSON MultiPolygon implementation, where the coordinates represent multiple surfaces. The first surface describes the outer surface and any following surface describes a hole in the outer surface.

| property | type | value | | ------------- | ------ | ------------------------------- | | type | string | 'MultiPolygon' | | coordinates | array | Array of LinearRing instances |

GeometryCollection

The GeoJSON GeometryCollection implementation, representing one or more GeoJSON types. The representation uses the geometries property instead of coordinates, indicating the purpose of the class.

| property | type | value | | ------------- | ------ | ---------------------------------------------------------------------------------------------------------- | | type | string | 'GeometryCollection' | | coordinates | array | Array of Point, MultiPoint, LineString, MultiLineString, Polygon and/or MultiPolygon instances |

Helpers

Some helper classes which are not GeoJSON types but useful to have access to.

Position

The base for all GeoJSON types is the Position class (reference), this is also the lowest level of classes exposed by GeoJSON Geometry Objects module, it is not intended to be used directly (altough one can) but as generic means to test for inheritance (e.g. instanceof Position);

The Position class is what actually facilitates the coordinates property.

Linear Ring

While not an actual GeoJSON type, a 'Linear Ring' is a closed MultiLineString as used by Polygon. The difference is that the LinearRing class actually verifies the first and last points to be identical ("closed") as rules for the valid and from methods.

Mapper

The Mapper is a simple object which accepts the types you wish to map into GeoJSON objects, it verifies wether the types passed in are instances of Position and lets you map any of those types into the appropriate GeoJSON types (if valid - obviously)

| method | arguments | description | | ----------- | --------- | ------------------------------------------------------------------------------------------------------- | | candidate | {*} | Obtain the first GeoJSON type capable of handling the provided value, if any | | valid | {*} | Determine whether any GeoJSON type registered with the Mapper is capable of handling the provided value | | map | {*} | Map the provided value into a GeoJSON type, if no type is capable of handling it, throws an Error |

License

MIT License Copyright (c) 2019 Rogier Spieker

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.