Changeset 917 for trunk/zoo-project/zoo-services/gdal/dem
- Timestamp:
- May 7, 2019, 2:17:08 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property
svn:mergeinfo
set to
False
/branches/prototype-v0 merged eligible
-
Property
svn:mergeinfo
set to
False
-
trunk/zoo-project/zoo-services/gdal/dem/cgi-env/Gdal_Dem.zcfg
r412 r917 44 44 <Default /> 45 45 </LiteralData> 46 [co] 47 Title = Creation Option 48 Abstract = string representing options (NAME=VALUE) 49 minOccurs = 0 50 maxOccurs = 1 51 <LiteralData> 52 DataType = string 53 <Default /> 54 </LiteralData> 46 55 </DataInputs> 47 56 <DataOutputs> -
trunk/zoo-project/zoo-services/gdal/dem/service.c
r444 r917 2486 2486 setMapInMaps(outputs,"Result","value",tmpMap->value); 2487 2487 } 2488 2489 tmpMap=getMapFromMaps(inputs,"co","value"); 2490 if(tmpMap!=NULL){ 2491 papszCreateOptions = CSLAddString( papszCreateOptions, tmpMap->value ); 2492 map* tmpMap1; 2493 maps* tmpMaps=getMaps(inputs,"co"); 2494 if((tmpMap1=getMapFromMaps(inputs,"co","length"))!=NULL){ 2495 int i=1; 2496 int length=atoi(tmpMap1->value); 2497 for(;i<length;i++){ 2498 tmpMap=getMapArray(tmpMaps->content,"value",i); 2499 papszCreateOptions = CSLAddString( papszCreateOptions, tmpMap->value ); 2500 } 2501 } 2502 } 2488 2503 2489 2504 tmpMap=NULL;
Note: See TracChangeset
for help on using the changeset viewer.