You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

kosmorro.1.md 2.1 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # kosmorro(1) -- a program that computes the ephemerides
  2. ## SYNOPSIS
  3. `kosmorro`
  4. `kosmorro` [_OPTIONS_]...
  5. ## OPTIONS
  6. `-h`, `--help`
  7. show a help message and exit
  8. `--version`, `-v`
  9. show the program version
  10. `--clear-cache`
  11. delete all the files Kosmorro stored in the cache
  12. `--latitude=`_LATITUDE_, `-lat` _LATITUDE_
  13. the observer's latitude on Earth
  14. `--longitude=`_LONGITUDE_, `-lon` _LONGITUDE_
  15. the observer's longitude on Earth
  16. `--day=`_DAY_, `-d` _DAY_
  17. a number between 1 and 28, 29, 30 or 31 (depending on the month); the day you want to compute the ephemerides for, defaults to the current day
  18. `--month=`_MONTH_, `-m` _MONTH_
  19. a number between 1 and 12; the month you want to compute the ephemerides for, defaults to the current month
  20. `--year=`_YEAR_, `-y` _YEAR_
  21. the year you want to compute the ephemerides for; defaults to the current year
  22. `--timezone=`_TIMEZONE_, `-t` _TIMEZONE_
  23. the timezone to display the hours in; e.g. 2 for UTC+2 or -3 for UTC-3
  24. `--no-colors`
  25. disable the colors in the console
  26. `--output=`_OUTPUT_, `-o` _OUTPUT_
  27. a file to export the output to; if not given, the standard output is used
  28. `--format=`_FORMAT_, `-f` _FORMAT_
  29. the format under which the information have to be output; one of the following: text, json, pdf
  30. ## EXAMPLE
  31. Compute the ephemerides for Lille, France, on April 1st, 2022:
  32. ```
  33. kosmorro --latitude=50.5876 --longitude=3.0624 -d 1 -m 4 -y 2022
  34. ```
  35. Compute the ephemerides for Lille, France, on April 1st, 2022, and export them in a PDF document:
  36. ```
  37. kosmorro --latitude=50.5876 --longitude=3.0624 -d 1 -m 4 -y 2022 --format=pdf --output=file.pdf
  38. ```
  39. ## AUTHOR
  40. Written by Jérôme Deuchnord.
  41. ## REPORTING BUGS
  42. Please report any encountered bugs on Kosmorro's [GitHub project](https://github.com/Deuchnord/kosmorro).
  43. ## COPYRIGHT
  44. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.