Changes between Version 46 and Version 47 of PostGIS_Raster_SoC_Idea_2012/Distance_Analysis_Tools
- Timestamp:
- 06/18/12 22:39:00 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PostGIS_Raster_SoC_Idea_2012/Distance_Analysis_Tools
v46 v47 487 487 Generate one single raster (rectan) in which pixel values represent the Euclidean distance from the center of the pixels to the center of its nearest source point. 488 488 * Proposed Algorithm: 489 * Scan through pixels, compute the KNN index for each pixel to its nearest source point, assign Euclidean distance using the coordinates of the center of the pixel and the center of its nearest source point (d(dx,dy) = sqrt(dx^2 + dy^2)). If distance exceed max_distance specified, NoData value is used instead.489 * Scan through pixels, compute the KNN index for each pixel to its nearest source point, assign Euclidean distance using the coordinates of the center of the pixel and the center of its nearest source point (d(dx,dy) = sqrt(dx^2^ + dy^2^)). If distance exceed max_distance specified, NoData value is used instead. 490 490 * Create a single raster with distance as pixel value (ST_RasterFromText()?) using dimensions and georeferencing information specified 491 491 * Scalability: