Bocher Erwan
Bocher Erwan
ST_Extrema permits to compute the min and max value of a GeoRaster. Nodata is excluded when the band as a nodata value The input GeoRaster must contains only one band.
Renjin is able to custom the package loading using the AetherPackageLoader. What about methods to manage maven repositories on the fly from the RenjinScriptEngine.eval() ? For examples addRemoteRepository("internal", "default", "https://repo.acme.com/content/groups/public/"...
OSGI bundle
Hi, Firstly, thanks a lot for this excellent job. We use your library in open source project OrbisGIS. Our system architecture is based on OSGI. We'd like to know if...
The unit test withBatchTest checks the table assert 3 == h2gis.ELEMENTS.features.size() instead of h2gis.INSERTIONS see https://github.com/orbisgis/orbisgis/blob/dev/datastore/jdbc-utils/src/test/groovy/org/orbisgis/datastore/jdbcutils/JDBCDataStoreUtilsTest.groovy#L750
This PR proposes a module to convert sql expression (select and where) to geotools ECQL filter of expression Examples with SQL expressions ``` ST_AREA(the_geom)+(1 - ST_LENGTH(the_geom))/12 is transformed to (Area([the_geom])+((1-geomLength([the_geom]))/12))...
Here : https://github.com/Ifsttar/NoiseModelling/blob/e4ceffa42f81c88e271ebc5703c253466b4d00b2/wps_scripts/src/main/groovy/org/noise_planet/noisemodelling/wps/NoiseModelling/Noise_level_from_traffic.groovy#L350 - 3857 must be removed because it's a metric system. - and the SRID unit must be checked regarding the value available in the column srtext of...
Since CNOSSOS implementation, the name of the fields uses to describe the input data have been changed. e.g the field day_lv_hour has been replaced by [LV_D](https://github.com/Ifsttar/NoiseModelling/blob/cnossos/wps_scripts/src/main/groovy/org/noise_planet/noisemodelling/wps/NoiseModelling/Noise_level_from_traffic.groovy#L67) for the road table...
The slope definition available here https://github.com/Ifsttar/NoiseModelling/blob/cnossos/wps_scripts/src/main/groovy/org/noise_planet/noisemodelling/wps/NoiseModelling/Noise_level_from_traffic.groovy#L83 says "If the field is not filled in, the LINESTRING z-values will be used to calculate..." What about if the LINESTRING has a 2...
The road table uses the WAY name to define the direction of the road. Here the input field : https://github.com/Ifsttar/NoiseModelling/blob/cnossos/wps_scripts/src/main/groovy/org/noise_planet/noisemodelling/wps/NoiseModelling/Noise_level_from_traffic.groovy#L83 I find it a bit confusing.
Here https://github.com/Ifsttar/NoiseModelling/blob/cnossos/wps_scripts/src/main/groovy/org/noise_planet/noisemodelling/wps/NoiseModelling/Noise_level_from_traffic.groovy#L67 the hourly average light vehicle count is expressed as double. Shouldn't it be in integer ?