pg_orrery/.gitignore
Ryan Malloy 15a830dc40 Initial implementation of pg_orbit PostgreSQL extension
6 custom types (tle, eci_position, geodetic, topocentric, observer,
pass_event), 67 SQL functions, 2 operators (&&, <->), and a GiST
operator class for altitude-band indexing. Wraps Bill Gray's sat_code
for SGP4/SDP4 propagation with WGS-72 constants for propagation and
WGS-84 for coordinate output. All 5 regression tests pass on PG 18.
2026-02-15 17:07:07 -07:00

20 lines
165 B
Plaintext

# Build artifacts
*.o
*.bc
*.so
*.dylib
# pg_regress output
regression.diffs
regression.out
results/
tmp_check/
log/
# Editor files
*.swp
*.swo
*~
.vscode/
.idea/