{"id":34717851,"url":"https://github.com/airsim/airtsp","last_synced_at":"2026-01-18T19:01:01.794Z","repository":{"id":1754393,"uuid":"2581424","full_name":"airsim/airtsp","owner":"airsim","description":"C++ Simulation Airline Travel Solution Provider Library","archived":false,"fork":false,"pushed_at":"2025-12-24T23:06:07.000Z","size":4703,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-12-26T12:40:14.050Z","etag":null,"topics":["airline","customer-choice","inventory-management","revenue-management","schedule-management","schedule-plans","simulation","travel-solution"],"latest_commit_sha":null,"homepage":"https://airsim.github.io/airtsp/","language":"CMake","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/airsim.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2011-10-15T11:35:59.000Z","updated_at":"2025-12-24T23:06:07.000Z","dependencies_parsed_at":"2025-03-30T23:31:20.396Z","dependency_job_id":null,"html_url":"https://github.com/airsim/airtsp","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/airsim/airtsp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airsim%2Fairtsp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airsim%2Fairtsp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airsim%2Fairtsp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airsim%2Fairtsp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/airsim","download_url":"https://codeload.github.com/airsim/airtsp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/airsim%2Fairtsp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28548938,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T14:59:57.589Z","status":"ssl_error","status_checked_at":"2026-01-18T14:59:46.540Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["airline","customer-choice","inventory-management","revenue-management","schedule-management","schedule-plans","simulation","travel-solution"],"created_at":"2025-12-25T01:15:59.564Z","updated_at":"2026-01-18T19:01:01.772Z","avatar_url":"https://github.com/airsim.png","language":"CMake","funding_links":[],"categories":[],"sub_categories":[],"readme":"C++ Simulated Airline Travel Solution Provider (TSP) Library\n============================================================\n\n# Summary\nAirTSP is also named AirTSP (TSP standing for Travel Service Provider).\nThat project aims at providing a clean API and a simple implementation,\nas a C++ library, of an Airline Schedule Management System. It is intended\nto be used in simulated environments only: it is not designed to work\nin the real-world of Airline IT operations.\n\nAirTSP/AirTSP makes an extensive use of existing open-source libraries\nfor increased functionality, speed and accuracy. In particular the\nBoost (C++ Standard Extensions: http://www.boost.org) library is used.\n\nAirTSP/AirTSP is the one of the components of the Travel Market Simulator\n(https://travel-sim.org). However, it may be used in a\nstand-alone mode.\n\n# Installation\n\n## On Fedora/CentOS/RedHat distribution\nJust use DNF:\n```bash\n$ dnf -y install airtsp-devel airtsp-doc\n```\n\nYou can also get the RPM packages (which may work on Linux\ndistributions like Suse and Mandriva) from the Fedora repository\n(_e.g._, for Fedora Rawhide,\nhttps://fr2.rpmfind.net/linux/RPM/fedora/devel/rawhide/x86_64/)\n\n\n## Building the library and test binary from Git repository\nThe Git repository may be cloned as following:\n```bash\n$ git clone git@github.com:airsim/airtsp.git airtspgit # through SSH\n$ git clone https://github.com/airsim/airtsp.git # if the firewall filters SSH\n$ cd airtspgit\n```\n\nThen, you need the following packages (Fedora/RedHat/CentOS names here, \nbut names may vary according to distributions):\n* stdair-devel\n* boost-devel / libboost-dev\n* python-devel / python-dev\n* gettext-devel / gettext-dev\n* sqlite3-devel / libsqlite3-dev\n* readline-devel / readline-dev\n* ncurses-devel\n* soci-mysql-devel, soci-sqlite3-devel\n* doxygen, ghostscript, graphviz\n* tetex-latex (optional)\n* rpm-build (optional)\n\n\n## Building the library and test binary from the tarball\nThe latest stable source tarball (`airtsp*.tar.gz` or `.bz2`) can be found here:\nhttps://github.com/airsim/airtsp/releases\n\nTo customise the following to your environment, you can alter the path\nto the installation directory:\n```bash\nexport INSTALL_BASEDIR=\"${HOME}/dev/deliveries\"\nexport AIRTSP_VER=\"1.01.17\"\n```\n\nThen, as usual:\n* To configure the project\n  * When dependencies are installed in standard directories (_e.g._, `/usr`):\n```bash\n  mkdir build \u0026\u0026 cd build\n  cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_BASEDIR}/airtsp-${AIRTSP_VER} \\\n   -DCMAKE_BUILD_TYPE:STRING=Debug -DENABLE_TEST:BOOL=ON \\\n   -DINSTALL_DOC:BOOL=ON -DRUN_GCOV:BOOL=OFF ..\n```\n  * When dependencies are installed in non-standard directories (_e.g._,\n    in the same base directory as of RMOL, that is, `${INSTALL_BASEDIR}`):\n```bash\n  mkdir build \u0026\u0026 cd build\n  cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_BASEDIR}/airtsp-${AIRTSP_VER} \\\n   -DWITH_STDAIR_PREFIX=${INSTALL_BASEDIR}/stdair-stable \\\n   -DCMAKE_BUILD_TYPE:STRING=Debug -DENABLE_TEST:BOOL=ON \\\n   -DINSTALL_DOC:BOOL=ON -DRUN_GCOV:BOOL=OFF ..\n```\n* To build the project, type:\n```bash\nmake\n```\n* To test the project, type:\n```bash\nmake check\n```\n* To install the library (`libairtsp*.so*`) and the binary (`airtsp`), just type:\n```bash\n  make install\n  cd ${INSTALL_BASEDIR}\n  rm -f airtsp-stable \u0026\u0026 ln -s airtsp-${AIRTSP_VER} airtsp-stable\n  cd -\n```\n* To package the source files, type:\n```bash\nmake dist\n```\n* To package the binary and the (HTML and PDF) documentation:\n```bash\nmake package\n```\n* To browse the (just installed, if enabled) HTML documentation:\n```bash\n  midori file://${INSTALL_BASEDIR}/airtsp-$AIRTSP_VER/share/doc/airtsp/html/index.html\n```\n* To browse the (just installed, if enabled) PDF documentation:\n```bash\n  evince ${INSTALL_BASEDIR}/airtsp-$AIRTSP_VER/share/doc/airtsp/html/refman.pdf\n```\n* To run the local binary version:\n```bash\n./airtsp/airtsp -b\n```\n* To run the installed version:\n```bash\n  ${INSTALL_BASEDIR}/airtsp-$AIRTSP_VER/bin/airtsp -b\n```\n\nDenis Arnaud\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fairsim%2Fairtsp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fairsim%2Fairtsp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fairsim%2Fairtsp/lists"}