Skip to content

Commit 786bf98

Browse files
committed
Fix package name cases
1 parent 7e5efbc commit 786bf98

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

doc/ecosystem.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PyGMT provides a Python interface to the Generic Mapping Tools (GMT), which is a
44
line program that provides a wide range of tools for manipulating geospatial data and
55
making publication-quality maps and figures. PyGMT integrates well with the
66
[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
88
raster grids/images/cubes I/O.
99

1010
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
2525
Fourier transforms, basic linear algebra, basic statistical operations, random simulation
2626
and much more.
2727

28-
#### Pandas
28+
#### pandas
2929

3030
[pandas][] is a Python package providing fast, flexible, and expressive data structures
3131
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
5454

5555
[GeoPandas][] is an open source project to make working with geospatial data in Python
5656
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.
5959

6060
PyGMT doesn't directly rely on GeoPandas, but provides support of GeoPandas's data
6161
structure, {class}`geopandas.GeoDataFrame` and {class}`geopandas.GeoSeries`, which can
6262
be directly used in data processing and plotting functions/methods of PyGMT.
6363

64-
#### Contextily
64+
#### contextily
6565

6666
[contextily][] is a small Python package to retrieve tile maps from the internet. It can
6767
add those tiles as basemap to matplotlib figures or write tile maps to disk into
@@ -71,10 +71,10 @@ Spheric Mercator (EPSG:3857).
7171
In PyGMT, {func}`pygmt.datasets.load_tile_map` and {class}`pygmt.Figure.tilemap` rely
7272
on it.
7373

74-
#### RioXarray
74+
#### rioxarray
7575

7676
[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
7878
arrays with geospatial attributes such as coordinate reference systems (CRS) and spatial extent
7979
(bounds).
8080

0 commit comments

Comments
 (0)