@@ -4,7 +4,7 @@ PyGMT provides a Python interface to the Generic Mapping Tools (GMT), which is a
4
4
line program that provides a wide range of tools for manipulating geospatial data and
5
5
making publication-quality maps and figures. PyGMT integrates well with the
6
6
[ scientific Python ecosystem] ( https://scientific-python.org/ ) , with [ NumPy] [ ] for its
7
- fundamental array data structure, [ Pandas ] [ ] for tabular data I/O and [ Xarray] [ ] for
7
+ fundamental array data structure, [ pandas ] [ ] for tabular data I/O and [ Xarray] [ ] for
8
8
raster grids/images/cubes I/O.
9
9
10
10
In addition to these core dependencies, PyGMT also relies on several optional packages to
@@ -25,7 +25,7 @@ including mathematical, logical, shape manipulation, sorting, selecting, I/O, di
25
25
Fourier transforms, basic linear algebra, basic statistical operations, random simulation
26
26
and much more.
27
27
28
- #### Pandas
28
+ #### pandas
29
29
30
30
[ pandas] [ ] is a Python package providing fast, flexible, and expressive data structures
31
31
designed to make working with "relational" or "labeled" data both easy and intuitive.
@@ -54,14 +54,14 @@ PyGMT relies on IPython to provide a rich interactive experience in Jupyter note
54
54
55
55
[ GeoPandas] [ ] is an open source project to make working with geospatial data in Python
56
56
easier. GeoPandas extends the datatypes used by [ pandas] [ ] to allow spatial operations
57
- on geometric types. Geometric operations are performed by [ shapely ] [ ] . GeoPandas further
58
- depends on [ pyogrio] [ ] for file access and [ matplotlib ] [ ] for plotting.
57
+ on geometric types. Geometric operations are performed by [ Shapely ] [ ] . GeoPandas further
58
+ depends on [ pyogrio] [ ] for file access and [ Matplotlib ] [ ] for plotting.
59
59
60
60
PyGMT doesn't directly rely on GeoPandas, but provides support of GeoPandas's data
61
61
structure, {class}` geopandas.GeoDataFrame ` and {class}` geopandas.GeoSeries ` , which can
62
62
be directly used in data processing and plotting functions/methods of PyGMT.
63
63
64
- #### Contextily
64
+ #### contextily
65
65
66
66
[ contextily] [ ] is a small Python package to retrieve tile maps from the internet. It can
67
67
add those tiles as basemap to matplotlib figures or write tile maps to disk into
@@ -71,10 +71,10 @@ Spheric Mercator (EPSG:3857).
71
71
In PyGMT, {func}` pygmt.datasets.load_tile_map ` and {class}` pygmt.Figure.tilemap ` rely
72
72
on it.
73
73
74
- #### RioXarray
74
+ #### rioxarray
75
75
76
76
[ rioxarray] [ ] is a geospatial [ Xarray] [ ] extension powered by rasterio. Built on top of
77
- [ rasterio ] [ ] , it enables seamless reading, writing, and manipulation of multi-dimensional
77
+ [ Rasterio ] [ ] , it enables seamless reading, writing, and manipulation of multi-dimensional
78
78
arrays with geospatial attributes such as coordinate reference systems (CRS) and spatial extent
79
79
(bounds).
80
80
0 commit comments