diff -r 853ab74421c1 -r 103b093f9895 readme.rst --- a/readme.rst Thu Feb 16 17:19:10 2017 +0200 +++ b/readme.rst Thu Feb 16 17:21:25 2017 +0200 @@ -59,10 +59,9 @@ ~~~~~~~~~~~~ To read data from a system, you need create a class that describes you system. This is very simple if your lidar data are in the Licel format, as you only need to specify -the external file with the extra SCC parameters. You can use as an example the file “cf_netcdf_parameters.py”: +the external file with the extra SCC parameters. You can use as an example the file ``cf_netcdf_parameters.py``: .. code-block:: python - :caption: cf_lidar.py from licel import LicelLidarMeasurement import cf_netcdf_parameters @@ -70,7 +69,7 @@ class CfLidarMeasurement(LicelLidarMeasurement): extra_netcdf_parameters = cf_netcdf_parameters -This code assumes that the "cf_netcdf_parameters" is in your python path. +This code assumes that the ``cf_netcdf_parameters.py`` is in your python path. Using the class ~~~~~~~~~~~~~~~