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

gpx-noise-generator

v0.0.2

Published

A CLI tool to apply random noise to the position data in a GPX file.

Downloads

3

Readme

gpx-noise-generator Latest Stable Version Total Downloads

A CLI tool to apply random noise to the position data in a GPX file.

Table of Contents

Purpose

This tool enables random noise to be applied to a GPX file in order to simulate varying levels of GPS noise that occur when reading position data from GPS receivers in the real-world.

donate

I dedicate a considerable amount of my free time to developing and maintaining my Open Source software. To help ensure this tool is kept updated, new features are added and bugfixes are implemented quickly, please donate a couple of dollars (or a little more if you can stretch) as this will help me to afford to dedicate time to its maintenance. Please consider donating if you're using this tool in an app that makes you money, if you're being paid to make the app, if you're asking for new features or priority bug fixes.

Behaviour

  • The tool takes CLI arguments enabling you to specify an input GPX file on your local filesystem and optionally a different filename to write the resulting output to.
  • It iterates over each position point (wpt/rtept/trkpt) and applies random noise to their lat/lon values based on the configured probability/min/max values.
  • If probability dictates that noise should be applied to a point, the random noise factor will be evaluated independently for the lat vs lon values (i.e. they are unlikely to have the same noise factor).

Installation

npm install -g gpx-noise-generator

Usage

Once gpx-noise-generator is installed globally, it can be run from anywhere:

$ gpx-noise-generator

By default (with no options specified), it will display usage info.

Command-line options

-h or --help

$ gpx-noise-generator -h
$ gpx-noise-generator --help

Displays usage information.

-v or --version

$ gpx-noise-generator -v
$ gpx-noise-generator --version

Displays currently installed version of this module.

-i or --input

Filepath of the source GPX file

$ gpx-noise-generator --input=/path/to/my.source.gpx

-o or --output

Filepath to write the output GPX file (containing noise). If not specified, the output filepath will be the source GPX filepath with .noisy appended as the file extension, For example if the input name is foo/my.gpx then the output filename will be foo/my.gpx.noisy

$ gpx-noise-generator --input=/path/to/my.source.gpx --output=/path/to/my.target.gpx

--probability

Probability that noise will be applied to any given point in the GPX file. Defaults to 100% if not specified.

Since this probability is evaluated for each point in the file, the overall number of points to which noise was applied will only approximate to the input value.

$ gpx-noise-generator --probability=50

--max

Maximum noise in degrees to apply to a given point. Defaults to 1 degree if not specified.

Specifies the maximum amount in degrees by which the existing value can be modified. e.g. if lat="50.0" and --max=1, the resulting noise value will be between lat="49.0" and lat="51.0".

$ gpx-noise-generator --max=1

--min

Minimum noise in degrees to apply to a given point. Defaults to 0 degrees if not specified.

Specifies the minimum amount in degrees by which the existing value can be modified. e.g. if lat="50.0" and --min=1 --max=2, the resulting noise value will be between lat="48.0" and lat="49.0" or between lat="51.0" and lat="52.0".

$ gpx-noise-generator --min=1

--verbose

Displays detailed log output.

$ gpx-noise-generator --verbose

--debug

Displays debug log output.

$ gpx-noise-generator --debug

Example usage

$ gpx-noise-generator --input=/path/to/my.source.gpx --output=/path/to/my.target.gpx --probability=50 --min=5 --max=10

License

The MIT License

Copyright (c) 2020 Dave Alden / Working Edge Ltd.

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.