Skip to content

Commit

Permalink
Fix misconversion of programlisting tags
Browse files Browse the repository at this point in the history
  • Loading branch information
strk committed Sep 12, 2023
1 parent 16e4398 commit 5cd2963
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions doc/reference_raster.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ VALUES (1,
<para>This section lists the PostgreSQL data types specifically created to support raster functionality.</para>
</abstract>
</info>


<refentry xml:id="geomval">
<refnamediv>
Expand Down Expand Up @@ -84,7 +84,7 @@ VALUES (1,
<variablelist>
<varlistentry>
<term>
index
index
integer
</term>
<listitem>
Expand All @@ -96,7 +96,7 @@ VALUES (1,

<varlistentry>
<term>
pixeltype
pixeltype
text
</term>
<listitem>
Expand All @@ -108,7 +108,7 @@ VALUES (1,

<varlistentry>
<term>
initialvalue
initialvalue
double precision
</term>
<listitem>
Expand All @@ -120,7 +120,7 @@ VALUES (1,

<varlistentry>
<term>
nodataval
nodataval
double precision
</term>
<listitem>
Expand Down Expand Up @@ -157,7 +157,7 @@ VALUES (1,

<varlistentry>
<term>
rast
rast
raster
</term>
<listitem>
Expand All @@ -169,7 +169,7 @@ VALUES (1,

<varlistentry>
<term>
nband
nband
integer
</term>
<listitem>
Expand Down Expand Up @@ -298,7 +298,7 @@ VALUES (1,
<variablelist>
<varlistentry>
<term>
count
count
integer
</term>
<listitem>
Expand All @@ -310,7 +310,7 @@ VALUES (1,

<varlistentry>
<term>
sum
sum
double precision
</term>
<listitem>
Expand All @@ -322,7 +322,7 @@ VALUES (1,

<varlistentry>
<term>
mean
mean
double precision
</term>
<listitem>
Expand All @@ -334,7 +334,7 @@ VALUES (1,

<varlistentry>
<term>
stddev
stddev
double precision
</term>
<listitem>
Expand All @@ -346,7 +346,7 @@ VALUES (1,

<varlistentry>
<term>
min
min
double precision
</term>
<listitem>
Expand All @@ -358,7 +358,7 @@ VALUES (1,

<varlistentry>
<term>
max
max
double precision
</term>
<listitem>
Expand Down Expand Up @@ -395,7 +395,7 @@ VALUES (1,
<variablelist>
<varlistentry>
<term>
nband
nband
integer
</term>
<listitem>
Expand All @@ -407,7 +407,7 @@ VALUES (1,

<varlistentry>
<term>
uniontype
uniontype
text
</term>
<listitem>
Expand Down Expand Up @@ -8987,7 +8987,7 @@ SELECT ST_AsHexWKB(rast) As rastbin FROM dummy_rast WHERE rid=1;

<programlisting>SELECT ST_AsGDALRaster(ST_Union(rast), 'JPEG', ARRAY['QUALITY=50']) As rastjpg
FROM dummy_rast
WHERE rast &&amp; ST_MakeEnvelope(10, 10, 11, 11);</programlisting>
WHERE rast &amp;&amp; ST_MakeEnvelope(10, 10, 11, 11);</programlisting>

</refsection>

Expand All @@ -9004,7 +9004,7 @@ SELECT lo_from_bytea(0,
ST_AsGDALRaster(ST_Union(rast), 'JPEG', ARRAY['QUALITY=50'])
) AS loid
FROM dummy_rast
WHERE rast &&amp; ST_MakeEnvelope(10, 10, 11, 11);
WHERE rast &amp;&amp; ST_MakeEnvelope(10, 10, 11, 11);

SELECT lo_export(loid, '/tmp/dummy.jpg')
FROM tmp_out;
Expand Down Expand Up @@ -15879,7 +15879,7 @@ SELECT r1.rid, r2.rid, ST_DFullyWithin(r1.rast, 1, r2.rast, 1, 3.14) FROM dummy_
<para>This section documents various gotchas and tips related to PostGIS Raster.</para>
</abstract>
</info>


<section xml:id="outdb">
<title>Out-DB Rasters</title>
Expand Down Expand Up @@ -16091,4 +16091,4 @@ systemctl daemon-reload
</section>

</section>
</chapter>
</chapter>

0 comments on commit 5cd2963

Please sign in to comment.