AIRCentre / SARProcessing.jl

MIT License
31 stars 3 forks source link

Format docstrings #62

Closed visr closed 1 year ago

visr commented 1 year ago

This has 3 commits.

It removes unused dependencies.

It declare ArchGDAL 0.10 compat, fixes #50.

Formats docstrings. Docstrings are by default in Markdown. I noticed that often the docstrings were formatted like this:

"""
get_burst_numbers(image::Sentinel1SLC)

    Returns list of burst included in the image subset
"""

The first line is now formatted as text and the last line is formatted as code due to the indent. So I flipped them around:

"""
    get_burst_numbers(image::Sentinel1SLC)

Returns list of burst included in the image subset
"""

Along with some other Markdown formatting. I didn't touch any code. There are some diffs on the code however since my editor trims trailing whitespace by default, sorry about that.