Skip to content

Commit 8dcca3a

Browse files
committed
add language flag to codeblock
1 parent 0fba4ea commit 8dcca3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ or the Rasterio ([`Transform`](https://rasterio.readthedocs.io/en/stable/api/ras
108108
To get it on the command line you can use the [Rasterio CLI](https://rasterio.readthedocs.io/en/latest/cli.html) with the
109109
[info](https://rasterio.readthedocs.io/en/latest/cli.html#info) command: `$ rio info`.
110110

111-
```
111+
```txt
112112
[Xp] [a0, a1, a2] [Pixel]
113113
[Yp] = [a3, a4, a5] * [Line ]
114114
[1 ] [0 , 0, 1] [1 ]
@@ -119,7 +119,7 @@ If the transform is defined in Item Properties, it is used as the default transf
119119
Note that `GetGeoTransform` and `rasterio` use different formats for reporting transform information. Order expected in `proj:transform` is the
120120
same as reported by `rasterio`. When using GDAL method you need to re-order in the following way:
121121

122-
```
122+
```python
123123
g = GetGeoTransform(...)
124124
proj_transform = [g[1], g[2], g[0],
125125
g[4], g[5], g[3],

0 commit comments

Comments
 (0)