Giter VIP home page Giter VIP logo

noaa-buoys's Introduction

noaa-buoys

All active and inactive* NOAA tide buoys.

*but still reporting some computed data

Usage

yarn add noaa-buoys
// or
npm install --save noaa-buoys

This package exports a function to find the nearest buoys to a given location, as well as the list of buoys themselves.

import buoys, { findNearestBuoys, Buoy } from "noaa-buoys";

const tz: string[] = buoys.map((buoy: Buoy) => buoy.timeZones); // get all buoy timezones

const nearestBuoys: Buoy = findNearestBuoys({
  location: {
    latitude: 44.210265,
    longitude: -69.065552,
  },
  units: "metric",
  numBuoys: 1,
  stations: buoys.filter((buoy: Buoy) => buoy.isActive), // optional, defaults to the entire list of buoys
});

buoys

You can import the entire list of buoys with import buoys from 'noaa-buoys'.

A single buoy is an object with the following params:

{
  id: string; // NOAA buoy ID
  name: string; // NOAA station name
  secondaryName: string; // some NOAA stations have long / descriptive names, those are added here
  state: string | null; // US state or territory (null if non-US)
  stateAbbrev: string | null; // US state abbrev (null if non-US or US outlying island)
  country: string; // full country name
  latitude: number; // in degrees,decimal minutes
  longitude: number; // in degrees,decimal minutes
  type: "tide" | "current"; // the type of station
  timeZone: string; // tz database timezone
  isActive: boolean; // whether or not the station is still in use
}

findNearestBuoys

Returns a given number of the nearest buoys to a given location.

findNearestBuoys({
  location: {
    latitude: number // a given latitude in decimal degrees
    longitude: number, // a given longitude in decimal degrees
  },
  units: 'metric' | 'english', // 'english' is what NOAA uses for imperial in their co-ops data api
  numBuoys: number, // the number of nearby buoys to return. defaults to the entire list of buoys (3054)
  stations: Buoy[] // OPTIONAL -- a list of buoys to search against. defaults to the entire list of noaa-buoys
})

noaa-buoys's People

Contributors

gretzky avatar

Watchers

 avatar

Forkers

linz8

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.