{"id":46469021,"url":"https://github.com/ljramones/trips","last_synced_at":"2026-03-06T06:01:36.739Z","repository":{"id":49797734,"uuid":"252825890","full_name":"ljramones/trips","owner":"ljramones","description":"A stellar cartography system","archived":false,"fork":false,"pushed_at":"2026-03-04T19:19:52.000Z","size":298764,"stargazers_count":17,"open_issues_count":1,"forks_count":3,"subscribers_count":8,"default_branch":"master","last_synced_at":"2026-03-05T01:36:41.275Z","etag":null,"topics":["astronomy","java","java17","javafx","science-fiction","space","spring-boot","trips"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ljramones.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2020-04-03T19:49:28.000Z","updated_at":"2026-03-04T19:19:56.000Z","dependencies_parsed_at":"2023-01-20T04:00:56.760Z","dependency_job_id":null,"html_url":"https://github.com/ljramones/trips","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/ljramones/trips","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljramones%2Ftrips","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljramones%2Ftrips/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljramones%2Ftrips/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljramones%2Ftrips/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ljramones","download_url":"https://codeload.github.com/ljramones/trips/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljramones%2Ftrips/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30164530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T04:43:31.446Z","status":"ssl_error","status_checked_at":"2026-03-06T04:40:30.133Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["astronomy","java","java17","javafx","science-fiction","space","spring-boot","trips"],"created_at":"2026-03-06T06:00:42.843Z","updated_at":"2026-03-06T06:01:35.697Z","avatar_url":"https://github.com/ljramones.png","language":"Java","readme":"# Terran Republic Interstellar Plotter System\n\n## Introduction\n\nTRIPS (Terran Interstellar Plotter System) is a JavaFX-based 3D stellar cartography application for visualizing and plotting interstellar routes. It combines Spring Boot for backend services with JavaFX for 3D visualization, using an embedded H2 database for persistence.\n\nOrigins: Initially developed with Chuck Gannon to help visualize the stellar neighborhood for his Caine Riordan series. See [charlesegannon.com](https://charlesegannon.com).\n\n**Key capabilities:**\n- View and edit stellar data in tabular form\n- Plot stars in an interactive 3D visualization\n- Plan interstellar routes using graph algorithms\n- Explore solar systems with orbital visualization\n- Generate procedural planets with realistic terrain\n- Import data from major astronomical catalogs (Gaia, SIMBAD, VizieR)\n- Use for scientific research or science fiction world-building\n\n---\n\n## Prerequisites\n\n- **Java 25** (Eclipse Temurin recommended)\n- **Maven** (or use the included `mvnw-java25.sh` wrapper)\n- **Docker** — required for running integration tests (the project uses [Testcontainers](https://testcontainers.com/) with PostgreSQL for database testing). Docker Desktop or a compatible runtime must be running before you execute `mvn test` or `mvn install`. To skip tests: `./mvnw-java25.sh clean install -DskipTests`\n\n## Building\n\n```bash\n# Build the project\n./mvnw-java25.sh clean install\n\n# Build without tests (no Docker required)\n./mvnw-java25.sh clean install -DskipTests\n\n# Run the application\ncd tripsapplication\n../mvnw-java25.sh spring-boot:run\n```\n\n### Packaging for Distribution\n\n```bash\n# macOS (.dmg installer)\n./mvnw-java25.sh clean package -Pjpackage-mac\n\n# Windows (.exe installer)\n./mvnw-java25.sh clean package -Pjpackage-win\n```\n\nOutput is written to `tripsapplication/target/jpackage/`. See the [Packaging Guide](PACKAGING.md) for more details.\n\n### macOS Application Data\n\nWhen running as a packaged macOS application, TRIPS stores all data under `~/Library/Application Support/TRIPS/`. For example, for a user named `jsmith`:\n\n```\n/Users/jsmith/Library/Application Support/TRIPS/\n├── data/\n│   └── tripsdb.mv.db          # H2 database\n├── files/\n│   ├── programdata/            # Application preferences and saved state\n│   └── scriptfiles/            # Groovy scripts\n```\n\nLogs are written to `~/Library/Logs/TRIPS/terranrepublicviewer.log`.\n\nTo reset the application to a clean state, delete the `~/Library/Application Support/TRIPS/` directory.\n\n## Quick Start\n\n- [Installation](docs/INSTALLATION.md)\n- [Running TRIPS](docs/RUNNING.md)\n- [User Manual](docs/user-manual/README.md)\n\n## Documentation Map\n\n- [Features](docs/FEATURES.md)\n- [Architecture and Technical Docs](docs/ARCHITECTURE.md)\n- [Data Workbench Guide](DataWorkbench.md)\n- [Packaging Guide](PACKAGING.md)\n\n## Contributing\n\n- [Helping with programming](https://github.com/ljramones/trips/wiki/Helping-With-Programming)\n- [Helping with documentation](https://github.com/ljramones/trips/wiki/Documentation-Process)\n- [Contributing](CONTRIBUTING.md)\n- [Code of Conduct](CODE_OF_CONDUCT.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fljramones%2Ftrips","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fljramones%2Ftrips","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fljramones%2Ftrips/lists"}