Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@airemad/stations

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@airemad/stations

List of the measurement stations available in Madrid

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
increased by16.67%
Maintainers
1
Weekly downloads
 
Created
Source

@airemad/stations

List of the measurement stations available in Madrid

npm version license downloads Known Vulnerabilities

About

List of the measurement stations available in Madrid

❤️ Awesome Features:

  • Zero dependencies 🥷
  • Out of the box simple Interface. 🔥
  • Based on Json Schemas 🧐
  • Easy to use and great test coverage ✅

Installation

npm install @airemad/stations

Usage

Get All Stations

const { getAll } = require('@airemad/stations')

const stations = getAll()
console.log(stations)
/*
[
    ...,
    {
        "id": "86",
        "uuid": "271a6e0a-9d62-49cd-a772-57c1b492441f",
        "name": "Tres Olivos",
        "altitude": 715,
        "coordinates": {
            "ed50": [40.5005555555556, -3.68972222222222],  // Lat, Lon
            "wgs84": [40.5005477, -3.6897308]               // Lat, Lon
        },
        "additionDate": "2010-02-08",                       //Format: YEAR-MM-DD
        "isActive": true,
        "isAcustic": true,
        "acusticAvailableValues": ["LAEQ", "LAS01", "LAS10", "LAS50", "LAS90", "LAS99"]
    }
]
*/

Get specific station

const { getStationById } = require('@airemad/stations')

const station = getStationById('0086') // 86, '86', '000086' ...
console.log(station)
/*
{
  "id": "86",
  ....
}
*/

const inventedStation = getStationById('999999')
console.log(inventedStation) // null

Built With

Development only:

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the GNU AGPL3.0 License - see the LICENSE.md file for details

Data sources

We use Madrid Datos Abiertos:

Keywords

FAQs

Package last updated on 29 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc