Skip to content

TeX version of current REC #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "ivoatex"]
path = ivoatex
url = https://github.com/ivoa-std/ivoatex
34 changes: 34 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# ivoatex Makefile. The ivoatex/README for the targets available.

# short name of your document (edit $DOCNAME.tex; would be like RegTAP)
DOCNAME = VOEvent

# count up; you probably do not want to bother with versions <1.0
DOCVERSION = 2.0

# Publication date, ISO format; update manually for "releases"
DOCDATE = 2011-07-11

# What is it you're writing: NOTE, WD, PR, REC, PEN, or EN
DOCTYPE = REC

# An e-mail address of the person doing the submission to the document
# repository (can be empty until a make upload is being made)
AUTHOR_EMAIL=

# Source files for the TeX document (but the main file must always
# be called $(DOCNAME).tex
SOURCES = $(DOCNAME).tex role_diagram.pdf

# List of image files to be included in submitted package (anything that
# can be rendered directly by common web browsers)
FIGURES = role_diagram.svg

# List of PDF figures (figures that must be converted to pixel images to
# work in web browsers).
VECTORFIGURES =

# Additional files to distribute (e.g., CSS, schema files, examples...)
AUX_FILES =

include ivoatex/Makefile
53 changes: 51 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# doc-template
document template
![VOEvent version](https://img.shields.io/badge/VOEvent-REC--2.0-yellow.svg)
[![Creative Commons License](https://i.creativecommons.org/l/by-sa/4.0/80x15.png)](http://creativecommons.org/licenses/by-sa/4.0/)


# VOEvent Sky Event Reporting Metadata

## What is it?

VOEvent: **V**irtual **O**bservatory **Event** Sky Event Reporting Metadata

VOEvent defines the content and meaning of a standard information packet for
representing, transmitting, publishing and archiving information about a
transient celestial event, with the implication that timely follow-up is of
interest. The objective is to motivate the observation of targets-of-opportunity,
to drive robotic telescopes, to trigger archive searches, and to alert the
community. VOEvent is focused on the reporting of photon events, but events
mediated by disparate phenomena such as neutrinos, gravitational waves, and
solar or atmospheric particle bursts may also be reported.

## Status?

The last stable version is
**[REC-2.0](http://www.ivoa.net/documents/VOEvent/)**.

The next version is prepared in this repository.
_It is not yet finalized and so, should not be considered
yet as stable for operational implementation._

See also the section
[Releases](https://github.com/ivoa-std/VOEvent/releases) of this GitHub Repository.

## Want to contribute?

1. [Raise a GitHub Issue](https://github.com/ivoa-std/VOEvent/issues/new) on this
repository

2. Fork this repository _(eventually clone it on your machine if you want to)_

3. Create a branch in your forked repository ; this branch should be named after the issue(s) to fix (for instance: `issue-7-add-license`)

4. Commit suggested changes inside this branch

5. Create a Pull Request on the official repository _(note: a `git push` is needed first, if you are working on a clone)_

6. Wait for someone to review your Pull Request and accept it

_This process has been described and demonstrated during the IVOA Interoperability Meeting of Oct. 2019 in Groningen ; see [slides](https://wiki.ivoa.net/internal/IVOA/InterOpOct2019GitHub/IVOA_Github.pdf))_


# License


<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
<img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a>
Expand Down
Loading