[50] | 1 | /* **************************************************************************** |
---|
| 2 | * $Id$ |
---|
| 3 | * |
---|
| 4 | * Project: GdalExtractProfile |
---|
| 5 | * Purpose: Extract Profile from a Raster file for an Input Geometry (LINE) |
---|
| 6 | * Author: Gérald Fenoy, gerald.fenoy@geolabs.fr |
---|
| 7 | * |
---|
| 8 | * **************************************************************************** |
---|
[102] | 9 | * Copyright (c) 2010-2011, GeoLabs SARL |
---|
[50] | 10 | * |
---|
| 11 | * Permission is hereby granted, free of charge, to any person obtaining a |
---|
| 12 | * copy of this software and associated documentation files (the "Software"), |
---|
| 13 | * to deal in the Software without restriction, including without limitation |
---|
| 14 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
---|
| 15 | * and/or sell copies of the Software, and to permit persons to whom the |
---|
| 16 | * Software is furnished to do so, subject to the following conditions: |
---|
| 17 | * |
---|
| 18 | * The above copyright notice and this permission notice shall be included |
---|
| 19 | * in all copies or substantial portions of the Software. |
---|
| 20 | * |
---|
| 21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
---|
| 22 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
| 23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
---|
| 24 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
| 25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
---|
| 26 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
| 27 | * DEALINGS IN THE SOFTWARE. |
---|
| 28 | ****************************************************************************/ |
---|
| 29 | |
---|
| 30 | #ifdef ZOO_SERVICE |
---|
| 31 | #include "service.h" |
---|
[102] | 32 | #include "service_internal.h" |
---|
[50] | 33 | #endif |
---|
| 34 | #include "gdal.h" |
---|
| 35 | #include "cpl_conv.h" |
---|
| 36 | #include "ogr_api.h" |
---|
[961] | 37 | #if GDAL_VERSION_MAJOR >= 2 |
---|
| 38 | #include <gdal_priv.h> |
---|
| 39 | #endif |
---|
[50] | 40 | |
---|
| 41 | #ifdef ZOO_SERVICE |
---|
| 42 | extern "C" { |
---|
| 43 | #endif |
---|
| 44 | |
---|
[371] | 45 | #ifdef WIN32 |
---|
| 46 | __declspec(dllexport) |
---|
| 47 | #endif |
---|
[50] | 48 | #ifdef ZOO_SERVICE |
---|
| 49 | int GdalExtractProfile(maps*& conf,maps*& inputs,maps*& outputs) |
---|
| 50 | #else |
---|
| 51 | int main(int argc,char** argv) |
---|
| 52 | #endif |
---|
| 53 | { |
---|
| 54 | char *pszFilename; |
---|
| 55 | #ifdef ZOO_SERVICE |
---|
| 56 | map* tmp=NULL; |
---|
| 57 | map* tmp1=NULL; |
---|
| 58 | tmp=getMapFromMaps(conf,"main","dataPath"); |
---|
| 59 | tmp1=getMapFromMaps(inputs,"RasterFile","value"); |
---|
| 60 | pszFilename=(char *)malloc((2+strlen(tmp->value)+strlen(tmp1->value))*sizeof(char)); |
---|
| 61 | sprintf(pszFilename,"%s/%s",tmp->value,tmp1->value); |
---|
| 62 | #else |
---|
| 63 | pszFilename=argv[1]; |
---|
| 64 | #endif |
---|
| 65 | GDALDatasetH hDataset; |
---|
| 66 | GDALAllRegister(); |
---|
| 67 | OGRRegisterAll(); |
---|
| 68 | |
---|
| 69 | hDataset = GDALOpen( pszFilename, GA_ReadOnly ); |
---|
[102] | 70 | free(pszFilename); |
---|
[50] | 71 | if( hDataset != NULL ) |
---|
| 72 | { |
---|
| 73 | GDALDriverH hDriver; |
---|
| 74 | double adfGeoTransform[6]; |
---|
| 75 | |
---|
| 76 | if( GDALGetGeoTransform( hDataset, adfGeoTransform ) == CE_None ) |
---|
| 77 | { |
---|
| 78 | |
---|
| 79 | |
---|
| 80 | GDALRasterBandH hBand; |
---|
| 81 | int nBlockXSize, nBlockYSize; |
---|
| 82 | int bGotMin, bGotMax; |
---|
| 83 | double adfMinMax[2]; |
---|
| 84 | |
---|
| 85 | hBand = GDALGetRasterBand( hDataset, 1 ); |
---|
| 86 | |
---|
| 87 | adfMinMax[0] = GDALGetRasterMinimum( hBand, &bGotMin ); |
---|
| 88 | adfMinMax[1] = GDALGetRasterMaximum( hBand, &bGotMax ); |
---|
| 89 | if( ! (bGotMin && bGotMax) ) |
---|
[371] | 90 | GDALComputeRasterMinMax( hBand, TRUE, adfMinMax ); |
---|
[50] | 91 | #ifdef ZOO_SERVICE |
---|
[961] | 92 | OGRGeometryH geometry=NULL; |
---|
| 93 | // Verify if there is a cache file for this input, use it if available |
---|
| 94 | tmp1=getMapFromMaps(inputs,"Geometry","cache_file"); |
---|
| 95 | if(tmp1!=NULL){ |
---|
| 96 | #if GDAL_VERSION_MAJOR >= 2 |
---|
| 97 | char* pszDataSource=strdup(tmp1->value); |
---|
| 98 | GDALDatasetH poDS |
---|
| 99 | = GDALOpenEx( pszDataSource, |
---|
| 100 | GDAL_OF_READONLY | GDAL_OF_VECTOR, |
---|
| 101 | NULL, NULL, NULL ); |
---|
| 102 | #endif |
---|
| 103 | for( int iLayer = 0; iLayer < OGR_DS_GetLayerCount(poDS) ; |
---|
| 104 | iLayer++ ) |
---|
| 105 | { |
---|
| 106 | OGRLayerH poLayer = OGR_DS_GetLayer(poDS,iLayer); |
---|
| 107 | |
---|
| 108 | if( poLayer == NULL ) |
---|
| 109 | { |
---|
| 110 | fprintf( stderr, "FAILURE: Couldn't fetch advertised layer %d!\n", |
---|
| 111 | iLayer ); |
---|
| 112 | char tmp[1024]; |
---|
| 113 | sprintf(tmp,"Couldn't fetch advertised layer %d!",iLayer); |
---|
| 114 | setMapInMaps(conf,"lenv","message",tmp); |
---|
| 115 | return SERVICE_FAILED; |
---|
| 116 | } |
---|
| 117 | OGRFeatureH poFeature; |
---|
| 118 | int nFeaturesInTransaction = 0; |
---|
| 119 | int fCount=0; |
---|
| 120 | OGR_L_ResetReading(poLayer); |
---|
| 121 | while( TRUE ) |
---|
| 122 | { |
---|
| 123 | poFeature = OGR_L_GetNextFeature(poLayer); |
---|
| 124 | if( poFeature == NULL ){ |
---|
| 125 | break; |
---|
| 126 | } |
---|
| 127 | geometry=OGR_G_Clone(OGR_F_GetGeometryRef(poFeature)); |
---|
| 128 | OGR_F_Destroy( poFeature ); |
---|
| 129 | } |
---|
| 130 | |
---|
| 131 | } |
---|
| 132 | } |
---|
| 133 | else{ |
---|
[50] | 134 | tmp1=getMapFromMaps(inputs,"Geometry","value"); |
---|
[961] | 135 | geometry=OGR_G_CreateGeometryFromJson(tmp1->value); |
---|
| 136 | } |
---|
[50] | 137 | #else |
---|
| 138 | OGRGeometryH geometry=OGR_G_CreateGeometryFromJson(argv[2]); |
---|
| 139 | #endif |
---|
[371] | 140 | |
---|
[50] | 141 | OGR_G_Segmentize(geometry, adfGeoTransform[1]); |
---|
| 142 | int nbGeom=OGR_G_GetPointCount(geometry); |
---|
| 143 | int k=0; |
---|
| 144 | double ppx=0,ppy=0; |
---|
| 145 | double value; |
---|
| 146 | char *buffer=NULL; |
---|
| 147 | int length=0; |
---|
| 148 | buffer=(char*)malloc(37*sizeof(char)); |
---|
| 149 | sprintf(buffer,"{\"type\":\"LineString\",\"coordinates\":["); |
---|
| 150 | length+=strlen(buffer); |
---|
| 151 | for(k=0;k<nbGeom;k++){ |
---|
[102] | 152 | //OGRGeometryH point; |
---|
[50] | 153 | double prx,pry,prz; |
---|
| 154 | OGR_G_GetPoint(geometry,k,&prx,&pry,&prz); |
---|
| 155 | float *pafScanline; |
---|
| 156 | pafScanline = (float *) CPLMalloc(sizeof(float)); |
---|
| 157 | int px=(int)floor((prx-adfGeoTransform[0])/adfGeoTransform[1]); |
---|
| 158 | int py=(int)floor((pry-adfGeoTransform[3])/adfGeoTransform[5]); |
---|
| 159 | if(px!=ppx || py!=ppy){ |
---|
| 160 | if(GDALRasterIO( hBand, GF_Read, px, py, 1, 1, |
---|
| 161 | pafScanline, 1, 1, GDT_Float32, |
---|
| 162 | 0, 0 ) != CE_None){ |
---|
| 163 | char *tmp; |
---|
| 164 | tmp=(char*) malloc(300*sizeof(char)); |
---|
| 165 | sprintf(tmp,"GDALRasterIO failed for point (%d,%d)",px,py); |
---|
| 166 | setMapInMaps(conf,"lenv","message",_ss(tmp)); |
---|
[102] | 167 | CPLFree(pafScanline); |
---|
| 168 | free(tmp); |
---|
[50] | 169 | return SERVICE_FAILED; |
---|
| 170 | } |
---|
[102] | 171 | if(buffer!=NULL){ |
---|
| 172 | int len=strlen(buffer); |
---|
| 173 | buffer=(char*)realloc(buffer,(len+50+1)*sizeof(char)); |
---|
| 174 | } |
---|
[50] | 175 | else |
---|
| 176 | buffer=(char*)malloc((51)*sizeof(char)); |
---|
| 177 | char *tmpValue=(char *)malloc(50*sizeof(char)); |
---|
| 178 | sprintf(tmpValue,"[%.6f,%.6f,%.6f]%c",prx,pry,pafScanline[0],(k+1==nbGeom?' ':',')); |
---|
[102] | 179 | strncpy(buffer+length,tmpValue,strlen(tmpValue)); |
---|
[50] | 180 | length+=strlen(tmpValue); |
---|
[102] | 181 | buffer[length]=0; |
---|
[50] | 182 | value=pafScanline[0]; |
---|
[102] | 183 | free(tmpValue); |
---|
[50] | 184 | //Usefull if we can export 3D JSON string at the end |
---|
| 185 | //OGR_G_SetPoint(geometry,k,prx,pry,pafScanline[0]); |
---|
| 186 | } |
---|
| 187 | else{ |
---|
[102] | 188 | if(buffer!=NULL) |
---|
[50] | 189 | buffer=(char*)realloc(buffer,(strlen(buffer)+50+1)*sizeof(char)); |
---|
| 190 | else |
---|
| 191 | buffer=(char*)malloc((51)*sizeof(char)); |
---|
| 192 | char *tmpValue=(char *)malloc(50*sizeof(char)); |
---|
| 193 | sprintf(tmpValue,"[%.6f,%.6f,%.6f]%c",prx,pry,value,(k+1==nbGeom?' ':',')); |
---|
[102] | 194 | strncpy(buffer+length,tmpValue,strlen(tmpValue)); |
---|
[50] | 195 | length+=strlen(tmpValue); |
---|
[102] | 196 | buffer[length]=0; |
---|
| 197 | free(tmpValue); |
---|
[50] | 198 | value=value; |
---|
| 199 | } |
---|
[102] | 200 | CPLFree(pafScanline); |
---|
[50] | 201 | ppx=px; |
---|
| 202 | ppy=py; |
---|
| 203 | } |
---|
| 204 | buffer=(char*)realloc(buffer,(strlen(buffer)+3)*sizeof(char)); |
---|
| 205 | char *tmpValue=(char *)malloc(3*sizeof(char)); |
---|
| 206 | sprintf(tmpValue,"]}"); |
---|
[102] | 207 | tmpValue[2]=0; |
---|
| 208 | strncpy(buffer+length,tmpValue,strlen(tmpValue)); |
---|
| 209 | length+=strlen(tmpValue); |
---|
| 210 | buffer[length]=0; |
---|
[50] | 211 | #ifdef ZOO_SERVICE |
---|
| 212 | setMapInMaps(outputs,"Profile","value",buffer); |
---|
| 213 | setMapInMaps(outputs,"Profile","mimeType","text/plain"); |
---|
| 214 | #else |
---|
| 215 | fprintf(stderr,"%s\n",buffer); |
---|
| 216 | #endif |
---|
[102] | 217 | free(buffer); |
---|
| 218 | free(tmpValue); |
---|
| 219 | OGR_G_DestroyGeometry(geometry); |
---|
[50] | 220 | } |
---|
| 221 | } |
---|
| 222 | else{ |
---|
| 223 | #ifdef ZOO_SERVICE |
---|
| 224 | setMapInMaps(conf,"lenv","message",_ss("Unable to load your raster file !")); |
---|
| 225 | return SERVICE_FAILED; |
---|
| 226 | #else |
---|
| 227 | printf("Unable to load your raster file %s !\n",argv[1]); |
---|
| 228 | #endif |
---|
| 229 | } |
---|
[945] | 230 | GDALClose(hDataset); |
---|
[102] | 231 | OGRCleanupAll(); |
---|
| 232 | GDALDestroyDriverManager(); |
---|
[50] | 233 | #ifdef ZOO_SERVICE |
---|
| 234 | return SERVICE_SUCCEEDED; |
---|
| 235 | #endif |
---|
| 236 | } |
---|
| 237 | |
---|
| 238 | #ifdef ZOO_SERVICE |
---|
| 239 | } |
---|
| 240 | #endif |
---|