Changes between Version 93 and Version 94 of WKTRaster/SpecificationWorking03
- Timestamp:
- 05/30/11 08:06:47 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified WKTRaster/SpecificationWorking03
v93 v94 855 855 856 856 857 '''ST_Union(raster|geometry, raster|geometry, ‘raster’|’geometry’) -> raster/geometry'''[[BR]]858 '''ST_Accum(raster set|geometry set, ‘raster’|’geometry’) -> raster/geometry'''857 '''ST_Union(raster|geometry, raster|geometry, ¿raster¿|¿geometry¿) -> raster/geometry'''[[BR]] 858 '''ST_Accum(raster set|geometry set, ¿raster¿|¿geometry¿) -> raster/geometry''' 859 859 860 860 … … 881 881 ''If NULL is passed for "searchvalues" to any of the ST_ValueCount variations with "searchvalues", the function returns the counts for all unique values'' 882 882 883 1. ST_ValueCount(rast raster, nband integer, hasnodataboolean, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, count)883 1. ST_ValueCount(rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, count) 884 884 885 885 returns the number of times that each value in searchvalues is present in the raster 886 886 887 hasnodata: if FALSE, nodata values in band are considered in the count. if TRUE, nodata values are not considered887 exclude_nodata_value: if FALSE, nodata values in band are considered in the count. if TRUE, nodata values are not considered 888 888 889 889 searchvalues: the set of values to count in the raster … … 925 925 2. ST_ValueCount(rast raster, nband integer, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, count) 926 926 927 hasnodatais assumed to be TRUE927 exclude_nodata_value is assumed to be TRUE 928 928 929 929 {{{ … … 935 935 3. ST_ValueCount(rast raster, nband integer, searchvalues double precision[]) -> setof record (searchvalue, count) 936 936 937 roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE937 roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE 938 938 939 939 {{{ … … 945 945 4. ST_ValueCount(rast raster, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, count) 946 946 947 nband is assumed to be 1. hasnodatais assumed to be TRUE.947 nband is assumed to be 1. exclude_nodata_value is assumed to be TRUE. 948 948 949 949 5. ST_ValueCount(rast raster, searchvalues double precision[]) -> setof record (searchvalue, count) 950 950 951 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE.951 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE. 952 952 953 953 A set of functions for a single search value: 954 954 955 1. ST_ValueCount(rast raster, nband integer, hasnodataboolean, searchvalue double precision, roundto double precision) -> integer955 1. ST_ValueCount(rast raster, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision) -> integer 956 956 957 957 returns the number of times that searchvalue is present in the raster … … 971 971 2. ST_ValueCount(rast raster, nband integer, searchvalue double precision, roundto double precision) -> integer 972 972 973 hasnodatais assumed to be TRUE973 exclude_nodata_value is assumed to be TRUE 974 974 975 975 {{{ … … 981 981 3. ST_ValueCount(rast raster, nband integer, searchvalue double precision) -> integer 982 982 983 roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE983 roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE 984 984 985 985 {{{ … … 989 989 4. ST_ValueCount(rast raster, searchvalue double precision, roundto double precision) -> integer 990 990 991 nband is assumed to be 1. hasnodatais assumed to be TRUE.991 nband is assumed to be 1. exclude_nodata_value is assumed to be TRUE. 992 992 993 993 5. ST_ValueCount(rast raster, searchvalue double precision) -> integer 994 994 995 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE.995 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE. 996 996 997 997 The set of functions for processing coverages return "bigint" instead of "integer". … … 999 999 A set of functions for one or more search values: 1000 1000 1001 1. ST_ValueCount(rastertable text, rastercolumn text, nband integer, hasnodataboolean, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, count)1001 1. ST_ValueCount(rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, count) 1002 1002 1003 1003 rastertable: name of the table with a raster column … … 1019 1019 2. ST_ValueCount(rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, count) 1020 1020 1021 hasnodatais assumed to be TRUE1021 exclude_nodata_value is assumed to be TRUE 1022 1022 1023 1023 {{{ … … 1029 1029 3. ST_ValueCount(rastertable text, rastercolumn text, nband integer, searchvalues double precision[]) -> setof record (searchvalue, count) 1030 1030 1031 roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE1031 roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE 1032 1032 1033 1033 {{{ … … 1039 1039 4. ST_ValueCount(rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, count) 1040 1040 1041 nband is assumed to be 1. hasnodatais assumed to be TRUE.1041 nband is assumed to be 1. exclude_nodata_value is assumed to be TRUE. 1042 1042 1043 1043 5. ST_ValueCount(rastertable text, rastercolumn text, searchvalues double precision[]) -> setof record (searchvalue, count) 1044 1044 1045 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE.1045 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE. 1046 1046 1047 1047 A set of functions for a single search value: 1048 1048 1049 1. ST_ValueCount(rastertable text, rastercolumn text, nband integer, hasnodataboolean, searchvalue double precision, roundto double precision) -> bigint1049 1. ST_ValueCount(rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision) -> bigint 1050 1050 1051 1051 searchvalue: the value to count in the raster … … 1063 1063 2. ST_ValueCount(rastertable text, rastercolumn text, nband integer, searchvalue double precision, roundto double precision) -> bigint 1064 1064 1065 hasnodatais assumed to be TRUE1065 exclude_nodata_value is assumed to be TRUE 1066 1066 1067 1067 {{{ … … 1073 1073 3. ST_ValueCount(rastertable text, rastercolumn text, nband integer, searchvalue double precision) -> bigint 1074 1074 1075 roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE1075 roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE 1076 1076 1077 1077 {{{ … … 1081 1081 4. ST_ValueCount(rastertable text, rastercolumn text, searchvalue double precision, roundto double precision) -> bigint 1082 1082 1083 nband is assumed to be 1. hasnodatais assumed to be TRUE.1083 nband is assumed to be 1. exclude_nodata_value is assumed to be TRUE. 1084 1084 1085 1085 5. ST_ValueCount(rastertable text, rastercolumn text, searchvalue double precision) -> bigint 1086 1086 1087 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE.1087 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE. 1088 1088 1089 1089 ---- … … 1097 1097 ''If NULL is passed for "searchvalues" to any of the ST_ValuePercent variations with "searchvalues", the function returns the percents for all unique values'' 1098 1098 1099 1. ST_ValuePercent(rast raster, nband integer, hasnodataboolean, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, percent)1099 1. ST_ValuePercent(rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, percent) 1100 1100 1101 1101 returns the percentage of a raster's band that each value in searchvalues is found 1102 1102 1103 hasnodata: if FALSE, nodata values in band are considered in the percents. if TRUE, nodata values are not considered1103 exclude_nodata_value: if FALSE, nodata values in band are considered in the percents. if TRUE, nodata values are not considered 1104 1104 1105 1105 searchvalues: the set of values to get percents for in the raster … … 1141 1141 2. ST_ValuePercent(rast raster, nband integer, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, percent) 1142 1142 1143 hasnodatais assumed to be TRUE1143 exclude_nodata_value is assumed to be TRUE 1144 1144 1145 1145 {{{ … … 1151 1151 3. ST_ValuePercent(rast raster, nband integer, searchvalues double precision[]) -> setof record (searchvalue, percent) 1152 1152 1153 roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE1153 roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE 1154 1154 1155 1155 {{{ … … 1161 1161 4. ST_ValuePercent(rast raster, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, percent) 1162 1162 1163 nband is assumed to be 1. hasnodatais assumed to be TRUE.1163 nband is assumed to be 1. exclude_nodata_value is assumed to be TRUE. 1164 1164 1165 1165 5. ST_ValuePercent(rast raster, searchvalues double precision[]) -> setof record (searchvalue, percent) 1166 1166 1167 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE.1167 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE. 1168 1168 1169 1169 A set of functions for a single search value: 1170 1170 1171 1. ST_ValuePercent(rast raster, nband integer, hasnodataboolean, searchvalue double precision, roundto double precision) -> integer1171 1. ST_ValuePercent(rast raster, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision) -> integer 1172 1172 1173 1173 searchvalue: the value to get a percent for in the raster … … 1185 1185 2. ST_ValuePercent(rast raster, nband integer, searchvalue double precision, roundto double precision) -> integer 1186 1186 1187 hasnodatais assumed to be TRUE1187 exclude_nodata_value is assumed to be TRUE 1188 1188 1189 1189 {{{ … … 1195 1195 3. ST_ValuePercent(rast raster, nband integer, searchvalue double precision) -> integer 1196 1196 1197 roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE1197 roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE 1198 1198 1199 1199 {{{ … … 1203 1203 4. ST_ValuePercent(rast raster, searchvalue double precision, roundto double precision) -> integer 1204 1204 1205 nband is assumed to be 1. hasnodatais assumed to be TRUE.1205 nband is assumed to be 1. exclude_nodata_value is assumed to be TRUE. 1206 1206 1207 1207 5. ST_ValuePercent(rast raster, searchvalue double precision) -> integer 1208 1208 1209 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE.1209 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE. 1210 1210 1211 1211 The set of functions for processing coverages return "bigint" instead of "integer". … … 1213 1213 A set of functions for one or more search values: 1214 1214 1215 1. ST_ValuePercent(rastertable text, rastercolumn text, nband integer, hasnodataboolean, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, percent)1215 1. ST_ValuePercent(rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, percent) 1216 1216 1217 1217 rastertable: name of the table with a raster column … … 1233 1233 2. ST_ValuePercent(rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, percent) 1234 1234 1235 hasnodatais assumed to be TRUE1235 exclude_nodata_value is assumed to be TRUE 1236 1236 1237 1237 {{{ … … 1243 1243 3. ST_ValuePercent(rastertable text, rastercolumn text, nband integer, searchvalues double precision[]) -> setof record (searchvalue, percent) 1244 1244 1245 roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE1245 roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE 1246 1246 1247 1247 {{{ … … 1253 1253 4. ST_ValuePercent(rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision) -> setof record (searchvalue, percent) 1254 1254 1255 nband is assumed to be 1. hasnodatais assumed to be TRUE.1255 nband is assumed to be 1. exclude_nodata_value is assumed to be TRUE. 1256 1256 1257 1257 5. ST_ValuePercent(rastertable text, rastercolumn text, searchvalues double precision[]) -> setof record (searchvalue, percent) 1258 1258 1259 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE.1259 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE. 1260 1260 1261 1261 A set of functions for a single search value: 1262 1262 1263 1. ST_ValuePercent(rastertable text, rastercolumn text, nband integer, hasnodataboolean, searchvalue double precision, roundto double precision) -> bigint1263 1. ST_ValuePercent(rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision) -> bigint 1264 1264 1265 1265 searchvalue: the value to get a percent for in the raster … … 1277 1277 2. ST_ValuePercent(rastertable text, rastercolumn text, nband integer, searchvalue double precision, roundto double precision) -> bigint 1278 1278 1279 hasnodatais assumed to be TRUE1279 exclude_nodata_value is assumed to be TRUE 1280 1280 1281 1281 {{{ … … 1287 1287 3. ST_ValuePercent(rastertable text, rastercolumn text, nband integer, searchvalue double precision) -> bigint 1288 1288 1289 roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE1289 roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE 1290 1290 1291 1291 {{{ … … 1295 1295 4. ST_ValuePercent(rastertable text, rastercolumn text, searchvalue double precision, roundto double precision) -> bigint 1296 1296 1297 nband is assumed to be 1. hasnodatais assumed to be TRUE.1297 nband is assumed to be 1. exclude_nodata_value is assumed to be TRUE. 1298 1298 1299 1299 5. ST_ValuePercent(rastertable text, rastercolumn text, searchvalue double precision) -> bigint 1300 1300 1301 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. hasnodatais assumed to be TRUE.1301 nband is assumed to be 1. roundto is assumed to be 0, so no rounding takes place. exclude_nodata_value is assumed to be TRUE. 1302 1302 1303 1303 ---- … … 1318 1318 The 3rd or 3rd-6th parameters define the pixel size of the resampling operation. For the 3rd parameter variant, the pixel size is taken from the pixel size of the raster parameter. For the 3rd-6th parameter variant, the pixel origin and dimensions are explicitly defined. 1319 1319 1320 '''ST_SelectByValue(raster|geometry, ‘expression’) -> same type as first argument'''[[BR]]1320 '''ST_SelectByValue(raster|geometry, ¿expression¿) -> same type as first argument'''[[BR]] 1321 1321 ~~'''ST_Reclass(raster|geometry,string) -> same type as first argument'''[[BR]]~~ 1322 1322 1323 1323 ~~Bborie: Implementation has been moved to FV.01 above.~~ 1324 1324 1325 '''ST_MapAlgebra(raster|geometry, [raster|geometry, …] ‘mathematical expression’, ‘raster’ |’geometry’) -> raster/geometry'''1326 1327 Variant 1: ST_MapAlgebra(raster|geometry, [raster|geometry, …] ‘mathematical expression’, ‘raster’ |’geometry’, originx, originy, pixelsizex, pixelsizey) -> raster/geometry1328 1329 Variant 2: ST_MapAlgebra(raster|geometry, [raster|geometry, …] 'mathematical expression', 'raster' |'geometry', integer) ->raster/geometry1330 1331 Variant 3: ST_MapAlgebra(raster|geometry, [raster|geometry, …] 'mathematical expression', 'raster' |'geometry', raster) ->raster/geometry1325 '''ST_MapAlgebra(raster|geometry, [raster|geometry,¿] ¿mathematical expression¿, ¿raster¿ |¿geometry¿) -> raster/geometry''' 1326 1327 Variant 1: ST_MapAlgebra(raster|geometry, [raster|geometry,¿] ¿mathematical expression¿, ¿raster¿ |¿geometry¿, originx, originy, pixelsizex, pixelsizey) -> raster/geometry 1328 1329 Variant 2: ST_MapAlgebra(raster|geometry, [raster|geometry,¿] 'mathematical expression', 'raster' |'geometry', integer) ->raster/geometry 1330 1331 Variant 3: ST_MapAlgebra(raster|geometry, [raster|geometry,¿] 'mathematical expression', 'raster' |'geometry', raster) ->raster/geometry 1332 1332 1333 1333 ST_MapAlgebra performs the specified mathematical expression on the input rasters, returning a raster or geometry. Both rasters must have the same SRID. If both rasters do not have the same SRID, ST_MapAlgebra will return an error: … … 1339 1339 4 additional parameters are passed specifying the origin, cell size, and raster rotation. 1340 1340 1341 This function implicitly calls ST_Intersects(raster|geometry, [raster|geometry, …]) to detect if the rasters are overlapping before performing any computation. Additionally, the resulting raster will have the same extent as the result of ST_Intersection(raster, integer, geometry).1341 This function implicitly calls ST_Intersects(raster|geometry, [raster|geometry,¿]) to detect if the rasters are overlapping before performing any computation. Additionally, the resulting raster will have the same extent as the result of ST_Intersection(raster, integer, geometry). 1342 1342 1343 1343 One of the implications of the ST_Intersects inclusion is that: … … 1348 1348 '''Open Question:''' 1349 1349 DZ: Should ST_MapAlgebra resample rasters internally, or produce a raster that can be processed by ST_Resample? If so, variant 1 and variant 3 can be removed, and all ST_MapAlgebra results can be processed through ST_Resample, like: 1350 ST_Resample(ST_MapAlgebra(raster, [raster, …] 'mathematical expression', integer), originx, originy, pixelsizex, pixelsizey)[[BR]]1351 ST_Resample(ST_MapAlgebra(raster, [raster, …] 'mathematical expression', integer), rastergrid)1350 ST_Resample(ST_MapAlgebra(raster, [raster,¿] 'mathematical expression', integer), originx, originy, pixelsizex, pixelsizey)[[BR]] 1351 ST_Resample(ST_MapAlgebra(raster, [raster,¿] 'mathematical expression', integer), rastergrid) 1352 1352 PR: I think this would greatly contribute to simplify the API. 1353 1353 1354 1354 '''ST_Clip(raster|geometry,geometry) -> same type as first argument'''[[BR]] 1355 '''ST_Flip(raster|geometry, ’vertical’|’horizontal’) -> same type as first argument'''1355 '''ST_Flip(raster|geometry, ¿vertical¿|¿horizontal¿) -> same type as first argument''' 1356 1356 1357 1357 ---- … … 1392 1392 '''ST_Buffer(raster|geometry, double) -> same type as first arg.'''[[BR]] 1393 1393 '''ST_Difference(raster|geometry A, raster|geometry B) -> same type as first argument'''[[BR]] 1394 '''ST_SymDifference(raster|geometry,raster|geometry, ‘raster’|’geometry’) -> raster/geometry'''1394 '''ST_SymDifference(raster|geometry,raster|geometry,¿raster¿|¿geometry¿) -> raster/geometry''' 1395 1395 1396 1396 ---- … … 1409 1409 == '''Objective FV.13 - Being able to edit a raster''' == 1410 1410 1411 '''ST_Affine(raster|geometry, …) -> same type as input'''[[BR]]1412 '''ST_Translate(raster|geometry, …) -> same type as input'''[[BR]]1413 '''ST_Scale(raster|geometry, …) -> same type as input'''[[BR]]1414 '''ST_TransScale(raster|geometry, …) -> same type as input'''[[BR]]1411 '''ST_Affine(raster|geometry,¿) -> same type as input'''[[BR]] 1412 '''ST_Translate(raster|geometry,¿) -> same type as input'''[[BR]] 1413 '''ST_Scale(raster|geometry,¿) -> same type as input'''[[BR]] 1414 '''ST_TransScale(raster|geometry,¿) -> same type as input'''[[BR]] 1415 1415 '''ST_RotateZ,Y,Z(raster|geometry, float8) -> same type as input''' 1416 1416 … … 1460 1460 This is the core function that gets the summary statistics (# of values, mean, standard deviation, minimum value, maximum value) of a specified raster's band. It is this function that ST_Mean, ST_StdDev and ST_MinMax calls for their appropriate values. 1461 1461 1462 1. ST_SummaryStats(rast raster, nband int, hasnodataboolean) -> record1462 1. ST_SummaryStats(rast raster, nband int, exclude_nodata_value boolean) -> record 1463 1463 1464 1464 returns one record of five columns (count, mean, stddev, min, max) … … 1466 1466 nband: index of band 1467 1467 1468 hasnodata: if FALSE, nodata values in band are included in the stats. if TRUE, nodata values are not included1468 exclude_nodata_value: if FALSE, nodata values in band are included in the stats. if TRUE, nodata values are not included 1469 1469 1470 1470 {{{ … … 1474 1474 2. ST_SummaryStats(rast raster, nband int) -> record 1475 1475 1476 assumes hasnodata= TRUE1476 assumes exclude_nodata_value = TRUE 1477 1477 1478 1478 {{{ … … 1480 1480 }}} 1481 1481 1482 3. ST_SummaryStats(rast raster, hasnodataboolean) -> record1482 3. ST_SummaryStats(rast raster, exclude_nodata_value boolean) -> record 1483 1483 1484 1484 assumes nband = 1 … … 1490 1490 4. ST_SummaryStats(rast raster) -> record 1491 1491 1492 assumes nband = 1 and hasnodata= TRUE1492 assumes nband = 1 and exclude_nodata_value = TRUE 1493 1493 1494 1494 {{{ … … 1504 1504 The set of ST_ApproxSummaryStats functions are: 1505 1505 1506 1. ST_ApproxSummaryStats(rast raster, nband int, hasnodataboolean, sample_percent double precision) -> record1506 1. ST_ApproxSummaryStats(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision) -> record 1507 1507 1508 1508 sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider … … 1524 1524 }}} 1525 1525 1526 3. ST_ApproxSummaryStats(rast raster, hasnodataboolean, sample_percent double precision) -> record1526 3. ST_ApproxSummaryStats(rast raster, exclude_nodata_value boolean, sample_percent double precision) -> record 1527 1527 1528 1528 assumes that nband = 1 … … 1536 1536 4. ST_ApproxSummaryStats(rast raster, sample_percent double precision) -> record 1537 1537 1538 assumes that nband = 1 and hasnodata= TRUE1538 assumes that nband = 1 and exclude_nodata_value = TRUE 1539 1539 1540 1540 {{{ … … 1544 1544 5. ST_ApproxSummaryStats(rast raster) -> record 1545 1545 1546 assumes that nband = 1, hasnodata= TRUE and sample_percent = 0.11546 assumes that nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 1547 1547 1548 1548 {{{ … … 1552 1552 The situation arises where the summary statistics of a coverage table is required. As the coverage may be large (tens of gigabytes of memory or larger), the following functions are provided to permit an incremental computation of the summary statistics. 1553 1553 1554 1. ST_SummaryStats(rastertable text, rastercolumn text, nband int, hasnodataboolean) -> record1554 1. ST_SummaryStats(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean) -> record 1555 1555 1556 1556 rastertable: name of table with raster column … … 1566 1566 2. ST_SummaryStats(rastertable text, rastercolumn text, nband int) -> record 1567 1567 1568 hasnodata= TRUE1568 exclude_nodata_value = TRUE 1569 1569 1570 1570 {{{ … … 1572 1572 }}} 1573 1573 1574 3. ST_SummaryStats(rastertable text, rastercolumn text, hasnodataboolean) -> record1574 3. ST_SummaryStats(rastertable text, rastercolumn text, exclude_nodata_value boolean) -> record 1575 1575 1576 1576 nband = 1 … … 1582 1582 4. ST_SummaryStats(rastertable text, rastercolumn text) -> record 1583 1583 1584 nband = 1 and hasnodata= TRUE1584 nband = 1 and exclude_nodata_value = TRUE 1585 1585 1586 1586 {{{ … … 1590 1590 Variations for ST_ApproxSummaryStats are: 1591 1591 1592 1. ST_ApproxSummaryStats(rastertable text, rastercolumn text, nband int, hasnodataboolean, sample_percent double precision) -> record1592 1. ST_ApproxSummaryStats(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean, sample_percent double precision) -> record 1593 1593 1594 1594 {{{ … … 1600 1600 2. ST_ApproxSummaryStats(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> record 1601 1601 1602 hasnodata= TRUE1602 exclude_nodata_value = TRUE 1603 1603 1604 1604 {{{ … … 1608 1608 }}} 1609 1609 1610 3. ST_ApproxSummaryStats(rastertable text, rastercolumn text, hasnodataboolean, sample_percent double precision) -> record1610 3. ST_ApproxSummaryStats(rastertable text, rastercolumn text, exclude_nodata_value boolean, sample_percent double precision) -> record 1611 1611 1612 1612 nband = 1 … … 1620 1620 4. ST_ApproxSummaryStats(rastertable text, rastercolumn text, sample_percent double precision) -> record 1621 1621 1622 nband = 1 and hasnodata= TRUE1622 nband = 1 and exclude_nodata_value = TRUE 1623 1623 1624 1624 {{{ … … 1630 1630 5. ST_ApproxSummaryStats(rastertable text, rastercolumn text) -> record 1631 1631 1632 nband = 1, hasnodata= TRUE and sample_percent = 0.11632 nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 1633 1633 1634 1634 {{{ … … 1646 1646 This function calls ST_SummaryStats and only returns the count from that function. 1647 1647 1648 1. ST_Count(rast raster, nband int, hasnodataboolean) -> bigint1648 1. ST_Count(rast raster, nband int, exclude_nodata_value boolean) -> bigint 1649 1649 1650 1650 returns the count as an integer … … 1652 1652 nband: index of band 1653 1653 1654 hasnodata: if FALSE, nodata values in band are included in the stats. if TRUE, nodata values are not included1654 exclude_nodata_value: if FALSE, nodata values in band are included in the stats. if TRUE, nodata values are not included 1655 1655 1656 1656 {{{ … … 1660 1660 2. ST_Count(rast raster, nband int) -> bigint 1661 1661 1662 assumes hasnodata= TRUE1662 assumes exclude_nodata_value = TRUE 1663 1663 1664 1664 {{{ … … 1666 1666 }}} 1667 1667 1668 3. ST_Count(rast raster, hasnodataboolean) -> bigint1668 3. ST_Count(rast raster, exclude_nodata_value boolean) -> bigint 1669 1669 1670 1670 assumes nband = 1 … … 1676 1676 4. ST_Count(rast raster) -> bigint 1677 1677 1678 assumes nband = 1 and hasnodata= TRUE1678 assumes nband = 1 and exclude_nodata_value = TRUE 1679 1679 1680 1680 {{{ … … 1684 1684 The set of ST_ApproxCount functions are: 1685 1685 1686 1. ST_ApproxCount(rast raster, nband int, hasnodataboolean, sample_percent double precision) -> bigint1686 1. ST_ApproxCount(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision) -> bigint 1687 1687 1688 1688 sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider … … 1704 1704 }}} 1705 1705 1706 3. ST_ApproxCount(rast raster, hasnodataboolean, sample_percent double precision) -> bigint1706 3. ST_ApproxCount(rast raster, exclude_nodata_value boolean, sample_percent double precision) -> bigint 1707 1707 1708 1708 assumes that nband = 1 … … 1716 1716 4. ST_ApproxCount(rast raster, sample_percent double precision) -> bigint 1717 1717 1718 assumes that nband = 1 and hasnodata= TRUE1718 assumes that nband = 1 and exclude_nodata_value = TRUE 1719 1719 1720 1720 {{{ … … 1724 1724 5. ST_ApproxCount(rast raster) -> bigint 1725 1725 1726 assumes that nband = 1, hasnodata= TRUE and sample_percent = 0.11726 assumes that nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 1727 1727 1728 1728 {{{ … … 1732 1732 The following functions are provided for coverage tables. 1733 1733 1734 1. ST_Count(rastertable text, rastercolumn text, nband int, hasnodataboolean) -> bigint1734 1. ST_Count(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean) -> bigint 1735 1735 1736 1736 rastertable: name of table with raster column … … 1746 1746 2. ST_Count(rastertable text, rastercolumn text, nband int) -> bigint 1747 1747 1748 hasnodata= TRUE1748 exclude_nodata_value = TRUE 1749 1749 1750 1750 {{{ … … 1752 1752 }}} 1753 1753 1754 3. ST_Count(rastertable text, rastercolumn text, hasnodataboolean) -> bigint1754 3. ST_Count(rastertable text, rastercolumn text, exclude_nodata_value boolean) -> bigint 1755 1755 1756 1756 nband = 1 … … 1762 1762 4. ST_Count(rastertable text, rastercolumn text) -> bigint 1763 1763 1764 nband = 1 and hasnodata= TRUE1764 nband = 1 and exclude_nodata_value = TRUE 1765 1765 1766 1766 {{{ … … 1770 1770 Variations for ST_ApproxCount are: 1771 1771 1772 1. ST_ApproxCount(rastertable text, rastercolumn text, nband int, hasnodataboolean, sample_percent double precision) -> bigint1772 1. ST_ApproxCount(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean, sample_percent double precision) -> bigint 1773 1773 1774 1774 {{{ … … 1780 1780 2. ST_ApproxCount(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> bigint 1781 1781 1782 hasnodata= TRUE1782 exclude_nodata_value = TRUE 1783 1783 1784 1784 {{{ … … 1788 1788 }}} 1789 1789 1790 3. ST_ApproxCount(rastertable text, rastercolumn text, hasnodataboolean, sample_percent double precision) -> bigint1790 3. ST_ApproxCount(rastertable text, rastercolumn text, exclude_nodata_value boolean, sample_percent double precision) -> bigint 1791 1791 1792 1792 nband = 1 … … 1800 1800 4. ST_ApproxCount(rastertable text, rastercolumn text, sample_percent double precision) -> bigint 1801 1801 1802 nband = 1 and hasnodata= TRUE1802 nband = 1 and exclude_nodata_value = TRUE 1803 1803 1804 1804 {{{ … … 1810 1810 5. ST_ApproxCount(rastertable text, rastercolumn text) -> bigint 1811 1811 1812 nband = 1, hasnodata= TRUE and sample_percent = 0.11812 nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 1813 1813 1814 1814 {{{ … … 1824 1824 This function calls ST_SummaryStats and only returns the sum from that function. 1825 1825 1826 1. ST_Sum(rast raster, nband int, hasnodataboolean) -> double precision1826 1. ST_Sum(rast raster, nband int, exclude_nodata_value boolean) -> double precision 1827 1827 1828 1828 returns the sum as an integer … … 1830 1830 nband: index of band 1831 1831 1832 hasnodata: if FALSE, nodata values in band are included in the stats. if TRUE, nodata values are not included1832 exclude_nodata_value: if FALSE, nodata values in band are included in the stats. if TRUE, nodata values are not included 1833 1833 1834 1834 {{{ … … 1838 1838 2. ST_Sum(rast raster, nband int) -> double precision 1839 1839 1840 assumes hasnodata= TRUE1840 assumes exclude_nodata_value = TRUE 1841 1841 1842 1842 {{{ … … 1844 1844 }}} 1845 1845 1846 3. ST_Sum(rast raster, hasnodataboolean) -> double precision1846 3. ST_Sum(rast raster, exclude_nodata_value boolean) -> double precision 1847 1847 1848 1848 assumes nband = 1 … … 1854 1854 4. ST_Sum(rast raster) -> double precision 1855 1855 1856 assumes nband = 1 and hasnodata= TRUE1856 assumes nband = 1 and exclude_nodata_value = TRUE 1857 1857 1858 1858 {{{ … … 1862 1862 The set of ST_ApproxSum functions are: 1863 1863 1864 1. ST_ApproxSum(rast raster, nband int, hasnodataboolean, sample_percent double precision) -> double precision1864 1. ST_ApproxSum(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision) -> double precision 1865 1865 1866 1866 sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider … … 1882 1882 }}} 1883 1883 1884 3. ST_ApproxSum(rast raster, hasnodataboolean, sample_percent double precision) -> double precision1884 3. ST_ApproxSum(rast raster, exclude_nodata_value boolean, sample_percent double precision) -> double precision 1885 1885 1886 1886 assumes that nband = 1 … … 1894 1894 4. ST_ApproxSum(rast raster, sample_percent double precision) -> double precision 1895 1895 1896 assumes that nband = 1 and hasnodata= TRUE1896 assumes that nband = 1 and exclude_nodata_value = TRUE 1897 1897 1898 1898 {{{ … … 1902 1902 5. ST_ApproxSum(rast raster) -> double precision 1903 1903 1904 assumes that nband = 1, hasnodata= TRUE and sample_percent = 0.11904 assumes that nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 1905 1905 1906 1906 {{{ … … 1910 1910 The following functions are provided for coverage tables. 1911 1911 1912 1. ST_Sum(rastertable text, rastercolumn text, nband int, hasnodataboolean) -> double precision1912 1. ST_Sum(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean) -> double precision 1913 1913 1914 1914 rastertable: name of table with raster column … … 1924 1924 2. ST_Sum(rastertable text, rastercolumn text, nband int) -> double precision 1925 1925 1926 hasnodata= TRUE1926 exclude_nodata_value = TRUE 1927 1927 1928 1928 {{{ … … 1930 1930 }}} 1931 1931 1932 3. ST_Sum(rastertable text, rastercolumn text, hasnodataboolean) -> double precision1932 3. ST_Sum(rastertable text, rastercolumn text, exclude_nodata_value boolean) -> double precision 1933 1933 1934 1934 nband = 1 … … 1940 1940 4. ST_Sum(rastertable text, rastercolumn text) -> double precision 1941 1941 1942 nband = 1 and hasnodata= TRUE1942 nband = 1 and exclude_nodata_value = TRUE 1943 1943 1944 1944 {{{ … … 1948 1948 Variations for ST_ApproxSum are: 1949 1949 1950 1. ST_ApproxSum(rastertable text, rastercolumn text, nband int, hasnodataboolean, sample_percent double precision) -> double precision1950 1. ST_ApproxSum(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean, sample_percent double precision) -> double precision 1951 1951 1952 1952 {{{ … … 1958 1958 2. ST_ApproxSum(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> double precision 1959 1959 1960 hasnodata= TRUE1960 exclude_nodata_value = TRUE 1961 1961 1962 1962 {{{ … … 1966 1966 }}} 1967 1967 1968 3. ST_ApproxSum(rastertable text, rastercolumn text, hasnodataboolean, sample_percent double precision) -> double precision1968 3. ST_ApproxSum(rastertable text, rastercolumn text, exclude_nodata_value boolean, sample_percent double precision) -> double precision 1969 1969 1970 1970 nband = 1 … … 1978 1978 4. ST_ApproxSum(rastertable text, rastercolumn text, sample_percent double precision) -> double precision 1979 1979 1980 nband = 1 and hasnodata= TRUE1980 nband = 1 and exclude_nodata_value = TRUE 1981 1981 1982 1982 {{{ … … 1988 1988 5. ST_ApproxSum(rastertable text, rastercolumn text) -> double precision 1989 1989 1990 nband = 1, hasnodata= TRUE and sample_percent = 0.11990 nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 1991 1991 1992 1992 {{{ … … 2001 2001 This function calls ST_SummaryStats and only returns the mean from that function. 2002 2002 2003 1. ST_Mean(rast raster, nband int, hasnodataboolean) -> double precision2003 1. ST_Mean(rast raster, nband int, exclude_nodata_value boolean) -> double precision 2004 2004 2005 2005 returns the mean as a double precision … … 2007 2007 nband: index of band 2008 2008 2009 hasnodata: if FALSE, nodata values in band are included. if TRUE, nodata values are not included.2009 exclude_nodata_value: if FALSE, nodata values in band are included. if TRUE, nodata values are not included. 2010 2010 2011 2011 {{{ … … 2015 2015 2. ST_Mean(rast raster, nband int) -> double precision 2016 2016 2017 assumes hasnodata= TRUE2017 assumes exclude_nodata_value = TRUE 2018 2018 2019 2019 {{{ … … 2021 2021 }}} 2022 2022 2023 3. ST_Mean(rast raster, hasnodataboolean) -> double precision2023 3. ST_Mean(rast raster, exclude_nodata_value boolean) -> double precision 2024 2024 2025 2025 assumes nband = 1 … … 2031 2031 4. ST_Mean(rast raster) -> double precision 2032 2032 2033 assumes nband = 1 and hasnodata= TRUE2033 assumes nband = 1 and exclude_nodata_value = TRUE 2034 2034 2035 2035 {{{ … … 2039 2039 The set of ST_ApproxMean functions are: 2040 2040 2041 1. ST_ApproxMean(rast raster, nband int, hasnodataboolean, sample_percent double precision) -> double precision2041 1. ST_ApproxMean(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision) -> double precision 2042 2042 2043 2043 sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider … … 2059 2059 }}} 2060 2060 2061 3. ST_ApproxMean(rast raster, hasnodataboolean, sample_percent double precision) -> double precision2061 3. ST_ApproxMean(rast raster, exclude_nodata_value boolean, sample_percent double precision) -> double precision 2062 2062 2063 2063 assumes that nband = 1 … … 2071 2071 4. ST_ApproxMean(rast raster, sample_percent double precision) -> double precision 2072 2072 2073 assumes that nband = 1 and hasnodata= TRUE2073 assumes that nband = 1 and exclude_nodata_value = TRUE 2074 2074 2075 2075 {{{ … … 2079 2079 5. ST_ApproxMean(rast raster) -> double precision 2080 2080 2081 assumes that nband = 1, hasnodata= TRUE and sample_percent = 0.12081 assumes that nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 2082 2082 2083 2083 {{{ … … 2087 2087 The following functions are provided for coverage tables. 2088 2088 2089 1. ST_Mean(rastertable text, rastercolumn text, nband int, hasnodataboolean) -> double precision2089 1. ST_Mean(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean) -> double precision 2090 2090 2091 2091 rastertable: name of table with raster column … … 2101 2101 2. ST_Mean(rastertable text, rastercolumn text, nband int) -> double precision 2102 2102 2103 hasnodata= TRUE2103 exclude_nodata_value = TRUE 2104 2104 2105 2105 {{{ … … 2107 2107 }}} 2108 2108 2109 3. ST_Mean(rastertable text, rastercolumn text, hasnodataboolean) -> double precision2109 3. ST_Mean(rastertable text, rastercolumn text, exclude_nodata_value boolean) -> double precision 2110 2110 2111 2111 nband = 1 … … 2117 2117 4. ST_Mean(rastertable text, rastercolumn text) -> double precision 2118 2118 2119 nband = 1 and hasnodata= TRUE2119 nband = 1 and exclude_nodata_value = TRUE 2120 2120 2121 2121 {{{ … … 2125 2125 Variations for ST_ApproxMean are: 2126 2126 2127 1. ST_ApproxMean(rastertable text, rastercolumn text, nband int, hasnodataboolean, sample_percent double precision) -> double precision2127 1. ST_ApproxMean(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean, sample_percent double precision) -> double precision 2128 2128 2129 2129 {{{ … … 2135 2135 2. ST_ApproxMean(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> double precision 2136 2136 2137 hasnodata= TRUE2137 exclude_nodata_value = TRUE 2138 2138 2139 2139 {{{ … … 2143 2143 }}} 2144 2144 2145 3. ST_ApproxMean(rastertable text, rastercolumn text, hasnodataboolean, sample_percent double precision) -> double precision2145 3. ST_ApproxMean(rastertable text, rastercolumn text, exclude_nodata_value boolean, sample_percent double precision) -> double precision 2146 2146 2147 2147 nband = 1 … … 2155 2155 4. ST_ApproxMean(rastertable text, rastercolumn text, sample_percent double precision) -> double precision 2156 2156 2157 nband = 1 and hasnodata= TRUE2157 nband = 1 and exclude_nodata_value = TRUE 2158 2158 2159 2159 {{{ … … 2165 2165 5. ST_ApproxMean(rastertable text, rastercolumn text) -> double precision 2166 2166 2167 nband = 1, hasnodata= TRUE and sample_percent = 0.12167 nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 2168 2168 2169 2169 {{{ … … 2180 2180 This function calls ST_SummaryStats and only returns the standard deviation from that function. 2181 2181 2182 1. ST_StdDev(rast raster, nband int, hasnodataboolean) -> double precision2182 1. ST_StdDev(rast raster, nband int, exclude_nodata_value boolean) -> double precision 2183 2183 2184 2184 returns the standard deviation as a double precision … … 2186 2186 nband: index of band 2187 2187 2188 hasnodata: if FALSE, nodata values in band are included. if TRUE, nodata values are not included.2188 exclude_nodata_value: if FALSE, nodata values in band are included. if TRUE, nodata values are not included. 2189 2189 2190 2190 {{{ … … 2194 2194 2. ST_StdDev(rast raster, nband int) -> double precision 2195 2195 2196 assumes hasnodata= TRUE2196 assumes exclude_nodata_value = TRUE 2197 2197 2198 2198 {{{ … … 2200 2200 }}} 2201 2201 2202 3. ST_StdDev(rast raster, hasnodataboolean) -> double precision2202 3. ST_StdDev(rast raster, exclude_nodata_value boolean) -> double precision 2203 2203 2204 2204 assumes nband = 1 … … 2210 2210 4. ST_StdDev(rast raster) -> double precision 2211 2211 2212 assumes nband = 1 and hasnodata= TRUE2212 assumes nband = 1 and exclude_nodata_value = TRUE 2213 2213 2214 2214 {{{ … … 2218 2218 The set of ST_ApproxStdDev functions are: 2219 2219 2220 1. ST_ApproxStdDev(rast raster, nband int, hasnodataboolean, sample_percent double precision) -> double precision2220 1. ST_ApproxStdDev(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision) -> double precision 2221 2221 2222 2222 sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider … … 2238 2238 }}} 2239 2239 2240 3. ST_ApproxStdDev(rast raster, hasnodataboolean, sample_percent double precision) -> double precision2240 3. ST_ApproxStdDev(rast raster, exclude_nodata_value boolean, sample_percent double precision) -> double precision 2241 2241 2242 2242 assumes that nband = 1 … … 2250 2250 4. ST_ApproxStdDev(rast raster, sample_percent double precision) -> double precision 2251 2251 2252 assumes that nband = 1 and hasnodata= TRUE2252 assumes that nband = 1 and exclude_nodata_value = TRUE 2253 2253 2254 2254 {{{ … … 2258 2258 5. ST_ApproxStdDev(rast raster) -> double precision 2259 2259 2260 assumes that nband = 1, hasnodata= TRUE and sample_percent = 0.12260 assumes that nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 2261 2261 2262 2262 {{{ … … 2266 2266 The following functions are provided for coverage tables. 2267 2267 2268 1. ST_StdDev(rastertable text, rastercolumn text, nband int, hasnodataboolean) -> double precision2268 1. ST_StdDev(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean) -> double precision 2269 2269 2270 2270 rastertable: name of table with raster column … … 2280 2280 2. ST_StdDev(rastertable text, rastercolumn text, nband int) -> double precision 2281 2281 2282 hasnodata= TRUE2282 exclude_nodata_value = TRUE 2283 2283 2284 2284 {{{ … … 2286 2286 }}} 2287 2287 2288 3. ST_StdDev(rastertable text, rastercolumn text, hasnodataboolean) -> double precision2288 3. ST_StdDev(rastertable text, rastercolumn text, exclude_nodata_value boolean) -> double precision 2289 2289 2290 2290 nband = 1 … … 2296 2296 4. ST_StdDev(rastertable text, rastercolumn text) -> double precision 2297 2297 2298 nband = 1 and hasnodata= TRUE2298 nband = 1 and exclude_nodata_value = TRUE 2299 2299 2300 2300 {{{ … … 2304 2304 Variations for ST_ApproxStdDev are: 2305 2305 2306 1. ST_ApproxStdDev(rastertable text, rastercolumn text, nband int, hasnodataboolean, sample_percent double precision) -> double precision2306 1. ST_ApproxStdDev(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean, sample_percent double precision) -> double precision 2307 2307 2308 2308 {{{ … … 2314 2314 2. ST_ApproxStdDev(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> double precision 2315 2315 2316 hasnodata= TRUE2316 exclude_nodata_value = TRUE 2317 2317 2318 2318 {{{ … … 2322 2322 }}} 2323 2323 2324 3. ST_ApproxStdDev(rastertable text, rastercolumn text, hasnodataboolean, sample_percent double precision) -> double precision2324 3. ST_ApproxStdDev(rastertable text, rastercolumn text, exclude_nodata_value boolean, sample_percent double precision) -> double precision 2325 2325 2326 2326 nband = 1 … … 2334 2334 4. ST_ApproxStdDev(rastertable text, rastercolumn text, sample_percent double precision) -> double precision 2335 2335 2336 nband = 1 and hasnodata= TRUE2336 nband = 1 and exclude_nodata_value = TRUE 2337 2337 2338 2338 {{{ … … 2344 2344 5. ST_ApproxStdDev(rastertable text, rastercolumn text) -> double precision 2345 2345 2346 nband = 1, hasnodata= TRUE and sample_percent = 0.12346 nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 2347 2347 2348 2348 {{{ … … 2359 2359 This function calls ST_SummaryStats and only returns the min and max values from that function. 2360 2360 2361 1. ST_MinMax(rast raster, nband int, hasnodataboolean) -> record2361 1. ST_MinMax(rast raster, nband int, exclude_nodata_value boolean) -> record 2362 2362 2363 2363 returns the record (min double precision, max double precision) … … 2365 2365 nband: index of band 2366 2366 2367 hasnodata: if FALSE, nodata values in band are included. if TRUE, nodata values are not included.2367 exclude_nodata_value: if FALSE, nodata values in band are included. if TRUE, nodata values are not included. 2368 2368 2369 2369 {{{ … … 2373 2373 2. ST_MinMax(rast raster, nband int) -> record 2374 2374 2375 assumes hasnodata= TRUE2375 assumes exclude_nodata_value = TRUE 2376 2376 2377 2377 {{{ … … 2379 2379 }}} 2380 2380 2381 3. ST_MinMax(rast raster, hasnodataboolean) -> record2381 3. ST_MinMax(rast raster, exclude_nodata_value boolean) -> record 2382 2382 2383 2383 assumes nband = 1 … … 2389 2389 4. ST_MinMax(rast raster) -> record 2390 2390 2391 assumes nband = 1 and hasnodata= TRUE2391 assumes nband = 1 and exclude_nodata_value = TRUE 2392 2392 2393 2393 {{{ … … 2397 2397 The set of ST_ApproxMinMax functions are: 2398 2398 2399 1. ST_ApproxMinMax(rast raster, nband int, hasnodataboolean, sample_percent record) -> record2399 1. ST_ApproxMinMax(rast raster, nband int, exclude_nodata_value boolean, sample_percent record) -> record 2400 2400 2401 2401 sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider … … 2417 2417 }}} 2418 2418 2419 3. ST_ApproxMinMax(rast raster, hasnodataboolean, sample_percent double precision) -> record2419 3. ST_ApproxMinMax(rast raster, exclude_nodata_value boolean, sample_percent double precision) -> record 2420 2420 2421 2421 assumes that nband = 1 … … 2429 2429 4. ST_ApproxMinMax(rast raster, sample_percent double precision) -> record 2430 2430 2431 assumes that nband = 1 and hasnodata= TRUE2431 assumes that nband = 1 and exclude_nodata_value = TRUE 2432 2432 2433 2433 {{{ … … 2437 2437 5. ST_ApproxMinMax(rast raster) -> record 2438 2438 2439 assumes that nband = 1, hasnodata= TRUE and sample_percent = 0.12439 assumes that nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 2440 2440 2441 2441 {{{ … … 2445 2445 The following functions are provided for coverage tables. 2446 2446 2447 1. ST_MinMax(rastertable text, rastercolumn text, nband int, hasnodataboolean) -> record2447 1. ST_MinMax(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean) -> record 2448 2448 2449 2449 rastertable: name of table with raster column … … 2459 2459 2. ST_MinMax(rastertable text, rastercolumn text, nband int) -> record 2460 2460 2461 hasnodata= TRUE2461 exclude_nodata_value = TRUE 2462 2462 2463 2463 {{{ … … 2465 2465 }}} 2466 2466 2467 3. ST_MinMax(rastertable text, rastercolumn text, hasnodataboolean) -> record2467 3. ST_MinMax(rastertable text, rastercolumn text, exclude_nodata_value boolean) -> record 2468 2468 2469 2469 nband = 1 … … 2475 2475 4. ST_MinMax(rastertable text, rastercolumn text) -> record 2476 2476 2477 nband = 1 and hasnodata= TRUE2477 nband = 1 and exclude_nodata_value = TRUE 2478 2478 2479 2479 {{{ … … 2483 2483 Variations for ST_ApproxMinMax are: 2484 2484 2485 1. ST_ApproxMinMax(rastertable text, rastercolumn text, nband int, hasnodataboolean, sample_percent double precision) -> record2485 1. ST_ApproxMinMax(rastertable text, rastercolumn text, nband int, exclude_nodata_value boolean, sample_percent double precision) -> record 2486 2486 2487 2487 {{{ … … 2493 2493 2. ST_ApproxMinMax(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> record 2494 2494 2495 hasnodata= TRUE2495 exclude_nodata_value = TRUE 2496 2496 2497 2497 {{{ … … 2501 2501 }}} 2502 2502 2503 3. ST_ApproxMinMax(rastertable text, rastercolumn text, hasnodataboolean, sample_percent double precision) -> record2503 3. ST_ApproxMinMax(rastertable text, rastercolumn text, exclude_nodata_value boolean, sample_percent double precision) -> record 2504 2504 2505 2505 nband = 1 … … 2513 2513 4. ST_ApproxMinMax(rastertable text, rastercolumn text, sample_percent double precision) -> record 2514 2514 2515 nband = 1 and hasnodata= TRUE2515 nband = 1 and exclude_nodata_value = TRUE 2516 2516 2517 2517 {{{ … … 2523 2523 5. ST_ApproxMinMax(rastertable text, rastercolumn text) -> record 2524 2524 2525 nband = 1, hasnodata= TRUE and sample_percent = 0.12525 nband = 1, exclude_nodata_value = TRUE and sample_percent = 0.1 2526 2526 2527 2527 {{{ … … 2540 2540 ST_Histogram has the following variations. 2541 2541 2542 1. ST_Histogram(rast raster, nband int, hasnodataboolean, bins int, width double precision[], right boolean) -> set of records2542 1. ST_Histogram(rast raster, nband int, exclude_nodata_value boolean, bins int, width double precision[], right boolean) -> set of records 2543 2543 2544 2544 returns set of records of four columns (min, max, count, percent) … … 2546 2546 nband: index of band to process on 2547 2547 2548 hasnodata: if FALSE, nodata values in band are included. if TRUE, nodata values are not included.2548 exclude_nodata_value: if FALSE, nodata values in band are included. if TRUE, nodata values are not included. 2549 2549 2550 2550 bins: the number of categories/bins to have in the histogram. If NULL or value less than one, the number of categories will be auto-computed using Sturges' formula if the number of values >= 30 or Square-root choice if number of values < 30. … … 2568 2568 }}} 2569 2569 2570 2. ST_Histogram(rast raster, nband int, hasnodataboolean, bins int, right boolean) -> set of records2570 2. ST_Histogram(rast raster, nband int, exclude_nodata_value boolean, bins int, right boolean) -> set of records 2571 2571 2572 2572 parameter "width" is not specified thus resulting in all bins having the same widths … … 2576 2576 }}} 2577 2577 2578 3. ST_Histogram(rast raster, nband int, hasnodataboolean, bins int) -> set of records2578 3. ST_Histogram(rast raster, nband int, exclude_nodata_value boolean, bins int) -> set of records 2579 2579 2580 2580 the parameter "right" is removed and assumed to be FALSE … … 2584 2584 }}} 2585 2585 2586 4. ST_Histogram(rast raster, nband int, hasnodataboolean) -> set of records2586 4. ST_Histogram(rast raster, nband int, exclude_nodata_value boolean) -> set of records 2587 2587 2588 2588 the parameter "bins" is removed and set to NULL. The function will compute the number of bins to use … … 2590 2590 5. ST_Histogram(rast raster, nband int) -> set of records 2591 2591 2592 hasnodatais assumed to be TRUE2592 exclude_nodata_value is assumed to be TRUE 2593 2593 2594 2594 6. ST_Histogram(rast raster) -> set of records … … 2598 2598 7. ST_Histogram(rast raster, nband int, bins int, width double precision[], right boolean) -> set of records 2599 2599 2600 hasnodatais assumed to be TRUE2600 exclude_nodata_value is assumed to be TRUE 2601 2601 2602 2602 8. ST_Histogram(rast raster, nband int, bins int, right boolean) -> set of records … … 2610 2610 ST_ApproxHistogram should have the following variations. 2611 2611 2612 1. ST_ApproxHistogram(rast raster, nband int, hasnodataboolean, sample_percent double precision, bins int, width double precision[], right boolean) -> set of record2612 1. ST_ApproxHistogram(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision, bins int, width double precision[], right boolean) -> set of record 2613 2613 2614 2614 sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider when generating the histogram. … … 2626 2626 }}} 2627 2627 2628 2. ST_ApproxHistogram(rast raster, nband int, hasnodataboolean, sample_percent double precision, bins int, right boolean) -> set of records2628 2. ST_ApproxHistogram(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision, bins int, right boolean) -> set of records 2629 2629 2630 2630 parameter "width" is not specified thus resulting in all bins having the same widths 2631 2631 2632 3. ST_ApproxHistogram(rast raster, nband int, hasnodataboolean, sample_percent double precision, bins int) -> set of records2632 3. ST_ApproxHistogram(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision, bins int) -> set of records 2633 2633 2634 2634 the parameter "right" is removed and assumed to be FALSE … … 2638 2638 }}} 2639 2639 2640 4. ST_ApproxHistogram(rast raster, nband int, hasnodataboolean, sample_percent double precision) -> set of records2640 4. ST_ApproxHistogram(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision) -> set of records 2641 2641 2642 2642 the parameter "bins" is removed and set to NULL so that function can compute the number of bins to use … … 2644 2644 5. ST_ApproxHistogram(rast raster, nband int, sample_percent double precision) -> set of records 2645 2645 2646 hasnodatais assumed to be TRUE2646 exclude_nodata_value is assumed to be TRUE 2647 2647 2648 2648 6. ST_ApproxHistogram(rast raster, nband int) -> set of records … … 2660 2660 9. ST_ApproxHistogram(rast raster, nband int, sample_percent double precision, bins int, width double precision[], right boolean) -> set of records 2661 2661 2662 hasnodatais assumed to be TRUE2662 exclude_nodata_value is assumed to be TRUE 2663 2663 2664 2664 10. ST_ApproxHistogram(rast raster, nband int, sample_percent double precision, bins int, right boolean) -> set of records … … 2678 2678 ST_Quantile variations: 2679 2679 2680 1. ST_Quantile(rast raster, nband int, hasnodataboolean, quantiles double precision[]) -> set of records2680 1. ST_Quantile(rast raster, nband int, exclude_nodata_value boolean, quantiles double precision[]) -> set of records 2681 2681 2682 2682 each row returned is of (quantile double precision, value double precision) … … 2684 2684 nband: index of band to process on 2685 2685 2686 hasnodata: if FALSE, nodata values in band are included. if TRUE, nodata values are not included.2686 exclude_nodata_value: if FALSE, nodata values in band are included. if TRUE, nodata values are not included. 2687 2687 2688 2688 quantiles: array of percentages to compute values for … … 2698 2698 2. ST_Quantile(rast raster, nband int, quantiles double precision[]) -> set of records 2699 2699 2700 " hasnodata" is assumed to be TRUE2700 "exclude_nodata_value" is assumed to be TRUE 2701 2701 2702 2702 {{{ … … 2704 2704 }}} 2705 2705 2706 3. ST_Quantile(rast raster, nband int, hasnodataboolean) -> set of records2706 3. ST_Quantile(rast raster, nband int, exclude_nodata_value boolean) -> set of records 2707 2707 2708 2708 "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1] … … 2710 2710 4. ST_Quantile(rast raster, nband int) -> set of records 2711 2711 2712 " hasnodata" is assumed to be TRUE and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1]2712 "exclude_nodata_value" is assumed to be TRUE and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1] 2713 2713 2714 2714 5. ST_Quantile(rast raster, quantiles double precision[]) -> set of records 2715 2715 2716 "nband" is assumed to be 1 and " hasnodata" is TRUE2716 "nband" is assumed to be 1 and "exclude_nodata_value" is TRUE 2717 2717 2718 2718 6. ST_Quantile(rast raster) -> set of records … … 2720 2720 "nband" is assumed to be 1 and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1] 2721 2721 2722 7. ST_Quantile(rast raster, nband int, hasnodataboolean, quantile double precision) -> record2722 7. ST_Quantile(rast raster, nband int, exclude_nodata_value boolean, quantile double precision) -> record 2723 2723 2724 2724 quantile: the single percentile to compute … … 2726 2726 8. ST_Quantile(rast raster, nband int, quantile double precision) -> record 2727 2727 2728 " hasnodata" is assumed to be TRUE2729 2730 9. ST_Quantile(rast raster, hasnodataboolean, quantile double precision) -> record2728 "exclude_nodata_value" is assumed to be TRUE 2729 2730 9. ST_Quantile(rast raster, exclude_nodata_value boolean, quantile double precision) -> record 2731 2731 2732 2732 "nband" is assumed to be 1 … … 2734 2734 10. ST_Quantile(rast raster, quantile double precision) -> record 2735 2735 2736 "nband" is assumed to be 1 and " hasnodata" is assumed to be TRUE2736 "nband" is assumed to be 1 and "exclude_nodata_value" is assumed to be TRUE 2737 2737 2738 2738 ST_ApproxQuantile adds a "sample_percent" indicating the percentage of the raster to sample 2739 2739 2740 1. ST_ApproxQuantile(rast raster, nband int, hasnodataboolean, sample_percent double precision, quantiles double precision[]) -> set of records2740 1. ST_ApproxQuantile(rast raster, nband int, exclude_nodata_value boolean, sample_percent double precision, quantiles double precision[]) -> set of records 2741 2741 2742 2742 nband: index of band to process on 2743 2743 2744 hasnodata: if FALSE, nodata values in band are included. if TRUE, nodata values are not included.2744 exclude_nodata_value: if FALSE, nodata values in band are included. if TRUE, nodata values are not included. 2745 2745 2746 2746 sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider when computing the quantiles … … 2758 2758 2. ST_ApproxQuantile(rast raster, nband int, sample_percent double precision, quantiles double precision[]) -> set of records 2759 2759 2760 " hasnodata" is assumed to be TRUE2760 "exclude_nodata_value" is assumed to be TRUE 2761 2761 2762 2762 {{{ … … 2766 2766 3. ST_ApproxQuantile(rast raster, nband int, sample_percent double precision) -> set of records 2767 2767 2768 " hasnodata" is assumed to be TRUE and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1]2768 "exclude_nodata_value" is assumed to be TRUE and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1] 2769 2769 2770 2770 4. ST_ApproxQuantile(rast raster, sample_percent double precision, quantiles double precision[]) -> set of records … … 2831 2831 '''ST_RasterFromText(string, [<srid>])'''[[BR]] 2832 2832 '''ST_AsText(raster)''' 2833 2834