sraimund commited on
Commit
5921897
1 Parent(s): 244a9c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -31,7 +31,7 @@ About 320 GB of space are required.
31
  ## How can the parquet files be read?
32
 
33
  You can read parquet files with [pandas](https://pandas.pydata.org/):
34
- ```
35
  import pandas as pd
36
 
37
  df = pd.read_parquet("<file_name>.parquet")
@@ -41,7 +41,7 @@ The pyarrow or fastparquet library is required additionally.
41
  ## How can the map images be downloaded?
42
 
43
  You can download the map images with [img2dataset](https://github.com/rom1504/img2dataset).
44
- ```
45
  from img2dataset import download
46
 
47
  download(
@@ -58,7 +58,7 @@ download(
58
  ```
59
  Windows users:
60
 
61
- ```
62
  import multiprocessing as mp
63
  from img2dataset import download
64
 
 
31
  ## How can the parquet files be read?
32
 
33
  You can read parquet files with [pandas](https://pandas.pydata.org/):
34
+ ```python
35
  import pandas as pd
36
 
37
  df = pd.read_parquet("<file_name>.parquet")
 
41
  ## How can the map images be downloaded?
42
 
43
  You can download the map images with [img2dataset](https://github.com/rom1504/img2dataset).
44
+ ```python
45
  from img2dataset import download
46
 
47
  download(
 
58
  ```
59
  Windows users:
60
 
61
+ ```python
62
  import multiprocessing as mp
63
  from img2dataset import download
64