Git Product home page Git Product logo

atmdata's People

Contributors

junzis avatar xoolive avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

atmdata's Issues

aircraft type/manufacturer

ICAO data for aircraft type and manufacturer as in

can be scraped as follows (in R, similarly in other languages ๐Ÿ˜„):

library(httr)
library(jsonlite)
library(dplyr)
library(stringr)
library(readr)
library(tidyr)
library(here)

httr::POST("https://www4.icao.int/doc8643/External/AircraftTypes") %>%
  httr::content(as = "text") %>%
  fromJSON() %>%
  dplyr::as_tibble() %>%
  # strip white spaces
  dplyr::mutate_if(is.character, .funs = stringr::str_trim) %>%
  readr::write_csv(here::here("data-raw", "aircraft-type_ICAO.csv"))

POST("https://www4.icao.int/doc8643/External/Manufacturers") %>%
  httr::content(as = "text") %>%
  httr::fromJSON() %>%
  dplyr::as_tibble() %>%
  tidyr::unnest(cols = "Names") %>%
  dplyr::mutate_if(is.character, .funs = stringr::str_trim) %>%
  dplyr::distinct() %>%
  readr::write_csv(here::here("data-raw", "manufacturer_ICAO.csv"))

There is no mention on forbidden/restricted use and robots.txt seems not to forbid too:

User-agent: *
Disallow: /Meetings/Registration/*
Disallow: /ESAF/reg/*
Disallow: /Transfer
Disallow: /demo
Disallow: */Search/*
Disallow: */_layouts/*
Disallow: */Forms/*
Disallow: */mobile/*
Disallow: /CZIR/*
Disallow: /Security/mrtd/*
Disallow: /secretariat/PostalHistory/*
Disallow: /CAFICS/*

There is also https://doc8643.com/ (and a more comprehensive one [but in Russian] http://airwar.ru/) with pictures, technical data, minimalistic performace table and drawing.

(some) ICAO24 et al. from regional monitoring agencies

For the list of RMAs (Regional Monitoring Agencies) see "States and designated RMAs" see
https://www.eurocontrol.int/service/european-regional-monitoring-agency

Some of them could be used to scrape hex, regno, ao; for example
https://www.eurocontrol.int/rmalive/operatorList.do

The Middle East Monitoring Agency's Approvals page is well done and data seems easy to get:

Others have medieval sites and/or data (or no public access)

airports

great idea.
Here are a few possible (possibly open) source of airport data:

  • https://ourairports.com/
  • openstreatmap (some efforts to extract pure data, but rwy, arp, stands, gates et al. could be extracted; see example from Xavier's traffic library)
  • https://www.wikidata.org/ IMHO a trove of data also for aviation in general

code snippets of data download

I was thinking, in line with issue #2, that it could be cool to present code snippets to retrieve some of the data we list in the sources.
Many examples may be available using Xavier's traffic library...

For me the goal would ultimately be to be able to provide usable datasets directly...so let's collect the recipes!

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.