Skip to content

Commit 7f3c8c5

Browse files
authored
Merge pull request #46 from TUDelftGeodesy/update_docs
Update docs
2 parents f7651e1 + 03552f7 commit 7f3c8c5

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ identifiers:
2626
- type: doi
2727
value: 10.5281/zenodo.7717112
2828
description: Zenodo
29-
repository-code: 'https://github.com/MotionbyLearning/sarxarray'
29+
repository-code: 'https://github.com/TUDelftGeodesy/sarxarray'
3030
keywords:
3131
- earth-observation
3232
- sar

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# SarXarray
22

33
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7717027.svg)](https://doi.org/10.5281/zenodo.7717027)
4-
[![License](https://img.shields.io/github/license/MotionbyLearning/sarxarray)](https://opensource.org/licenses/Apache-2.0)
4+
[![License](https://img.shields.io/github/license/TUDelftGeodesy/sarxarray)](https://opensource.org/licenses/Apache-2.0)
55
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/7980/badge)](https://www.bestpractices.dev/projects/7980)
6-
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=MotionbyLearning_sarxarray&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=MotionbyLearning_sarxarray)
7-
[![Build](https://github.com/MotionbyLearning/sarxarray/actions/workflows/build.yml/badge.svg)](https://github.com/MotionbyLearning/sarxarray/actions/workflows/build.yml)
6+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=TUDelftGeodesy_sarxarray&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=TUDelftGeodesy_sarxarray)
7+
[![Build](https://github.com/TUDelftGeodesy/sarxarray/actions/workflows/build.yml/badge.svg)](https://github.com/TUDelftGeodesy/sarxarray/actions/workflows/build.yml)
88

99
SARXarray is an open-source Xarray extension for Synthetic Aperture Radar (SAR) data. It is especially designed to work with large volume complex data, e.g. Single Look Complex (SLC) data, as well as derived products such as interferogram stacks.
1010

@@ -20,7 +20,7 @@ pip install sarxarray
2020
or from the source:
2121

2222
```sh
23-
git clone git@github.com:MotionbyLearning/sarxarray.git
23+
git clone git@github.com:TUDelftGeodesy/sarxarray.git
2424
cd sarxarray
2525
pip install .
2626
```
@@ -29,4 +29,4 @@ Note that Python version `>=3.10` is required for SARXarray.
2929

3030
## Documentation
3131

32-
For more information on usage and examples of SARXarray, please refer to the [documentation](https://motionbylearning.github.io/sarxarray/).
32+
For more information on usage and examples of SARXarray, please refer to the [documentation](https://tudelftgeodesy.github.io/sarxarray/).

docs/CONTRIBUTING.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SARXarray Contributing Guidelines
33

44

5-
We welcome any kind of contribution to our software, from simple comment
5+
We welcome any kind of contribution to our software, from a simple comment
66
or question to a full fledged [pull request](https://help.github.com/articles/about-pull-requests/).
77
Please read and follow our [Code of Conduct](./CODE_OF_CONDUCT.md).
88

@@ -16,30 +16,30 @@ The sections below outline the steps in each case.
1616

1717
## You have a question
1818

19-
- use the search functionality [here](https://github.com/MotionbyLearning/sarxarray/issues)
19+
- use the search functionality in [GitHub issue](https://github.com/TUDelftGeodesy/sarxarray/issues)
2020
to see if someone already filed the same issue;
21-
- if your issue search did not yield any relevant results, make a new issue;
22-
- apply the "question" label; apply other labels when relevant.
21+
- if your issue search did not yield any relevant results, create a new issue;
22+
- add the "question" label; include other labels when relevant.
2323

2424
## You think you may have found a bug
2525

26-
- use the search functionality [here](https://github.com/MotionbyLearning/sarxarray/issues) to see if someone already filed the same issue;
27-
- if your issue search did not yield any relevant results, make a new issue, making sure to provide enough information to the rest of the community to understand the cause and context of the problem. Depending on the issue, you may want to include:
26+
- use the search functionality in [GitHub issue](https://github.com/TUDelftGeodesy/sarxarray/issues) to see if someone already filed the same issue;
27+
- if your issue search did not yield any relevant results, create a new issue, making sure to provide enough information to the rest of the community to understand the cause and context of the problem. Depending on the issue, you may want to include:
2828
- the [SHA hashcode](https://help.github.com/articles/autolinked-references-and-urls/#commit-shas>) of the commit that is causing your problem;
2929
- some identifying information (name and version number) for dependencies you're using;
3030
- information about the operating system;
31-
- apply relevant labels to the newly created issue.
31+
- add relevant labels to the newly created issue.
3232

3333
## You want to make some kind of change to the code base
3434

3535
- (**important**) announce your plan to the rest of the community *before you start working*. This announcement should be in the form of a (new) issue;
3636
- (**important**) wait until some kind of consensus is reached about your idea being a good idea;
37-
- if needed, fork the repository to your own Github profile and create your own feature branch off of the latest master commit. While working on your feature branch, make sure to stay up to date with the master branch by pulling in changes, possibly from the 'upstream' repository (follow the instructions [here](https://help.github.com/articles/configuring-a-remote-for-a-fork/) and [here](https://help.github.com/articles/syncing-a-fork/));
38-
- make sure the existing tests still work. First, install the development dependencies as `pip install .[dev]`, and then run `pytest tests`;
37+
- if needed, fork the repository to your own Github profile and create your own feature branch off of the latest master commit. While working on your feature branch, make sure to stay up to date with the master branch by pulling in changes, possibly from the 'upstream' repository (follow the instructions from GitHub: [instruction 1: configuring a remote for a fork](https://help.github.com/articles/configuring-a-remote-for-a-fork/) and [instruction 2: syncing a fork](https://help.github.com/articles/syncing-a-fork/));
38+
- make sure the existing tests still work by running, e.g. `pytest tests`;
3939
- add your own tests (if necessary);
40-
- update or expand the documentation. Make sure the documentation is built successfully: first, install documentation dependencies as `pip install .[docs]` and then run `mkdocs build`.
40+
- update or expand the documentation;
4141
- make sure the linting tests pass by running `ruff` in the project root directory: `ruff check .`;
42-
- [push](http://rogerdudler.github.io/git-guide/) your feature branch to (your fork of) the SARXarray repository on GitHub;
43-
- create the pull request, e.g. following the instructions [here](https://help.github.com/articles/creating-a-pull-request/).
42+
- [push](http://rogerdudler.github.io/git-guide/) your feature branch to (your fork of) the sarxarray repository on GitHub;
43+
- create the pull request, e.g. following [the instructions: creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
4444

4545
In case you feel like you've made a valuable contribution, but you don't know how to write or run tests for it, or how to generate the documentation: don't let this discourage you from making the pull request; we can help you! Just go ahead and submit the pull request, but keep in mind that you might be asked to append additional commits to your pull request.

examples/demo_sarxarray.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"To execute this notebook, fiest clone the `sarxarray` repostory to your local:\n",
3232
"\n",
3333
"```sh\n",
34-
"git clone git@github.com:MotionbyLearning/sarxarray.git\n",
34+
"git clone git@github.com:TUDelftGeodesy/sarxarray.git\n",
3535
"```\n",
3636
"\n",
3737
"Then get into the repository directory:\n",

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
site_name: SARXarray Documentation
2-
repo_url: https://github.com/motionbylearning/sarxarray/
2+
repo_url: https://github.com/TUDelftGeodesy/sarxarray/
33
repo_name: SARXarray
44

55
nav:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ classifiers=[
3535
]
3636

3737
[project.urls]
38-
repository = "https://github.com/MotionbyLearning/sarxarray"
38+
repository = "https://github.com/TUDelftGeodesy/sarxarray"
3939
doi = "https://doi.org/10.5281/zenodo.7717112"
40-
documentation = "https://motionbylearning.github.io/sarxarray/"
41-
changelog = "https://motionbylearning.github.io/sarxarray/CHANGELOG/"
40+
documentation = "https://tudelftgeodesy.github.io/sarxarray/"
41+
changelog = "https://tudelftgeodesy.github.io/sarxarray/CHANGELOG/"
4242

4343
[project.optional-dependencies]
4444
dev = [

0 commit comments

Comments
 (0)