Custom Query (2765 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 2765)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#468 worksforme wms-import utilitites to allow connect file as parameter Vlad Merticariu abeccati
Description

applications/rasgeo/wms-import/utilities should allow connect file to be specified on command line to allow call with non default connection parameters.

change default expected location (asked by Peter) from user's home to RMANHOME/etc (or /etc), anyways to the default rasdaman installation config dir.

Todo:

  • List utils to be updated

Done:

  • init_wms
#2513 fixed wms - SLD parser error for special characters < and > Bang Pham Huu Bang Pham Huu
Description

With this SLD below, petascope has problem to parse it.

<?xml version="1.0" encoding="UTF-8"?>
<StyledLayerDescriptor xmlns="http://www.opengis.net/sld" xmlns:gml="http://www.opengis.net/gml" xmlns:sld="http://www.opengis.net/sld" version="1.0.0" xmlns:ogc="http://www.opengis.net/ogc">
  <UserLayer>
    <sld:LayerFeatureConstraints>
      <sld:FeatureTypeConstraint/>
    </sld:LayerFeatureConstraints>
    <sld:UserStyle>
      <sld:Name>2018-07-01_m1_LAI2_E34N34</sld:Name>
      <sld:FeatureTypeStyle>
        <sld:Rule>
          <sld:RasterSymbolizer>
            <sld:ChannelSelection>
              <sld:GrayChannel>
                <sld:SourceChannelName>1</sld:SourceChannelName>
              </sld:GrayChannel>
            </sld:ChannelSelection>
            <sld:ColorMap type="ramp">
              <sld:ColorMapEntry color="#ffffff" label="&lt; 0.25" quantity="250"/>
              <sld:ColorMapEntry color="#fff9d9" label="0.5" quantity="500"/>
              <sld:ColorMapEntry color="#e6f6e1" label="1.0" quantity="1000"/>
              <sld:ColorMapEntry color="#caeac3" label="2.0" quantity="2000"/>
              <sld:ColorMapEntry color="#a6db9f" label="3.0" quantity="3000"/>
              <sld:ColorMapEntry color="#7bc87c" label="4.0" quantity="4000"/>
              <sld:ColorMapEntry color="#4bb062" label="5.0" quantity="5000"/>
              <sld:ColorMapEntry color="#2a924a" label="6.0" quantity="6000"/>
              <sld:ColorMapEntry color="#077331" label="7.0" quantity="7000"/>
              <sld:ColorMapEntry color="#022f00" label="> 7.5" quantity="7500"/>
            </sld:ColorMap>
          </sld:RasterSymbolizer>
        </sld:Rule>
      </sld:FeatureTypeStyle>
    </sld:UserStyle>
  </UserLayer>
</StyledLayerDescriptor>

with error

Caused by: org.xml.sax.SAXParseException; lineNumber: 17; columnNumber: 57; XML document structures must start and end within the same entity.
	at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)

#1511 fixed with debug parameters, rasdaman experiences a few extra memory leaks bbell bbell
Description

the r_Minterval and r_Point methods ::get_string_representation() allocates memory; however, in some of the debug statements, this function is simply being called in order to output some information.

find the places in the code where this occurs and ensure that correct memory handling is applied.

example stack trace:

==6362== 3 bytes in 1 blocks are definitely lost in loss record 2 of 382
==6362==    at 0x4C27BE3: malloc (vg_replace_malloc.c:299)
==6362==    by 0xBC82889: strdup (in /usr/lib64/libc-2.17.so)
==6362==    by 0xA8DFDD: r_Minterval::get_string_representation() const (minterval.cc:903)
==6362==    by 0x900A13: NullValuesHandler::getNullValues() const (nullvalues.cc:56)
==6362==    by 0x9CEA42: QtConversion::evaluate(std::vector<QtData*, std::allocator<QtData*> >*) (qtconversion.cc:223)
==6362==    by 0x9EFAD4: QtOperationIterator::next() (qtoperationiterator.cc:253)
==6362==    by 0xA12EFC: QueryTree::evaluateRetrieval() (querytree.cc:174)
==6362==    by 0x944599: ServerComm::executeQuery(unsigned long, char const*, ExecuteQueryRes&) (servercomm2.cc:1651)
==6362==    by 0x7B2F3A: doStuff() (directql.cc:1109)
==6362==    by 0x7B3655: main (directql.cc:1176)

for the following commmand:

valgrind --leak-check=full --track-origins=yes directql -q 'select csv(concat (marray x in [ 10 : 31 , 0 : 23 ] values (c[ 2014 , 1 ,x[0],x[1], 50 , 450 , 450 ])) with (marray x in [ 1 : 28 , 0 : 23 ] values (c[ 2014 , 2 ,x[0],x[1], 50 , 450 , 450 ])) with (marray x in [ 1 : 12 , 0 : 23 ] values (c[ 2014 , 3 ,x[0],x[1], 50 , 450 , 450 ])) along 0) from MemTestData as c' --out string -d ~/projects/install/data/RASBASE
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.