Skip to content
/ geomesa Public
forked from locationtech/geomesa

GeoMesa is a suite of tools for working with big geo-spatial data in a distributed fashion.

License

Apache-2.0, Unknown licenses found

Licenses found

Apache-2.0
LICENSE.txt
Unknown
COPYING
Notifications You must be signed in to change notification settings

a0x8o/geomesa

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

GeoMesa manual documentation

This is not the GeoMesa documentation itself, but rather notes on how to build it.

Setup

The documentation is built using Python's Sphinx module. It is tested to work with Python 3.10.

Installing Sphinx and its dependencies in a Python virtualenv:

$ virtualenv .sphinx && source .sphinx/bin/activate
$ pip install -r requirements.txt

Alternatively use sudo with the pip command to install the packages in the system Python distribution.

$ sudo pip install -r requirements.txt

Optional: if you want to build the PDF version of the manual, install LaTeX:

# on Ubuntu
$ sudo apt-get install texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended latexmk

The LaTeX distribution is pretty big, so you can skip it if you're just interested in the HTML docs. You will also need make.

Building

To build HTML versions of the manuals:

$ mvn clean install -Pdocs -pl docs

If you do not have Sphinx installed the manual will not be built. The outputted files are written to the target/html directory.

To view the docs, use the provided docs-server.sh script (requires Docker), then browse to http://localhost:8080:

$ ./docs/docs-server.sh

To build a PDF version:

$ mvn clean install -Pdocs,latex
$ cd target/latex
$ make

There may be some errors during the LaTeX build; just press Enter when it prompts for input. It should build the whole document. If the table of contents doesn't render properly, delete GeoMesa.pdf and run make again.

To build a single HTML file containing all two manuals:

$ mvn clean install -Pdocs,singlehtml

About

There are currently two main manuals: the User Manual (user) and Tutorials (tutorials).

In each manual, the root page of the documentation is index.rst. Any static files included go in the _static directory.

The files themselves are written in reStructuredText (RST) and have *.rst extensions. Markdown files are also supported but do not support any of Docutils or Sphinx's special directives (cross-references, admonitions, variable substitution, etc.).

For the most part, the syntax of RST is pretty similar to Markdown. Two particular sticking points are links and code blocks. Inline links should be written like this:

`Link text <http://example.com/>`_

The final underscore is important!

Code blocks should always be indented with 4 spaces, and prefixed with the .. code-block:: language directive:

.. code-block:: scala

    val ds = new DataStore()

To include an image, copy it into _static/img and use the following:

.. image:: _static/img/name-of-file

You can also specify options for how to use the various directives. For example, this adds line numbers to a code block:

.. code-block:: scala
    :linenos:

    val ds = new DataStore()

See the Sphinx reStructuredText Primer for more information.

About

GeoMesa is a suite of tools for working with big geo-spatial data in a distributed fashion.

Topics

Resources

License

Apache-2.0, Unknown licenses found

Licenses found

Apache-2.0
LICENSE.txt
Unknown
COPYING

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Scala 82.3%
  • C++ 14.7%
  • C 1.9%
  • Java 0.5%
  • Python 0.2%
  • Yacc 0.2%
  • Other 0.2%