mkluczek commited on
Commit
560815d
·
verified ·
1 Parent(s): b712c8c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -1
README.md CHANGED
@@ -31,7 +31,13 @@ size_categories:
31
  ## Example Use
32
  Interface scripts are available at
33
  ```python
34
- import numpy as np
 
 
 
 
 
 
35
 
36
  ```
37
 
 
31
  ## Example Use
32
  Interface scripts are available at
33
  ```python
34
+ import geopandas as gpd
35
+
36
+ gdf_pq = gpd.read_parquet("MT_grid_10km_world.parquet")
37
+ gdf_pq.head(5)
38
+
39
+ gdf_gpkg = gpd.read_file("MT_grid_10km_world.gpkg", layer="MT")
40
+ gdf_gpkg.head(5)
41
 
42
  ```
43