Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit 171881a

Browse files
committed
update readme
1 parent 3c62803 commit 171881a

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ [email protected]
1717

1818
This is a Python module for working with Sentinel-1 satellite images, purly in Python. It allows you to find the images you want, download them and work with them (calibrate, speckle fitler etc.).. I use the SentinelSAT package for the metadata. The data is then downloaded from NASA ASF.
1919

20+
Why? Because I don't to work with ESA SNAP. Also, in this was it is easier to have my entire workflow in Python..
21+
22+
I make no guarantees for the quality, security or anything. Use it as you wish.
2023

2124

2225

@@ -55,7 +58,7 @@ This is a Python module for working with Sentinel-1 satellite images, purly in P
5558
# Install and Run
5659
<a class="anchor" id="Install-and-Run"></a>
5760

58-
This repo can be installed using either git clone OR pypi.. Currently, I have only placed in pypi-test, so lets hope it stays there..
61+
This repo can be installed using either git clone OR pypi.. Currently, I have only placed it in pypi-test, so lets hope it stays there..
5962

6063

6164
**Using Pypi**
@@ -70,7 +73,7 @@ python3 -m pip install sentinel-1-python --extra-index-url=https://test.pypi.org
7073

7174
**Using clone**
7275

73-
1. Install all requirments
76+
1. Install all requirements
7477

7578
2. Clone
7679
```
@@ -138,6 +141,9 @@ img = img.boxcar(5) #could easily make, e.g., a Lee filter..
138141
img.simple_plot(band_index=0)
139142
```
140143

144+
<img src="figs/calibrate.png" width="450" align="center">
145+
146+
141147
we can now exctract a region of the image, defined by either index or coordinate set.
142148
```python
143149
indx = img.get_index(lat=57.0047,long=19.399)
@@ -147,7 +153,7 @@ img[indx[0]-125:indx[0]+125,indx[1]-125:indx[1]+125].simple_plot(band_index=1)
147153

148154
------------
149155

150-
<img src="figs/calibrate.png" width="450" align="center">
156+
151157

152158
## SAR satellites <a class="anchor" id="sar"></a>
153159
Go back to [Table of Content](#content)
@@ -207,7 +213,8 @@ Eigil Lippert
207213
# Licence
208214
See License file. In short:
209215

210-
1. Cite me in your work! something like: Kristian Aalling Sørensen, 2022, [email protected]
216+
1. Cite me in your work! something like:
217+
Kristian Aalling Sørensen (2020) sentinel_1_python [Source code]. https://github.com/aalling93/sentinel_1_python. email: [email protected]
211218
2. Get as many as possible to follow me on Github. You and your colleagues who use this at the very least. I am a like-hunter.
212219
3. Star this repository, conditioned to the same as above.
213220
4. Maybe write me an email or two, telling me how amazing job I did?

0 commit comments

Comments
 (0)