About imo-vmdb ============== *imo-vmdb* processes visual meteor observation data from the `Visual Meteor Database (VMDB) `_ of the `International Meteor Organization (IMO) `_. What it does ------------ The IMO distributes observation data as CSV files. These raw files contain counts and times, but lack the derived quantities needed for most analyses. *imo-vmdb* imports the raw CSV data, validates it, and then *normalizes* it — enriching each observation with computed astronomical properties: * **Solar longitude** at the start and end of the observation * **Radiant position** (altitude and azimuth) with zenith attraction applied * **Sun position** (altitude and azimuth) * **Moon position** (altitude, azimuth) and illumination * **Field-of-view position** (altitude and azimuth) The statistical analysis itself happens outside *imo-vmdb*. The REST API provides machine-to-machine access to the prepared data — for example, from the `vismeteor `_ R package. Coordinate systems and time --------------------------- All observation times are handled in **UTC** (Coordinated Universal Time). Computed positions — solar longitude, radiant, Sun, Moon, and field-of-view — are calculated using the **J2000.0 epoch** (Julian epoch 2000 January 1.5 TT, equivalent to JD 2451545.0). Input right-ascension and declination values (e.g. shower radiant coordinates) must therefore also be referenced to J2000.0. Internally, *imo-vmdb* uses `Astropy `_ with the built-in solar-system ephemeris. The ecliptic frame is ``GeocentricMeanEcliptic`` with ``equinox='J2000'`` set explicitly; body positions from :func:`get_body` are in the GCRS frame, whose fundamental epoch is J2000 by definition. Accessing the data ------------------ Normalised data can be accessed in three ways: * **REST API** — query observations as JSON, filtered by shower, date range, solar longitude, and more; see :ref:`rest-api`. * **CSV export** — download tables directly from the web UI or CLI; see :ref:`csv-export`. * **SQLite export** — export the whole database to a single ``.sqlite`` file for direct SQL access; see :ref:`db-export`. Getting started --------------- * **Python (pipx)**: recommended for most users; see :ref:`setup`. * **Docker**: no Python required; see :ref:`setup`.