Skip to content

Commit ff18947

Browse files
committed
docsting updated
1 parent 012601d commit ff18947

File tree

1 file changed

+19
-8
lines changed
  • xcube_resampling/gridmapping

1 file changed

+19
-8
lines changed

xcube_resampling/gridmapping/base.py

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,28 @@ class GridMapping(abc.ABC):
6262
This class cannot be instantiated directly. Use one of its factory methods
6363
to create instances:
6464
65-
* `regular`
66-
* `regular_from_bbox`
67-
* `from_dataset`
68-
* `from_coords`
65+
- `regular`
66+
- `regular_from_bbox`
67+
- `from_dataset`
68+
- `from_coords`
6969
7070
Some instance methods can be used to derive new instances:
7171
72-
* `derive`
73-
* `scale`
74-
* `transform`
75-
* `to_regular`
72+
- `derive`
73+
- `scale`
74+
- `transform`
75+
- `to_regular`
76+
77+
Notes:
78+
79+
- `x` : eastward axis in CRS coordinates
80+
- `y` : northward axis in CRS coordinates
81+
- `i` : eastward axis in pixel space
82+
- `j` : northward axis in pixel space
83+
84+
References:
85+
CF Conventions — Coordinate types:
86+
https://cfconventions.org/Data/cf-conventions/cf-conventions-1.13/cf-conventions.html#coordinate-types
7687
"""
7788

7889
def __init__(

0 commit comments

Comments
 (0)