{"id":13797906,"url":"https://github.com/fdesjardins/notams","last_synced_at":"2025-04-03T21:38:17.299Z","repository":{"id":39636885,"uuid":"67897336","full_name":"fdesjardins/notams","owner":"fdesjardins","description":"Fetch NOTAMs (Notices to Airmen) using Node.js","archived":false,"fork":false,"pushed_at":"2023-02-27T22:43:22.000Z","size":744,"stargazers_count":34,"open_issues_count":10,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-14T22:12:49.991Z","etag":null,"topics":["aerodromes","airmen","airports","alerts","aviation","notams","notices","warnings","weather"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fdesjardins.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-09-10T22:22:46.000Z","updated_at":"2024-02-19T23:53:48.000Z","dependencies_parsed_at":"2024-01-13T11:13:02.988Z","dependency_job_id":"aa034f8d-d4a8-4a5d-a583-cc439e65f498","html_url":"https://github.com/fdesjardins/notams","commit_stats":{"total_commits":110,"total_committers":2,"mean_commits":55.0,"dds":0.009090909090909038,"last_synced_commit":"e11ea274b9f7f9f4dca19166871b108e043d38ee"},"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fdesjardins%2Fnotams","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fdesjardins%2Fnotams/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fdesjardins%2Fnotams/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fdesjardins%2Fnotams/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fdesjardins","download_url":"https://codeload.github.com/fdesjardins/notams/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247085971,"owners_count":20881157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aerodromes","airmen","airports","alerts","aviation","notams","notices","warnings","weather"],"created_at":"2024-08-04T00:00:36.141Z","updated_at":"2025-04-03T21:38:17.280Z","avatar_url":"https://github.com/fdesjardins.png","language":"JavaScript","funding_links":[],"categories":["Flight planning"],"sub_categories":["NOTAMS"],"readme":"# DEPRECATED: notams\n\nFetch NOTAMs (Notices to Airmen) from https://pilotweb.nas.faa.gov using Node.js\n\n⚠️ This project is deprecated. The FAA has unfortunately prevented the ability to easily retrieve notams.\n\n[![NPM Version][npm-image]][npm-url]\n[![Build Status][travis-image]][travis-url]\n[![Coverage][coveralls-image]][coveralls-url]\n[![Maintainability][code-climate-image]][code-climate-url]\n\n## Installation\n\n```\n$ npm install --save notams\n```\n\n## Usage\n\n```js\nnotams.fetch([ 'PADK', 'PADU' ], { format: 'DOMESTIC' }).then(results =\u003e {\n  console.log(JSON.stringify(results, null, 2))\n})\n```\n\n### Output\n\n```json\n[\n  {\n    \"icao\": \"PADK\",\n    \"notams\": [\n      \"!ADK 04/008 ADK NAV DME NOT MNT 1904170731-1905081400EST\\n\",\n      \"!ADK 04/007 ADK NAV NDB NOT MNT 1904130039-1905101500EST\\n\",\n      \"!FDC 9/2641 ADK SPECIAL ADAK, Adak Island, AK.\\nILS OR LOC/DME RWY 23, AMDT 2...\\nS-ILS DA NA.\\n1901091550-2101091548EST\\n\"\n    ]\n  },\n  {\n    \"icao\": \"PADU\",\n    \"notams\": [\n      \"!DUT 05/018 DUT TWY ALL FICON WET OBS AT 1905051946. 1905051946-1905061946\\n\",\n      \"!DUT 05/017 DUT APRON ALL FICON WET OBS AT 1905051946. 1905051946-1905061946\\n\",\n      \"!DUT 05/016 DUT RWY 31 FICON 5/5/5 100 PCT WET OBS AT 1905051945. 1905051945-1905061945\\n\",\n      \"!DUT 05/015 DUT RWY 13 FICON 5/5/5 100 PCT WET OBS AT 1905051945. 1905051945-1905061945\\n\",\n      \"!DUT 04/123 DUT SVC AUTOMATED WX BCST SYSTEM OUT OF SERVICE 1904251718-1905111500EST\\n\"\n    ]\n  }\n]\n```\n\n## API\n\n### `notams(icaos, options)`\n\n### `notams.fetch(icaos, options)`\n\n#### `icaos`\n\nType: `string` or `array`\n\nValid values:\n\n- a single ICAO code\n- a comma-separated list of ICAO codes\n- an array of ICAO codes\n\n#### `options`\n\nType: `object`\n\n```js\n{ format: 'ICAO' }\n```\n\n##### `options.format`\n\nType: `string`\n\nValid values:\n\n- `DOMESTIC`\n- `ICAO`\n\n### `notams.fetchAllByType(type, format)`\n\n#### `type`\n\nType: `string`\n\nValid values:\n\n- `ALLTFR`\n- `ALLGPS`\n- `ALLCARF`\n- `ALLSPECIALNOTICES`\n\n\n#### `format`\n\nType: `string`\n\nValid values:\n\n- `DOMESTIC`\n- `ICAO`\n\n## Contributing\n\nContributions welcome!\n\n## License\n\nMIT © [Forrest Desjardins](https://github.com/fdesjardins)\n\n[npm-url]: https://www.npmjs.com/package/notams\n[npm-image]: https://img.shields.io/npm/v/notams.svg?style=flat\n[travis-url]: https://travis-ci.org/fdesjardins/notams\n[travis-image]: https://img.shields.io/travis/fdesjardins/notams.svg?style=flat\n[coveralls-url]: https://coveralls.io/r/fdesjardins/notams\n[coveralls-image]: https://img.shields.io/coveralls/fdesjardins/notams.svg?style=flat\n[code-climate-url]: https://codeclimate.com/github/fdesjardins/notams/maintainability\n[code-climate-image]: https://api.codeclimate.com/v1/badges/b20811df22b96f9dbdb1/maintainability\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffdesjardins%2Fnotams","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffdesjardins%2Fnotams","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffdesjardins%2Fnotams/lists"}