Skip to content

Commit 42cf2ba

Browse files
authoredJun 21, 2024··
Merge pull request #110 from marujore/master
Fix URLs in Documentation
2 parents 26a758e + c622eb9 commit 42cf2ba

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
 

‎Py6S/Params/atmosprofile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ def FromLatitudeAndDate(cls, latitude, date):
3737
"""Automatically pick the atmospheric profile based on the latitude
3838
and date.
3939
40-
Based on the table provided at http://www.exelisvis.com/docs/FLAASH.html
40+
Based on the table provided at https://www.nv5geospatialsoftware.com/docs/FLAASH.html
4141
"""
4242
dt = dateutil.parser.parse(date, dayfirst=True)
4343

4444
rounded_lat = round(latitude, -1)
4545

46-
# Data from Table 2-2 in http://www.exelisvis.com/docs/FLAASH.html
46+
# Data from Table 2-2 in https://www.nv5geospatialsoftware.com/docs/FLAASH.html
4747
SAW = cls.PredefinedType(cls.SubarcticWinter)
4848
SAS = cls.PredefinedType(cls.SubarcticSummer)
4949
MLS = cls.PredefinedType(cls.MidlatitudeSummer)

‎doc/source/audience.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Py6S is an interface to the Second Simulation of the Satellite Signal in the Sol
55

66
The best resources to gain some familiarity with these topics are:
77

8-
* A basic remote sensing textbook for information on the use of Radiative Transfer Models (look in your local academic library)
9-
* The original paper on 6S by `Vermote et al <http://www2.geog.ucl.ac.uk/~mdisney/teaching/PPRS/papers/vermote_etal_IEEE_1997.pdf>`_
10-
* The 6S manual, particularly the first section which introduces the conceptual basis of the model (the later parts document each function in the original Fortran code, which may be less useful), `here <http://6s.ltdri.org/pages/manual.html>`_.
8+
* A basic remote sensing textbook for information on the use of Radiative Transfer Models (look in your local academic library)
9+
* The original paper on 6S by `Vermote et al <https://ieeexplore.ieee.org/document/581987>`_
10+
* The 6S manual, particularly the first section which introduces the conceptual basis of the model (the later parts document each function in the original Fortran code, which may be less useful), `here <https://ltdri.org/6spage.html>`_.
1111

1212
Py6S is a Python module, so you will need to have a basic understanding of Python programming to use the model. Don't worry too much though - you can use the model without being a Python expert! Some good tutorials for basic Python programming include `LearnPython <http://www.learnpython.org/>`_ and the `Google Python class <https://developers.google.com/edu/python/>`_.

‎doc/source/installation.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ the environment, which you should now do. You can now skip to `Testing Py6S`_.
1717

1818
If you don't already have ``conda`` installed then:
1919

20-
#. Install either `Miniconda <https://conda.io/miniconda.html>`_ or `Anaconda <https://www.continuum.io/downloads>`_.
20+
#. Install either `Miniconda <https://conda.io/miniconda.html>`_ or `Anaconda <https://www.anaconda.com/download>`_.
2121
These are two different distributions of Python, both of which include
2222
the ``conda`` package manager. Miniconda comes with the 'bare minimum' of Python, conda and
2323
a few essential libraries, whereas Anaconda comes with many libraries required for data science
@@ -83,8 +83,8 @@ Python modules
8383
* ``pandas`` (optional: only required for importing AERONET data)
8484
* ``ipython`` (recommended)
8585

86-
An easy way to sort all of this out is to use
87-
`Anaconda <https://www.continuum.io/downloads>`_ or the `Enthought Python
86+
An easy way to sort all of this out is to use
87+
`Anaconda <https://www.anaconda.com/download>`_ or the `Enthought Python
8888
Distribution <http://enthought.com/products/epd.php>`_, either of which will install
8989
Python plus many modules which are often used for scientific computing.
9090

0 commit comments

Comments
 (0)
Please sign in to comment.