From trondmm-mapserver+2017 at crusaders.no Fri Dec 1 08:19:14 2017 From: trondmm-mapserver+2017 at crusaders.no (Trond Michelsen) Date: Fri, 1 Dec 2017 17:19:14 +0100 Subject: [mapserver-users] Georeferencing a raster without worldfile Message-ID: <20171201161914.GA21830@crusaders.no> Hi. I'm using mapserver 7.0.0 I have about 250.000 raster images that I want to serve through mapserver. They are all 1195x1550 pixels, and they all cover the exact same area (UTM33N -75000,6450000,1120000,8000000). All images has a resolution of 1km per pixel. I also have a worldfile that works: --8<-- 1000 0.0 0.0 -1000 -75000 8000000 --8<-- What I want to avoid, is to have one worldfile for each of the 250.000 files. I have tried to use a processing directive, like the documentation says: --8<-- WORLDFILE= Specifies an alternative world file (for georeferencing). If a path only is specified, the base name of the dataset will be appended. The suffix (.wld / .tfw / ...) can be omitted. Example: PROCESSING "WORLDFILE=/path/" or PROCESSING "WORLDFILE=/path/file.wld" or PROCESSING "WORLDFILE=/path/file" --8<-- But adding PROCESSING "WORLDFILE=/path/to/my/worldfile.wld" to my mapfile has, as far as I can tell, absolutely no effect. The projection on the layer is defined like this: PROJECTION "+init=epsg:32633" END If I change that to PROJECTION "+init=epsg:32633 +units=km" END My layer will turn up at 0,0,1195000,1550000 in EPSG:32633 In theory, if I added easting and northing to the projection definition, like this: PROJECTION "+init=epsg:32633 +units=km +x_0=-75000 +y_0=6450000" END It should position itself properly, but proj does not allow easting or northing to the UTM projections. The documetation also states: --8<-- wms_extent For Rasters served through WMS, MapServer can now use the wms_extent metadata parameter to register the image. If a .wld file cannot be found, MapServer will then look for the wms_extent metadata parameter and use the extents of the image and the size of the image for georegistration. --8<-- However, if I add METADATA "wms_extent" "-75000 6450000 1120000 8000000" END to the layer, it has no effect. So... What am I doing wrong? How do I get my files to show up where they're supposed to? -- Trond Michelsen From david.fawcett at state.mn.us Fri Dec 1 08:38:38 2017 From: david.fawcett at state.mn.us (Fawcett, David (MNIT)) Date: Fri, 1 Dec 2017 16:38:38 +0000 Subject: [mapserver-users] Georeferencing a raster without worldfile In-Reply-To: <20171201161914.GA21830@crusaders.no> References: <20171201161914.GA21830@crusaders.no> Message-ID: If these are .tif files, can you write the georeference info to internal metadata as a way to avoid a .tfw file? -----Original Message----- From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of Trond Michelsen Sent: Friday, December 01, 2017 10:19 AM To: Mapserver Subject: [mapserver-users] Georeferencing a raster without worldfile Hi. I'm using mapserver 7.0.0 I have about 250.000 raster images that I want to serve through mapserver. They are all 1195x1550 pixels, and they all cover the exact same area (UTM33N -75000,6450000,1120000,8000000). All images has a resolution of 1km per pixel. I also have a worldfile that works: --8<-- 1000 0.0 0.0 -1000 -75000 8000000 --8<-- What I want to avoid, is to have one worldfile for each of the 250.000 files. I have tried to use a processing directive, like the documentation says: --8<-- WORLDFILE= Specifies an alternative world file (for georeferencing). If a path only is specified, the base name of the dataset will be appended. The suffix (.wld / .tfw / ...) can be omitted. Example: PROCESSING "WORLDFILE=/path/" or PROCESSING "WORLDFILE=/path/file.wld" or PROCESSING "WORLDFILE=/path/file" --8<-- But adding PROCESSING "WORLDFILE=/path/to/my/worldfile.wld" to my mapfile has, as far as I can tell, absolutely no effect. The projection on the layer is defined like this: PROJECTION "+init=epsg:32633" END If I change that to PROJECTION "+init=epsg:32633 +units=km" END My layer will turn up at 0,0,1195000,1550000 in EPSG:32633 In theory, if I added easting and northing to the projection definition, like this: PROJECTION "+init=epsg:32633 +units=km +x_0=-75000 +y_0=6450000" END It should position itself properly, but proj does not allow easting or northing to the UTM projections. The documetation also states: --8<-- wms_extent For Rasters served through WMS, MapServer can now use the wms_extent metadata parameter to register the image. If a .wld file cannot be found, MapServer will then look for the wms_extent metadata parameter and use the extents of the image and the size of the image for georegistration. --8<-- However, if I add METADATA "wms_extent" "-75000 6450000 1120000 8000000" END to the layer, it has no effect. So... What am I doing wrong? How do I get my files to show up where they're supposed to? -- Trond Michelsen _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users From trondmm-mapserver+2017 at crusaders.no Fri Dec 1 08:50:54 2017 From: trondmm-mapserver+2017 at crusaders.no (Trond Michelsen) Date: Fri, 1 Dec 2017 17:50:54 +0100 Subject: [mapserver-users] Georeferencing a raster without worldfile In-Reply-To: References: <20171201161914.GA21830@crusaders.no> Message-ID: <20171201165054.GB21830@crusaders.no> Thank you for the suggestion. Unfortunately, I forgot to mention that they're png-files. -- Trond Michelsen On Fri, Dec 01, 2017 at 04:38:38PM +0000, Fawcett, David (MNIT) wrote: > If these are .tif files, can you write the georeference info to internal metadata as a way to avoid a .tfw file? > > -----Original Message----- > From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of Trond Michelsen > Sent: Friday, December 01, 2017 10:19 AM > To: Mapserver > Subject: [mapserver-users] Georeferencing a raster without worldfile > > Hi. > > I'm using mapserver 7.0.0 > > I have about 250.000 raster images that I want to serve through mapserver. They are all 1195x1550 pixels, and they all cover the exact same area (UTM33N -75000,6450000,1120000,8000000). All images has a resolution of 1km per pixel. > > I also have a worldfile that works: > --8<-- > 1000 > 0.0 > 0.0 > -1000 > -75000 > 8000000 > --8<-- > > What I want to avoid, is to have one worldfile for each of the 250.000 files. > > I have tried to use a processing directive, like the documentation says: > > --8<-- > WORLDFILE= > Specifies an alternative world file (for georeferencing). If a > path only is specified, the base name of the dataset will be > appended. The suffix (.wld / .tfw / ...) can be omitted. > > Example: > > PROCESSING "WORLDFILE=/path/" > or > PROCESSING "WORLDFILE=/path/file.wld" > or > PROCESSING "WORLDFILE=/path/file" > --8<-- > > But adding > > PROCESSING "WORLDFILE=/path/to/my/worldfile.wld" > > to my mapfile has, as far as I can tell, absolutely no effect. > > > The projection on the layer is defined like this: > > PROJECTION > "+init=epsg:32633" > END > > > If I change that to > > PROJECTION > "+init=epsg:32633 +units=km" > END > > My layer will turn up at 0,0,1195000,1550000 in EPSG:32633 > > In theory, if I added easting and northing to the projection definition, like this: > > PROJECTION > "+init=epsg:32633 +units=km +x_0=-75000 +y_0=6450000" > END > > It should position itself properly, but proj does not allow easting or northing to the UTM projections. > > The documetation also states: > > --8<-- > wms_extent > > For Rasters served through WMS, MapServer can now use the > wms_extent metadata parameter to register the image. If a .wld > file cannot be found, MapServer will then look for the wms_extent > metadata parameter and use the extents of the image and the size > of the image for georegistration. > --8<-- > > However, if I add > > METADATA > "wms_extent" "-75000 6450000 1120000 8000000" > END > > to the layer, it has no effect. > > > So... What am I doing wrong? How do I get my files to show up where they're supposed to? > > > -- > Trond Michelsen > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users From richard.greenwood at gmail.com Fri Dec 1 09:55:34 2017 From: richard.greenwood at gmail.com (Richard Greenwood) Date: Fri, 1 Dec 2017 10:55:34 -0700 Subject: [mapserver-users] Georeferencing a raster without worldfile In-Reply-To: <20171201165054.GB21830@crusaders.no> References: <20171201161914.GA21830@crusaders.no> <20171201165054.GB21830@crusaders.no> Message-ID: On Fri, Dec 1, 2017 at 9:50 AM, Trond Michelsen < trondmm-mapserver+2017 at crusaders.no> wrote: > Thank you for the suggestion. Unfortunately, I forgot to mention that > they're png-files. > > -- > Trond Michelsen > > > On Fri, Dec 01, 2017 at 04:38:38PM +0000, Fawcett, David (MNIT) wrote: > > If these are .tif files, can you write the georeference info to internal > metadata as a way to avoid a .tfw file? > > > > -----Original Message----- > > From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] > On Behalf Of Trond Michelsen > > Sent: Friday, December 01, 2017 10:19 AM > > To: Mapserver > > Subject: [mapserver-users] Georeferencing a raster without worldfile > > > > Hi. > > > > I'm using mapserver 7.0.0 > > > > I have about 250.000 raster images that I want to serve through > mapserver. They are all 1195x1550 pixels, and they all cover the exact same > area (UTM33N -75000,6450000,1120000,8000000). All images has a > resolution of 1km per pixel. > > > > I also have a worldfile that works: > > --8<-- > > 1000 > > 0.0 > > 0.0 > > -1000 > > -75000 > > 8000000 > > --8<-- > > > > What I want to avoid, is to have one worldfile for each of the 250.000 > files. > > > > I have tried to use a processing directive, like the documentation says: > > > > --8<-- > > WORLDFILE= > > Specifies an alternative world file (for georeferencing). If a > > path only is specified, the base name of the dataset will be > > appended. The suffix (.wld / .tfw / ...) can be omitted. > > > > Example: > > > > PROCESSING "WORLDFILE=/path/" > > or > > PROCESSING "WORLDFILE=/path/file.wld" > > or > > PROCESSING "WORLDFILE=/path/file" > > --8<-- > > > > But adding > > > > PROCESSING "WORLDFILE=/path/to/my/worldfile.wld" > > > > to my mapfile has, as far as I can tell, absolutely no effect. > > > > > > The projection on the layer is defined like this: > > > > PROJECTION > > "+init=epsg:32633" > > END > > > > > > If I change that to > > > > PROJECTION > > "+init=epsg:32633 +units=km" > > END > > > > My layer will turn up at 0,0,1195000,1550000 in EPSG:32633 > > > > In theory, if I added easting and northing to the projection definition, > like this: > > PROJECTION > > "+init=epsg:32633 +units=km +x_0=-75000 +y_0=6450000" > > END > > > > It should position itself properly, but proj does not allow easting or > northing to the UTM projections. > You can specify the full proj style definition instead of the "init=epsg:xxxx" format. So maybe something like: PROJECTION +proj=tmerc +lat_0=0.0 +lon_0=15 # not sure this is correct long0 is for zone 33 +x_0=-75000 +y_0=6450000 +a=6378137.0 +b=6356752.3141403 +datum=WGS84 +units=km END > The documetation also states: > > > > --8<-- > > wms_extent > > > > For Rasters served through WMS, MapServer can now use the > > wms_extent metadata parameter to register the image. If a .wld > > file cannot be found, MapServer will then look for the wms_extent > > metadata parameter and use the extents of the image and the size > > of the image for georegistration. > > --8<-- > > > > However, if I add > > > > METADATA > > "wms_extent" "-75000 6450000 1120000 8000000" > > END > > > > to the layer, it has no effect. > > > > > > So... What am I doing wrong? How do I get my files to show up where > they're supposed to? > > > > > > -- > > Trond Michelsen > > _______________________________________________ > > mapserver-users mailing list > > mapserver-users at lists.osgeo.org > > https://lists.osgeo.org/mailman/listinfo/mapserver-users > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > -- Richard W. Greenwood, PLS www.greenwoodmap.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From jukka.rahkonen at maanmittauslaitos.fi Fri Dec 1 12:29:38 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Fri, 1 Dec 2017 20:29:38 +0000 Subject: [mapserver-users] Georeferencing a raster without worldfile Message-ID: <508baa9fdebd40ada1c4b21747757b78@C119S212VM042.msvyvi.vaha.local> Hi, One alternative could be to read your png files through GDAL virtual raster http://www.gdal.org/gdal_vrttut.html Problem that you should solve is how to inject the file name into the SourceFilename element utm.tif But the wms_extent metadata seems quite promising to me. You could then change the file with %variable% in DATA. How did you test that it has no effect? -Jukka Rahkonen- L?hett?j?: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] Puolesta Richard Greenwood L?hetetty: 1. joulukuuta 2017 19:56 Vastaanottaja: Trond Michelsen Kopio: Mapserver Aihe: Re: [mapserver-users] Georeferencing a raster without worldfile On Fri, Dec 1, 2017 at 9:50 AM, Trond Michelsen > wrote: Thank you for the suggestion. Unfortunately, I forgot to mention that they're png-files. -- Trond Michelsen On Fri, Dec 01, 2017 at 04:38:38PM +0000, Fawcett, David (MNIT) wrote: > If these are .tif files, can you write the georeference info to internal metadata as a way to avoid a .tfw file? > > -----Original Message----- > From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of Trond Michelsen > Sent: Friday, December 01, 2017 10:19 AM > To: Mapserver > > Subject: [mapserver-users] Georeferencing a raster without worldfile > > Hi. > > I'm using mapserver 7.0.0 > > I have about 250.000 raster images that I want to serve through mapserver. They are all 1195x1550 pixels, and they all cover the exact same area (UTM33N -75000,6450000,1120000,8000000). All images has a resolution of 1km per pixel. > > I also have a worldfile that works: > --8<-- > 1000 > 0.0 > 0.0 > -1000 > -75000 > 8000000 > --8<-- > > What I want to avoid, is to have one worldfile for each of the 250.000 files. > > I have tried to use a processing directive, like the documentation says: > > --8<-- > WORLDFILE= > Specifies an alternative world file (for georeferencing). If a > path only is specified, the base name of the dataset will be > appended. The suffix (.wld / .tfw / ...) can be omitted. > > Example: > > PROCESSING "WORLDFILE=/path/" > or > PROCESSING "WORLDFILE=/path/file.wld" > or > PROCESSING "WORLDFILE=/path/file" > --8<-- > > But adding > > PROCESSING "WORLDFILE=/path/to/my/worldfile.wld" > > to my mapfile has, as far as I can tell, absolutely no effect. > > > The projection on the layer is defined like this: > > PROJECTION > "+init=epsg:32633" > END > > > If I change that to > > PROJECTION > "+init=epsg:32633 +units=km" > END > > My layer will turn up at 0,0,1195000,1550000 in EPSG:32633 > > In theory, if I added easting and northing to the projection definition, like this: > PROJECTION > "+init=epsg:32633 +units=km +x_0=-75000 +y_0=6450000" > END > > It should position itself properly, but proj does not allow easting or northing to the UTM projections. You can specify the full proj style definition instead of the "init=epsg:xxxx" format. So maybe something like: PROJECTION +proj=tmerc +lat_0=0.0 +lon_0=15 # not sure this is correct long0 is for zone 33 +x_0=-75000 +y_0=6450000 +a=6378137.0 +b=6356752.3141403 +datum=WGS84 +units=km END > The documetation also states: > > --8<-- > wms_extent > > For Rasters served through WMS, MapServer can now use the > wms_extent metadata parameter to register the image. If a .wld > file cannot be found, MapServer will then look for the wms_extent > metadata parameter and use the extents of the image and the size > of the image for georegistration. > --8<-- > > However, if I add > > METADATA > "wms_extent" "-75000 6450000 1120000 8000000" > END > > to the layer, it has no effect. > > > So... What am I doing wrong? How do I get my files to show up where they're supposed to? > > > -- > Trond Michelsen > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users -- Richard W. Greenwood, PLS www.greenwoodmap.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From gert.cuykens at gmail.com Fri Dec 1 17:15:12 2017 From: gert.cuykens at gmail.com (Gert Cuykens) Date: Sat, 2 Dec 2017 02:15:12 +0100 Subject: [mapserver-users] msGEOSError(): GEOS library error when using MULTILINESTRING (( mercator )) Message-ID: The example below gives a msGEOSError(): GEOS library error To reproduce create a shapefile put MULTILINESTRING mercator data in it and use shp2img to see the error messages, Note that MULTILINESTRING with wgs data in it works, which makes me think it could be maybe the length of a multiline string that generates the error? Because mercator is much bigger. Example mapserver 7.0.6 OGRFeature(test):178 color (String) = #c6b952 MULTILINESTRING ((1365999.913051389390603 6668002.688304415903986,1365929.670452698832378 6667981.874043367803097),(1366036.091885895933956 6668063.352393131703138,1365999.913051389390603 6668002.688304415903986),(1366004.811108984053135 6668127.219178147614002,1366036.091885895933956 6668063.352393131703138),(1365934.123232331126928 6668138.427049811929464,1366004.811108984053135 6668127.219178147614002),(1365862.878758222097531 6668117.612443232908845,1365934.123232331126928 6668138.427049811929464),(1365792.190881569404155 6668094.485164736397564,1365862.878758222097531 6668117.612443232908845),(1365384.093628322007135 6667942.914158684201539,1365306.949221200309694 6667931.172859975136817),(1365461.460674423491582 6667952.342789551243186,1365384.093628322007135 6667942.914158684201539),(1365538.939040013123304 6667961.771431289613247,1365461.460674423491582 6667952.342789551243186),(1365616.528725096955895 6667969.065293673425913,1365538.939040013123304 6667961.771431289613247),(1365773.266568133374676 6668049.120308448560536,1365760.910104657290503 6668084.344763254746795),(1365771.819414753001183 6668087.724895685911179,1365792.190881569404155 6668094.485164736397564),(1365760.910104657290503 6668084.344763254746795,1365771.819414753001183 6668087.724895685911179),(1365694.786327125271782 6667973.512773931957781,1365616.528725096955895 6667969.065293673425913),(1365773.043929153587669 6667977.426558562554419,1365694.786327125271782 6667973.512773931957781),(1365851.301531179109588 6667980.272948558442295,1365773.043929153587669 6667977.426558562554419),(1365929.670452698832378 6667981.874043367803097,1365851.301531179109588 6667980.272948558442295)) From landa.martin at gmail.com Sat Dec 2 07:56:31 2017 From: landa.martin at gmail.com (Martin Landa) Date: Sat, 2 Dec 2017 16:56:31 +0100 Subject: [mapserver-users] raster layer legend: how to Message-ID: Hi, after some digging in manuals and googling I am still not able to set up correctly legend for my WMS layer published by MapServer, eg. https://rain1.fsv.cvut.cz/services/wms?service=wms&version=1.3.0&layer=H_N2_24h&REQUEST=getlegendgraphic&FORMAT=image/png&sld_version=1.1.0 The underlaing TIFF has color table defined: Metadata: COLOR_TABLE_RULES_COUNT=2 COLOR_TABLE_RULE_RGB_0=2.000000e+01 1.000000e+02 255 255 255 0 0 200 COLOR_TABLE_RULE_RGB_1=1.000000e+02 2.200000e+02 0 0 200 0 0 255 Generated_with=GRASS GIS 7.1.svn Color Table (RGB with 256 entries) I would like to set up legend like: http://geo102.fsv.cvut.cz/~landa/tmp/wms-legend.png Thanks for any hits in advance! Martin -- Martin Landa http://geo.fsv.cvut.cz/gwiki/Landa http://gismentors.cz/mentors/landa From landa.martin at gmail.com Sat Dec 2 07:57:18 2017 From: landa.martin at gmail.com (Martin Landa) Date: Sat, 2 Dec 2017 16:57:18 +0100 Subject: [mapserver-users] raster layer legend: how to In-Reply-To: References: Message-ID: Hi, 2017-12-02 16:56 GMT+01:00 Martin Landa : > https://rain1.fsv.cvut.cz/services/wms?service=wms&version=1.3.0&layer=H_N2_24h&REQUEST=getlegendgraphic&FORMAT=image/png&sld_version=1.1.0 > > I would like to set up legend like: > > http://geo102.fsv.cvut.cz/~landa/tmp/wms-legend.png OK, I was able to add at least legend img statically via CLASS NAME "H_N2_24h" KEYIMAGE "wms-legend.png" END # CLASS and LEGEND STATUS ON KEYSIZE 71 258 END # LEGEND But still the image with included legend is somehow small. What parameter am I missing? Anyway I am interested how to set up my mapfile to produce such legend automatically for TIFF data instead of using static image. Thanks, Ma -- Martin Landa http://geo.fsv.cvut.cz/gwiki/Landa http://gismentors.cz/mentors/landa From gert.cuykens at gmail.com Sat Dec 2 09:11:23 2017 From: gert.cuykens at gmail.com (Gert Cuykens) Date: Sat, 2 Dec 2017 18:11:23 +0100 Subject: [mapserver-users] msGEOSError(): GEOS library error when using MULTILINESTRING (( mercator )) In-Reply-To: References: Message-ID: Correction wgs84 or mercator doesn't matter using MULTILINESTRING (( )) in shapefile will always result in msGEOSError() On Sat, Dec 2, 2017 at 2:15 AM, Gert Cuykens wrote: > The example below gives a msGEOSError(): GEOS library error > > To reproduce create a shapefile put MULTILINESTRING mercator data in > it and use shp2img to see the error messages, Note that > MULTILINESTRING with wgs data in it works, which makes me think it > could be maybe the length of a multiline string that generates the > error? Because mercator is much bigger. > > Example mapserver 7.0.6 > > OGRFeature(test):178 > > color (String) = #c6b952 > > MULTILINESTRING ((1365999.913051389390603 > 6668002.688304415903986,1365929.670452698832378 > 6667981.874043367803097),(1366036.091885895933956 > 6668063.352393131703138,1365999.913051389390603 > 6668002.688304415903986),(1366004.811108984053135 > 6668127.219178147614002,1366036.091885895933956 > 6668063.352393131703138),(1365934.123232331126928 > 6668138.427049811929464,1366004.811108984053135 > 6668127.219178147614002),(1365862.878758222097531 > 6668117.612443232908845,1365934.123232331126928 > 6668138.427049811929464),(1365792.190881569404155 > 6668094.485164736397564,1365862.878758222097531 > 6668117.612443232908845),(1365384.093628322007135 > 6667942.914158684201539,1365306.949221200309694 > 6667931.172859975136817),(1365461.460674423491582 > 6667952.342789551243186,1365384.093628322007135 > 6667942.914158684201539),(1365538.939040013123304 > 6667961.771431289613247,1365461.460674423491582 > 6667952.342789551243186),(1365616.528725096955895 > 6667969.065293673425913,1365538.939040013123304 > 6667961.771431289613247),(1365773.266568133374676 > 6668049.120308448560536,1365760.910104657290503 > 6668084.344763254746795),(1365771.819414753001183 > 6668087.724895685911179,1365792.190881569404155 > 6668094.485164736397564),(1365760.910104657290503 > 6668084.344763254746795,1365771.819414753001183 > 6668087.724895685911179),(1365694.786327125271782 > 6667973.512773931957781,1365616.528725096955895 > 6667969.065293673425913),(1365773.043929153587669 > 6667977.426558562554419,1365694.786327125271782 > 6667973.512773931957781),(1365851.301531179109588 > 6667980.272948558442295,1365773.043929153587669 > 6667977.426558562554419),(1365929.670452698832378 > 6667981.874043367803097,1365851.301531179109588 > 6667980.272948558442295)) From trondmm-mapserver+2017 at crusaders.no Mon Dec 4 04:52:36 2017 From: trondmm-mapserver+2017 at crusaders.no (Trond Michelsen) Date: Mon, 4 Dec 2017 13:52:36 +0100 Subject: [mapserver-users] Georeferencing a raster without worldfile In-Reply-To: References: <20171201161914.GA21830@crusaders.no> <20171201165054.GB21830@crusaders.no> Message-ID: <20171204125236.GC21830@crusaders.no> On Fri, Dec 01, 2017 at 10:55:34AM -0700, Richard Greenwood wrote: >>> In theory, if I added easting and northing to the projection definition, >>> like this: >> PROJECTION >>> "+init=epsg:32633 +units=km +x_0=-75000 +y_0=6450000" >>> END >>> >>> It should position itself properly, but proj does not allow easting or >> northing to the UTM projections. > You can specify the full proj style definition instead of the > "init=epsg:xxxx" format. So maybe something like: > > PROJECTION > +proj=tmerc > +lat_0=0.0 > +lon_0=15 # not sure this is correct long0 is for zone 33 > +x_0=-75000 > +y_0=6450000 > +a=6378137.0 > +b=6356752.3141403 > +datum=WGS84 > +units=km > END Thanks! That did the trick. I had already tried "+proj=utm +zone=33 +ellps=WGS84 +datum=WGS84 +units=km +no_defs", without success, but I just needed a couple of minor changes. First of all, my example I got my signs mixed up, so easting/northing should be 75000 and -6450000. I also had to add the shifting UTM33 uses, so the correct easting is 575000. Finally, by adding the scale factor of 0.9996, the image positioned itself exactly where I want it. So, my final projection block is: PROJECTION +proj=tmerc +lat_0=0.0 +lon_0=15 +x_0=575000 +y_0=-6450000 +a=6378137.0 +b=6356752.3141403 +datum=WGS84 +k_0=0.9996 +units=km END This is a workaround I can live with. Thank You. -- Trond Michelsen From joerg.thomsen at wheregroup.com Wed Dec 6 04:41:36 2017 From: joerg.thomsen at wheregroup.com (=?UTF-8?Q?J=c3=b6rg_Thomsen_=28WhereGroup=29?=) Date: Wed, 6 Dec 2017 13:41:36 +0100 Subject: [mapserver-users] wms_enable_request header vs. layer Message-ID: <4dccde7c-ce96-e22a-af43-718d4631a8bb@wheregroup.com> Hi, I need an explanation for ows_enable_request. There are two mapfiles, brw_enable_header.map and brw_enable_layer.map The only difference is, that in brw_enable_header.map I have enabled all ows requests within the metadata-section in the header and in each layer. In brw_enable_layer.map I only have enabled all requests in the layer-section, but not in the header. Both WMS allow the capability-request and in brw_enable_layer.map the information for the wms-request is missing: https://www.diffchecker.com/KjsX2Wbk OK. The brw_enable_layer.map (with no ows_enable_reqeust in the header) allows GetMap-Requests: http://h2743629.stratoserver.net/cgi-bin/mapserv?map=/data/ows/map/brw_enable_layer.map&&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&BBOX=48.60086340827337636,9.02229999999999954,48.65160000000000196,9.0733134442446044&CRS=EPSG:4326&WIDTH=426&HEIGHT=422&LAYERS=bodenrichtwertzone&STYLES=&FORMAT=image/png&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE I think this is technically correct, but as the capabilities don't provide any information for the getMap-Request (no online-ressource, no image-formats), a client does not know this parameters. In the result I cannot load the WMS into a mabpender-application. I wonder why (and I am surprised) QGIS doesn't have any problems with this wms. Is this how it shall be? Is MapServer working correct or Mapbender? Or both, but ...? Regards, J?rg -- *********************************** Where2B Konferenz 2017 14. Dezember 2017 in Bonn www.where2b-conference.com *********************************** From ivan.ogasawara at gmail.com Wed Dec 6 18:28:10 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Wed, 6 Dec 2017 22:28:10 -0400 Subject: [mapserver-users] OFFSET and RAGECOLOR Message-ID: Dear all, when I use style colorrange the offset directive doesn't work. my mapserver install configurations is: ``` MapServer version 7.0.4 OUTPUT=PNG OUTPUT=JPEG OUTPUT=KML SUPPORTS=PROJ SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=SVG_SYMBOLS SUPPORTS=RSVG SUPPORTS=ICONV SUP PORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER SUPPORTS=FASTCGI SUPPORTS=THREADS SUP PORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE ``` any idea to resolve this problem? my best regards, Ivan -------------- next part -------------- An HTML attachment was scrubbed... URL: From jukka.rahkonen at maanmittauslaitos.fi Wed Dec 6 22:36:23 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 7 Dec 2017 06:36:23 +0000 Subject: [mapserver-users] OFFSET and RAGECOLOR In-Reply-To: References: Message-ID: Hi, It is impossible to help you with so little details. Show us a corresponding part of your mapfile and a small sample of data that can be user for re-producing the error would be appreciated. -Jukka Rahkonen- ________________________________ L?hett?j?: Ivan Ogasawara L?hetetty: ?7.?12.?2017 4:28 Vastaanottaja: mapserver-users at lists.osgeo.org Aihe: [mapserver-users] OFFSET and RAGECOLOR Dear all, when I use style colorrange the offset directive doesn't work. my mapserver install configurations is: ``` MapServer version 7.0.4 OUTPUT=PNG OUTPUT=JPEG OUTPUT=KML SUPPORTS=PROJ SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=SVG_SYMBOLS SUPPORTS=RSVG SUPPORTS=ICONV SUP PORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER SUPPORTS=FASTCGI SUPPORTS=THREADS SUP PORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE ``` any idea to resolve this problem? my best regards, Ivan -------------- next part -------------- An HTML attachment was scrubbed... URL: From jpass at bgs.ac.uk Thu Dec 7 02:30:01 2017 From: jpass at bgs.ac.uk (Passmore, James H.) Date: Thu, 7 Dec 2017 10:30:01 +0000 Subject: [mapserver-users] wms_enable_request header vs. layer Message-ID: Technically QGIS (or any other client) is going against the WMS standard by requesting something not in GetCapabilities response, and MapServer is at fault for responding with something not advertised. Of course a GetMap operation is mandatory for a WMS, so you might argue that MapServer is at fault for providing a GetCapabilities response that doesn't advertise a GetMap operation. James -----Original Message----- From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of mapserver-users-request at lists.osgeo.org Sent: 06 December 2017 20:00 To: mapserver-users at lists.osgeo.org Subject: mapserver-users Digest, Vol 119, Issue 5 Send mapserver-users mailing list submissions to mapserver-users at lists.osgeo.org To subscribe or unsubscribe via the World Wide Web, visit https://lists.osgeo.org/mailman/listinfo/mapserver-users or, via email, send a message with subject or body 'help' to mapserver-users-request at lists.osgeo.org You can reach the person managing the list at mapserver-users-owner at lists.osgeo.org When replying, please edit your Subject line so it is more specific than "Re: Contents of mapserver-users digest..." Today's Topics: 1. wms_enable_request header vs. layer (J?rg Thomsen (WhereGroup)) ---------------------------------------------------------------------- Message: 1 Date: Wed, 6 Dec 2017 13:41:36 +0100 From: J?rg Thomsen (WhereGroup) To: "mapserver-users at lists.osgeo.org" Subject: [mapserver-users] wms_enable_request header vs. layer Message-ID: <4dccde7c-ce96-e22a-af43-718d4631a8bb at wheregroup.com> Content-Type: text/plain; charset=utf-8 Hi, I need an explanation for ows_enable_request. There are two mapfiles, brw_enable_header.map and brw_enable_layer.map The only difference is, that in brw_enable_header.map I have enabled all ows requests within the metadata-section in the header and in each layer. In brw_enable_layer.map I only have enabled all requests in the layer-section, but not in the header. Both WMS allow the capability-request and in brw_enable_layer.map the information for the wms-request is missing: https://www.diffchecker.com/KjsX2Wbk OK. The brw_enable_layer.map (with no ows_enable_reqeust in the header) allows GetMap-Requests: http://h2743629.stratoserver.net/cgi-bin/mapserv?map=/data/ows/map/brw_enable_layer.map&&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&BBOX=48.60086340827337636,9.02229999999999954,48.65160000000000196,9.0733134442446044&CRS=EPSG:4326&WIDTH=426&HEIGHT=422&LAYERS=bodenrichtwertzone&STYLES=&FORMAT=image/png&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE I think this is technically correct, but as the capabilities don't provide any information for the getMap-Request (no online-ressource, no image-formats), a client does not know this parameters. In the result I cannot load the WMS into a mabpender-application. I wonder why (and I am surprised) QGIS doesn't have any problems with this wms. Is this how it shall be? Is MapServer working correct or Mapbender? Or both, but ...? Regards, J?rg -- *********************************** Where2B Konferenz 2017 14. Dezember 2017 in Bonn www.where2b-conference.com *********************************** ------------------------------ Subject: Digest Footer _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users ------------------------------ End of mapserver-users Digest, Vol 119, Issue 5 *********************************************** ________________________________ This message (and any attachments) is for the recipient only. NERC is subject to the Freedom of Information Act 2000 and the contents of this email and any reply you make may be disclosed by NERC unless it is exempt from release under the Act. Any material supplied to NERC may be stored in an electronic records management system. ________________________________ From joerg.thomsen at wheregroup.com Thu Dec 7 06:36:26 2017 From: joerg.thomsen at wheregroup.com (=?UTF-8?Q?J=c3=b6rg_Thomsen_=28WhereGroup=29?=) Date: Thu, 7 Dec 2017 15:36:26 +0100 Subject: [mapserver-users] wms_enable_request header vs. layer In-Reply-To: References: Message-ID: <85ac14f1-2b42-2a7f-b81d-808543c8cffc@wheregroup.com> Moin, I think the problem is, that the Layers allow the GetMap-Request and MapServer does not provide the required Information in the capabilities. Am I wrong? J?rg Am 07.12.2017 um 11:30 schrieb Passmore, James H.:> Technically QGIS (or any other client) is going against the WMS standard by requesting something not in GetCapabilities response, and MapServer is at fault for responding with something not advertised. > > Of course a GetMap operation is mandatory for a WMS, so you might argue that MapServer is at fault for providing a GetCapabilities response that doesn't advertise a GetMap operation. > > James > > -----Original Message----- > From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of mapserver-users-request at lists.osgeo.org > Sent: 06 December 2017 20:00 > To: mapserver-users at lists.osgeo.org > Subject: mapserver-users Digest, Vol 119, Issue 5 > > Send mapserver-users mailing list submissions to > mapserver-users at lists.osgeo.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.osgeo.org/mailman/listinfo/mapserver-users > or, via email, send a message with subject or body 'help' to > mapserver-users-request at lists.osgeo.org > > You can reach the person managing the list at > mapserver-users-owner at lists.osgeo.org > > When replying, please edit your Subject line so it is more specific than "Re: Contents of mapserver-users digest..." > > > Today's Topics: > > 1. wms_enable_request header vs. layer (J?rg Thomsen (WhereGroup)) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 6 Dec 2017 13:41:36 +0100 > From: J?rg Thomsen (WhereGroup) > To: "mapserver-users at lists.osgeo.org" > > Subject: [mapserver-users] wms_enable_request header vs. layer > Message-ID: <4dccde7c-ce96-e22a-af43-718d4631a8bb at wheregroup.com> > Content-Type: text/plain; charset=utf-8 > > Hi, > > I need an explanation for ows_enable_request. > > There are two mapfiles, brw_enable_header.map and brw_enable_layer.map The only difference is, that in brw_enable_header.map I have enabled all ows requests within the metadata-section in the header and in each layer. > > In brw_enable_layer.map I only have enabled all requests in the layer-section, but not in the header. > > Both WMS allow the capability-request and in brw_enable_layer.map the information for the wms-request is missing: > https://www.diffchecker.com/KjsX2Wbk > > OK. The brw_enable_layer.map (with no ows_enable_reqeust in the header) allows GetMap-Requests: > http://h2743629.stratoserver.net/cgi-bin/mapserv?map=/data/ows/map/brw_enable_layer.map&&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&BBOX=48.60086340827337636,9.02229999999999954,48.65160000000000196,9.0733134442446044&CRS=EPSG:4326&WIDTH=426&HEIGHT=422&LAYERS=bodenrichtwertzone&STYLES=&FORMAT=image/png&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE > > I think this is technically correct, but as the capabilities don't provide any information for the getMap-Request (no online-ressource, no image-formats), a client does not know this parameters. In the result I cannot load the WMS into a mabpender-application. > I wonder why (and I am surprised) QGIS doesn't have any problems with this wms. > > Is this how it shall be? Is MapServer working correct or Mapbender? Or both, but ...? > > Regards, J?rg > > -- > > *********************************** > Where2B Konferenz 2017 > 14. Dezember 2017 in Bonn > www.where2b-conference.com > *********************************** > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > > ------------------------------ > > End of mapserver-users Digest, Vol 119, Issue 5 > *********************************************** > ________________________________ > This message (and any attachments) is for the recipient only. NERC is subject to the Freedom of Information Act 2000 and the contents of this email and any reply you make may be disclosed by NERC unless it is exempt from release under the Act. Any material supplied to NERC may be stored in an electronic records management system. > ________________________________ > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > Viele Gr??e, J?rg Thomsen -- *********************************** Where2B Konferenz 2017 14. Dezember 2017 in Bonn www.where2b-conference.com *********************************** J?rg Thomsen WhereGroup GmbH & Co. KG Gillweg 3 14193 Berlin Germany Fon: +49 (0)30 / 5130 278 74 Fax: +49 (0)30 / 89 09 53 21 joerg.thomsen at wheregroup.com www.wheregroup.com Amtsgericht Bonn, HRA 6788 ------------------------------- Komplement?rin: WhereGroup Verwaltungs GmbH vertreten durch: Olaf Knopp, Peter Stamm ------------------------------- Folgen Sie der WhereGroup auf twitter: http://twitter.com/WhereGroup_com From jukka.rahkonen at maanmittauslaitos.fi Thu Dec 7 07:17:21 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 7 Dec 2017 15:17:21 +0000 Subject: [mapserver-users] wms_enable_request header vs. layer Message-ID: Hi, The development of this feature was done by http://mapserver.gis.umn.edu/pl/development/rfc/ms-rfc-67.html. RFC does not take into account all possible combinations to use the enable/disable rules at MAP and LAYER level. It seems that you have found one way to configure Mapserver so that it is not compliant to WMS standard and there may be more. I suggest to analyze the situation and make a bug report or feature request for new checks. The concrete bug, I guess, is that disabling GetMap removes the GetMap operation from GetCapabilities while it should keep the operation, which is mandatory, but hide all the layers. I guess that you can make Mapserver behave correctly by using "wms_enable_request" "GetCapabilities GetMap" at the map level and by hiding all the layers with "!*", except for the layers you want to stay available. -Jukka Rahkonen- -----Alkuper?inen viesti----- L?hett?j?: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] Puolesta J?rg Thomsen (WhereGroup) L?hetetty: 7. joulukuuta 2017 16:36 Vastaanottaja: mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] wms_enable_request header vs. layer Moin, I think the problem is, that the Layers allow the GetMap-Request and MapServer does not provide the required Information in the capabilities. Am I wrong? J?rg Am 07.12.2017 um 11:30 schrieb Passmore, James H.:> Technically QGIS (or any other client) is going against the WMS standard by requesting something not in GetCapabilities response, and MapServer is at fault for responding with something not advertised. > > Of course a GetMap operation is mandatory for a WMS, so you might argue that MapServer is at fault for providing a GetCapabilities response that doesn't advertise a GetMap operation. > > James > > -----Original Message----- > From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] > On Behalf Of mapserver-users-request at lists.osgeo.org > Sent: 06 December 2017 20:00 > To: mapserver-users at lists.osgeo.org > Subject: mapserver-users Digest, Vol 119, Issue 5 > > Send mapserver-users mailing list submissions to > mapserver-users at lists.osgeo.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.osgeo.org/mailman/listinfo/mapserver-users > or, via email, send a message with subject or body 'help' to > mapserver-users-request at lists.osgeo.org > > You can reach the person managing the list at > mapserver-users-owner at lists.osgeo.org > > When replying, please edit your Subject line so it is more specific than "Re: Contents of mapserver-users digest..." > > > Today's Topics: > > 1. wms_enable_request header vs. layer (J?rg Thomsen (WhereGroup)) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 6 Dec 2017 13:41:36 +0100 > From: J?rg Thomsen (WhereGroup) > To: "mapserver-users at lists.osgeo.org" > > Subject: [mapserver-users] wms_enable_request header vs. layer > Message-ID: <4dccde7c-ce96-e22a-af43-718d4631a8bb at wheregroup.com> > Content-Type: text/plain; charset=utf-8 > > Hi, > > I need an explanation for ows_enable_request. > > There are two mapfiles, brw_enable_header.map and brw_enable_layer.map The only difference is, that in brw_enable_header.map I have enabled all ows requests within the metadata-section in the header and in each layer. > > In brw_enable_layer.map I only have enabled all requests in the layer-section, but not in the header. > > Both WMS allow the capability-request and in brw_enable_layer.map the information for the wms-request is missing: > https://www.diffchecker.com/KjsX2Wbk > > OK. The brw_enable_layer.map (with no ows_enable_reqeust in the header) allows GetMap-Requests: > http://h2743629.stratoserver.net/cgi-bin/mapserv?map=/data/ows/map/brw > _enable_layer.map&&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&BBOX=48.60 > 086340827337636,9.02229999999999954,48.65160000000000196,9.07331344424 > 46044&CRS=EPSG:4326&WIDTH=426&HEIGHT=422&LAYERS=bodenrichtwertzone&STY > LES=&FORMAT=image/png&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&T > RANSPARENT=TRUE > > I think this is technically correct, but as the capabilities don't provide any information for the getMap-Request (no online-ressource, no image-formats), a client does not know this parameters. In the result I cannot load the WMS into a mabpender-application. > I wonder why (and I am surprised) QGIS doesn't have any problems with this wms. > > Is this how it shall be? Is MapServer working correct or Mapbender? Or both, but ...? > > Regards, J?rg > > -- > > *********************************** > Where2B Konferenz 2017 > 14. Dezember 2017 in Bonn > www.where2b-conference.com > *********************************** > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > > ------------------------------ > > End of mapserver-users Digest, Vol 119, Issue 5 > *********************************************** > ________________________________ > This message (and any attachments) is for the recipient only. NERC is subject to the Freedom of Information Act 2000 and the contents of this email and any reply you make may be disclosed by NERC unless it is exempt from release under the Act. Any material supplied to NERC may be stored in an electronic records management system. > ________________________________ > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > Viele Gr??e, J?rg Thomsen -- *********************************** Where2B Konferenz 2017 14. Dezember 2017 in Bonn www.where2b-conference.com *********************************** J?rg Thomsen WhereGroup GmbH & Co. KG Gillweg 3 14193 Berlin Germany Fon: +49 (0)30 / 5130 278 74 Fax: +49 (0)30 / 89 09 53 21 joerg.thomsen at wheregroup.com www.wheregroup.com Amtsgericht Bonn, HRA 6788 ------------------------------- Komplement?rin: WhereGroup Verwaltungs GmbH vertreten durch: Olaf Knopp, Peter Stamm ------------------------------- Folgen Sie der WhereGroup auf twitter: http://twitter.com/WhereGroup_com _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users From ivan.ogasawara at gmail.com Thu Dec 7 11:41:11 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Thu, 7 Dec 2017 15:41:11 -0400 Subject: [mapserver-users] OFFSET and RAGECOLOR In-Reply-To: References: Message-ID: Hi Jukka, these are my map files, raster file and the image output. my best, Ivan 2017-12-07 2:36 GMT-04:00 Rahkonen Jukka (MML) < jukka.rahkonen at maanmittauslaitos.fi>: > Hi, > > It is impossible to help you with so little details. Show us a > corresponding part of your mapfile and a small sample of data that can be > user for re-producing the error would be appreciated. > > -Jukka Rahkonen- > ------------------------------ > L?hett?j?: Ivan Ogasawara > L?hetetty: ?7.?12.?2017 4:28 > Vastaanottaja: mapserver-users at lists.osgeo.org > Aihe: [mapserver-users] OFFSET and RAGECOLOR > > Dear all, > > when I use style colorrange the offset directive doesn't work. > > my mapserver install configurations is: > > ``` > MapServer version 7.0.4 OUTPUT=PNG OUTPUT=JPEG OUTPUT=KML SUPPORTS=PROJ > SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=SVG_SYMBOLS > SUPPORTS=RSVG SUPPORTS=ICONV SUP > PORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER > SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER > SUPPORTS=FASTCGI SUPPORTS=THREADS SUP > PORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE > ``` > > any idea to resolve this problem? > > my best regards, > Ivan > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: mapserv.png Type: image/png Size: 3184 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: NDVI.map Type: application/octet-stream Size: 2060 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 3304557.map Type: application/octet-stream Size: 819 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 3304557_NDVI_2010_12_19.tif Type: image/tiff Size: 1454 bytes Desc: not available URL: From ivan.ogasawara at gmail.com Thu Dec 7 11:52:50 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Thu, 7 Dec 2017 15:52:50 -0400 Subject: [mapserver-users] OFFSET and RAGECOLOR In-Reply-To: References: Message-ID: I guess I misunderstood the offset parameter (actually before I added the colorrange parameter, offset was disabled). but after I've added the colorrange parameter, the background is not transparent anymore ... 2017-12-07 15:41 GMT-04:00 Ivan Ogasawara : > Hi Jukka, > > > these are my map files, raster file and the image output. > > > my best, > > Ivan > > > 2017-12-07 2:36 GMT-04:00 Rahkonen Jukka (MML) maanmittauslaitos.fi>: > >> Hi, >> >> It is impossible to help you with so little details. Show us a >> corresponding part of your mapfile and a small sample of data that can be >> user for re-producing the error would be appreciated. >> >> -Jukka Rahkonen- >> ------------------------------ >> L?hett?j?: Ivan Ogasawara >> L?hetetty: ?7.?12.?2017 4:28 >> Vastaanottaja: mapserver-users at lists.osgeo.org >> Aihe: [mapserver-users] OFFSET and RAGECOLOR >> >> Dear all, >> >> when I use style colorrange the offset directive doesn't work. >> >> my mapserver install configurations is: >> >> ``` >> MapServer version 7.0.4 OUTPUT=PNG OUTPUT=JPEG OUTPUT=KML SUPPORTS=PROJ >> SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=SVG_SYMBOLS >> SUPPORTS=RSVG SUPPORTS=ICONV SUP >> PORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER >> SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER >> SUPPORTS=FASTCGI SUPPORTS=THREADS SUP >> PORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE >> ``` >> >> any idea to resolve this problem? >> >> my best regards, >> Ivan >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ivan.ogasawara at gmail.com Thu Dec 7 11:56:27 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Thu, 7 Dec 2017 15:56:27 -0400 Subject: [mapserver-users] OFFSET and RAGECOLOR In-Reply-To: References: Message-ID: Sorry .. actually is OFFSITE OFFSITE [r] [g] [b] | [hexadecimal string] Sets the color index to treat as transparent for raster layers. - r, g and b shall be integers [0..255]. To specify black pixels, the following is used: OFFSITE 0 0 0 As in the mapfile sent. 2017-12-07 15:52 GMT-04:00 Ivan Ogasawara : > I guess I misunderstood the offset parameter (actually before I added the > colorrange parameter, offset was disabled). > > but after I've added the colorrange parameter, the background is not > transparent anymore ... > > 2017-12-07 15:41 GMT-04:00 Ivan Ogasawara : > >> Hi Jukka, >> >> >> these are my map files, raster file and the image output. >> >> >> my best, >> >> Ivan >> >> >> 2017-12-07 2:36 GMT-04:00 Rahkonen Jukka (MML) < >> jukka.rahkonen at maanmittauslaitos.fi>: >> >>> Hi, >>> >>> It is impossible to help you with so little details. Show us a >>> corresponding part of your mapfile and a small sample of data that can be >>> user for re-producing the error would be appreciated. >>> >>> -Jukka Rahkonen- >>> ------------------------------ >>> L?hett?j?: Ivan Ogasawara >>> L?hetetty: ?7.?12.?2017 4:28 >>> Vastaanottaja: mapserver-users at lists.osgeo.org >>> Aihe: [mapserver-users] OFFSET and RAGECOLOR >>> >>> Dear all, >>> >>> when I use style colorrange the offset directive doesn't work. >>> >>> my mapserver install configurations is: >>> >>> ``` >>> MapServer version 7.0.4 OUTPUT=PNG OUTPUT=JPEG OUTPUT=KML SUPPORTS=PROJ >>> SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=SVG_SYMBOLS >>> SUPPORTS=RSVG SUPPORTS=ICONV SUP >>> PORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT >>> SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER >>> SUPPORTS=SOS_SERVER SUPPORTS=FASTCGI SUPPORTS=THREADS SUP >>> PORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE >>> ``` >>> >>> any idea to resolve this problem? >>> >>> my best regards, >>> Ivan >>> >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ivan.ogasawara at gmail.com Thu Dec 7 12:18:32 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Thu, 7 Dec 2017 16:18:32 -0400 Subject: [mapserver-users] OFFSET and RAGECOLOR In-Reply-To: References: Message-ID: done! I don't know if this is the best way to do that .. but .. this is my layer config: ``` PROJECTION "init=epsg:4326" END METADATA "wms_title" "RIO_DE_JANEIRO" "wms_srs" "EPSG:4326 EPSG:3857" "wms_include_items" "all" END COMPOSITE OPACITY 70 END # COMPOSITE # PROCESSING "KERNELDENSITY_NORMALIZATION=255" # PROCESSING "RANGE_COLORSPACE=HSL" CLASSITEM "[pixel]" CLASS NAME "class_hotcolors" EXPRESSION ([pixel] >= 1) STYLE RANGEITEM "style_hotcolors" COLORRANGE 1 0 0 255 0 0 DATARANGE 1 8549 END # STYLE END # CLASS CLASS NAME "class_background" EXPRESSION ([pixel] == 0) STYLE RANGEITEM "style_background" COLORRANGE 0 0 0 0 0 0 DATARANGE 0 0 END # STYLE END # CLASS END ``` My best regards, Ivan 2017-12-07 15:56 GMT-04:00 Ivan Ogasawara : > Sorry .. actually is OFFSITE > > OFFSITE [r] [g] [b] | [hexadecimal string] > > Sets the color index to treat as transparent for raster layers. > > - > > r, g and b shall be integers [0..255]. To specify black pixels, the > following is used: > > OFFSITE 0 0 0 > > > As in the mapfile sent. > > > 2017-12-07 15:52 GMT-04:00 Ivan Ogasawara : > >> I guess I misunderstood the offset parameter (actually before I added the >> colorrange parameter, offset was disabled). >> >> but after I've added the colorrange parameter, the background is not >> transparent anymore ... >> >> 2017-12-07 15:41 GMT-04:00 Ivan Ogasawara : >> >>> Hi Jukka, >>> >>> >>> these are my map files, raster file and the image output. >>> >>> >>> my best, >>> >>> Ivan >>> >>> >>> 2017-12-07 2:36 GMT-04:00 Rahkonen Jukka (MML) < >>> jukka.rahkonen at maanmittauslaitos.fi>: >>> >>>> Hi, >>>> >>>> It is impossible to help you with so little details. Show us a >>>> corresponding part of your mapfile and a small sample of data that can be >>>> user for re-producing the error would be appreciated. >>>> >>>> -Jukka Rahkonen- >>>> ------------------------------ >>>> L?hett?j?: Ivan Ogasawara >>>> L?hetetty: ?7.?12.?2017 4:28 >>>> Vastaanottaja: mapserver-users at lists.osgeo.org >>>> Aihe: [mapserver-users] OFFSET and RAGECOLOR >>>> >>>> Dear all, >>>> >>>> when I use style colorrange the offset directive doesn't work. >>>> >>>> my mapserver install configurations is: >>>> >>>> ``` >>>> MapServer version 7.0.4 OUTPUT=PNG OUTPUT=JPEG OUTPUT=KML SUPPORTS=PROJ >>>> SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=SVG_SYMBOLS >>>> SUPPORTS=RSVG SUPPORTS=ICONV SUP >>>> PORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT >>>> SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER >>>> SUPPORTS=SOS_SERVER SUPPORTS=FASTCGI SUPPORTS=THREADS SUP >>>> PORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE >>>> ``` >>>> >>>> any idea to resolve this problem? >>>> >>>> my best regards, >>>> Ivan >>>> >>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From schroeter at netgis.de Fri Dec 8 00:20:01 2017 From: schroeter at netgis.de (Sven Schroeter) Date: Fri, 8 Dec 2017 09:20:01 +0100 Subject: [mapserver-users] php mapscript set opacity Message-ID: <004b01d36ffd$583df1e0$08b9d5a0$@de> Hi, I'm trying to transfer old code from Mapserver 6 to Mapserver 7 and fail to set the transparency via PHP Mapscript. my code: $this_layer->set('opacity', 80); Works with MS 6, not in MS 7 (the layer is not displayed here) $this_layer->set('opacity', 100); Works with MS 6 and MS 7 I have read the Migration guide, but I don't know what to do with it in this case. Thanks Sven From bjorn.danielsson at falubo.se Sat Dec 9 03:50:18 2017 From: bjorn.danielsson at falubo.se (=?iso-8859-1?Q?Bj=F6rn?= Danielsson) Date: Sat, 09 Dec 2017 12:50:18 +0100 Subject: [mapserver-users] Dynamic symbols Message-ID: Hi, Is it possible to create dynamic symbols on the fly with regard to some data in a polygon, and place them on the map? Piecharts etc. SVG? Bj?rn Danielsson -------------- next part -------------- An HTML attachment was scrubbed... URL: From lars.schylberg at blixtmail.se Sat Dec 9 11:21:03 2017 From: lars.schylberg at blixtmail.se (lars.schylberg at blixtmail.se) Date: Sat, 09 Dec 2017 19:21:03 +0000 Subject: [mapserver-users] Dynamic symbols In-Reply-To: References: Message-ID: <29b869dddfa2460f28c05fe5d0b45e93@blixtmail.se> Hi, I know three ways to do that, but I guess there must be more ways. 1) Pie charts and tables with: http://mapserver.org/output/dynamic_charting.html 2) Construct graphics with Javascript support: http://mapserver.org/mapfile/styleitem.html (http://mapserver.org/mapfile/styleitem.html) This option requires that You compile the javascript support. That is a little hard to get to work. Had problems to complile V8 support myself last year. I have seen nice examples in the past and this is on my personal TO DO list to try out, when I get some spare time. 3) Construct graphics with SQL. This is the way I have solved things myself. What I have done, is to construct circle sectors for instance with spatial sql expressions. I wrap GDAL sql expression with spatialite syntax in VRT files. These can then be used "on the fly" within mapserver or for preprossing of the data. I could show some examples if any one is interested. Actually I heard that someone was doing dynamic SVGs but I don't now the procedure for that. /Lars Schylberg December 9, 2017 12:56 PM, "Bj?rn Danielsson" )> wrote: Hi, Is it possible to create dynamic symbols on the fly with regard to some data in a polygon, and place them on the map? Piecharts etc. SVG? Bj?rn Danielsson -------------- next part -------------- An HTML attachment was scrubbed... URL: From frodewj at gmail.com Sun Dec 10 22:50:19 2017 From: frodewj at gmail.com (=?UTF-8?Q?Frode_Wiseth_J=C3=B8rgensen?=) Date: Mon, 11 Dec 2017 07:50:19 +0100 Subject: [mapserver-users] Dynamic symbols In-Reply-To: <29b869dddfa2460f28c05fe5d0b45e93@blixtmail.se> References: <29b869dddfa2460f28c05fe5d0b45e93@blixtmail.se> Message-ID: Hi Lars Some examples regarding "Construct graphics with SQL" would be great! Frode On 9 December 2017 at 20:21, wrote: > Hi, > > I know three ways to do that, but I guess there must be more ways. > > 1) Pie charts and tables with: > > http://mapserver.org/output/dynamic_charting.html > > 2) Construct graphics > with Javascript support: > > http://mapserver.org/mapfile/styleitem.html > > This option requires that You compile the javascript support. That is a > little hard to get to work. Had problems to complile V8 support myself last > year. > I have seen nice examples in the past and this is on my personal TO DO > list to try out, when I get some spare time. > > 3) Construct graphics with SQL. This is the way I have solved things > myself. What I have done, is to construct circle sectors for instance with > spatial sql expressions. I wrap GDAL sql expression with spatialite syntax > in VRT files. These can then be used "on the fly" within mapserver or for > preprossing of the data. > I could show some examples if any one is interested. > > Actually I heard that someone was doing dynamic SVGs but I don't now the > procedure for that. > > /Lars Schylberg > > > > December 9, 2017 12:56 PM, "Bj?rn Danielsson" <%22Bj%C3%B6rn%20Danielsson%22%20%3Cbjorn.danielsson at falubo.se%3E>> wrote: > > Hi, > Is it possible to create dynamic symbols on the fly with regard to some > data in a polygon, and place them on the map? > Piecharts etc. > SVG? > Bj?rn Danielsson > > > > > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > -- Frode Wiseth J?rgensen +47 99 03 41 42 -------------- next part -------------- An HTML attachment was scrubbed... URL: From schroeter at netgis.de Tue Dec 12 05:51:09 2017 From: schroeter at netgis.de (Sven Schroeter) Date: Tue, 12 Dec 2017 14:51:09 +0100 Subject: [mapserver-users] php mapscript set opacity In-Reply-To: <759581041.1543215.1512777456573@mail.yahoo.com> References: <004b01d36ffd$583df1e0$08b9d5a0$@de> <759581041.1543215.1512777456573@mail.yahoo.com> Message-ID: <002101d37350$440b3740$cc21a5c0$@de> Hi Carlos, thank you very much, that was the trick and it works great. Here is my new code (tested with MS 7.07): if(ms_GetVersionInt() >= 70000){ $this_layer->updateFromString('LAYER COMPOSITE OPACITY '.$my_layeropacity.' END END'); }else{ $this_layer->set('opacity', $my_layeropacity); } Greetings Sven Von: Carlos Ruiz [mailto:boolean10001 at yahoo.com] Gesendet: Samstag, 9. Dezember 2017 00:58 An: Sven Schroeter Betreff: Re: [mapserver-users] php mapscript set opacity Hi Sven, I guess this happens because of the new COMPOSITE block: COMPOSITE OPACITY 100 END I remember that I had the same problem, and I had to use $layer->updateFromString() to set the opacity. As far as I can recall, this is a known issue, no methods to change opacity nor composite are available for PHP mapscript. On Friday, December 8, 2017, 2:20:06 AM CST, Sven Schroeter wrote: Hi, I'm trying to transfer old code from Mapserver 6 to Mapserver 7 and fail to set the transparency via PHP Mapscript. my code: $this_layer->set('opacity', 80); Works with MS 6, not in MS 7 (the layer is not displayed here) $this_layer->set('opacity', 100); Works with MS 6 and MS 7 I have read the Migration guide, but I don't know what to do with it in this case. Thanks Sven _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users From bjorn.danielsson at falubo.se Wed Dec 13 04:31:43 2017 From: bjorn.danielsson at falubo.se (=?iso-8859-1?Q?Bj=F6rn?= Danielsson) Date: Wed, 13 Dec 2017 13:31:43 +0100 Subject: [mapserver-users] Dynamic symbols In-Reply-To: References: <29b869dddfa2460f28c05fe5d0b45e93@blixtmail.se> Message-ID: Hej Lars, Thanks for your help. I have tried method 1 to produce bars and pies successfully, and it helped me a lot. But it would be nice to be able to construct any type of graphics and place them on polygons to visualize some feature. Can you do that with your SQL method? Bj?rn D -----Original Message----- From: Frode Wiseth J?rgensen To: Lars Schylberg Cc: mapserver-users at lists.osgeo.org Date: Mon, 11 Dec 2017 07:50:19 +0100 Subject: Re: [mapserver-users] Dynamic symbols Hi Lars Some examples regarding "Construct graphics with SQL" would be great! Frode On 9 December 2017 at 20:21, wrote: Hi, I know three ways to do that, but I guess there must be more ways. 1) Pie charts and tables with: http://mapserver.org/output/dynamic_charting.html 2) [http://mapserver.org/output/dynamic_charting.html]Construct graphics with Javascript support: http://mapserver.org/mapfile/styleitem.html [http://mapserver.org/mapfile/styleitem.html] This option requires that You compile the javascript support. That is a little hard to get to work. Had problems to complile V8 support myself last year. I have seen nice examples in the past and this is on my personal TO DO list to try out, when I get some spare time. 3) Construct graphics with SQL. This is the way I have solved things myself. What I have done, is to construct circle sectors for instance with spatial sql expressions. I wrap GDAL sql expression with spatialite syntax in VRT files. These can then be used "on the fly" within mapserver or for preprossing of the data. I could show some examples if any one is interested. Actually I heard that someone was doing dynamic SVGs but I don't now the procedure for that. /Lars Schylberg December 9, 2017 12:56 PM, "Bj?rn Danielsson" wrote: Hi, Is it possible to create dynamic symbols on the fly with regard to some data in a polygon, and place them on the map? Piecharts etc. SVG? Bj?rn Danielsson _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org [mailto:mapserver-users at lists.osgeo.org] https://lists.osgeo.org/mailman/listinfo/mapserver-users [https://lists.osgeo.org/mailman/listinfo/mapserver-users] -- Frode Wiseth J?rgensen +47 99 03 41 42 -------------- next part -------------- An HTML attachment was scrubbed... URL: From pochta.serg at gmail.com Wed Dec 13 07:04:31 2017 From: pochta.serg at gmail.com (SerGP) Date: Wed, 13 Dec 2017 08:04:31 -0700 (MST) Subject: [mapserver-users] Label polygons outside [SEC=UNCLASSIFIED] In-Reply-To: <086a1640b7644b7496716422d0e49fae@iss-exch13-01.bom.gov.au> References: <086a1640b7644b7496716422d0e49fae@iss-exch13-01.bom.gov.au> Message-ID: <1513177471763-0.post@n6.nabble.com> Same problem. I can not add a label outside the polygon. Offset is not suitable, because polygons have different sizes. -- Sent from: http://osgeo-org.1560.x6.nabble.com/Mapserver-User-f4226646.html From ivan.ogasawara at gmail.com Wed Dec 13 16:33:35 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Wed, 13 Dec 2017 20:33:35 -0400 Subject: [mapserver-users] mapserver with kml Message-ID: Dear all, Anyone knows some tutorial to work with mapserver (wms) and kml? I am trying to do it .. but with no success. this is the local url used: http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVI CE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO& STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,- 43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT= kml.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_ DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23. 0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml for image/png works fine (tested with leaflet). Any tips? Files: * mapfiles: * https://pastebin.com/4EkahMZi * https://pastebin.com/DVSt4mmS * kml: https://pastebin.com/LYkD4ZDL * Result: https://user-images.githubusercontent.com/5209757/ 33969313-f7029096-e042-11e7-8621-e8235f0bd5ce.png Thanks! My best regards, Ivan -------------- next part -------------- An HTML attachment was scrubbed... URL: From sethg at geographika.co.uk Thu Dec 14 00:03:18 2017 From: sethg at geographika.co.uk (Seth G) Date: Thu, 14 Dec 2017 09:03:18 +0100 Subject: [mapserver-users] mapserver with kml In-Reply-To: References: Message-ID: <1513238598.3286764.1204665672.031AF63C@webmail.messagingengine.com> Hi, Your output image looks like a projection issue. Google Maps use the espg:3857 projection, but your request is asking for SRS=epsg:4326, maybe try changing this?Also are you trying to return KML or display an image using KML as a data source? If you are trying to return KML you'd need to use WFS rather than WMS which only returns images. Seth -- web:http://geographika.co.uk twitter: @geographika On Thu, Dec 14, 2017, at 01:33 AM, Ivan Ogasawara wrote: > > Dear all, > > Anyone knows some tutorial to work with mapserver (wms) and kml? > > I am trying to do it .. but with no success. > > this is the local url used: > > http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml> > for image/png works fine (tested with leaflet). > > Any tips? > > > Files: > * mapfiles: > * https://pastebin.com/4EkahMZi > * https://pastebin.com/DVSt4mmS > * kml: https://pastebin.com/LYkD4ZDL > * Result: > https://user-images.githubusercontent.com/5209757/33969313-f7029096-e042-11e7-8621-e8235f0bd5ce.png> > > Thanks! > > My best regards, > Ivan > > _________________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From jukka.rahkonen at maanmittauslaitos.fi Thu Dec 14 01:29:39 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 14 Dec 2017 09:29:39 +0000 Subject: [mapserver-users] mapserver with kml Message-ID: <604eb37628c54526b3eb66881bb5d5af@C119S212VM042.msvyvi.vaha.local> Hi, When you work with WMS the first thing to do is to read the GetCapabilities. In your case http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities I used version 1.3.0 so that the response will open into the browser automatically. For KML support you should see a line for KML like here image/png application/vnd.google-earth.kml+xml ? Do you have KML in the list? If you do not, try to add into your metadata ?wms_getmap_formatlist? It is documented in http://mapserver.org/ogc/wms_server.html. Did you just guess or is there somewhere wrong documentation about metadata item you have tried # "wms_format" "image/png") -Jukka Rahkonen- However, you must explicitly add KML into WMS outputformats in the metadata. It seems that you have played with it because you have this line commented out: # "wms_format" "image/png" L?hett?j?: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] Puolesta Ivan Ogasawara L?hetetty: 14. joulukuuta 2017 2:34 Vastaanottaja: mapserver-users at lists.osgeo.org Aihe: [mapserver-users] mapserver with kml Dear all, Anyone knows some tutorial to work with mapserver (wms) and kml? I am trying to do it .. but with no success. this is the local url used: http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml for image/png works fine (tested with leaflet). Any tips? Files: * mapfiles: * https://pastebin.com/4EkahMZi * https://pastebin.com/DVSt4mmS * kml: https://pastebin.com/LYkD4ZDL * Result: https://user-images.githubusercontent.com/5209757/33969313-f7029096-e042-11e7-8621-e8235f0bd5ce.png Thanks! My best regards, Ivan -------------- next part -------------- An HTML attachment was scrubbed... URL: From jukka.rahkonen at maanmittauslaitos.fi Thu Dec 14 01:42:19 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 14 Dec 2017 09:42:19 +0000 Subject: [mapserver-users] mapserver with kml In-Reply-To: <1513238598.3286764.1204665672.031AF63C@webmail.messagingengine.com> References: <1513238598.3286764.1204665672.031AF63C@webmail.messagingengine.com> Message-ID: <3f32a22f2f9f4da3a5101c4019989f5a@C119S212VM042.msvyvi.vaha.local> Hi Seth, KML is considered as an image format and it should work with WMS and with mode=map http://mapserver.gis.umn.edu/fr/development/rfc/ms-rfc-58.html It seems that KML output has not been developed much since the initial implementation. -Jukka Rahkonen- L?hett?j?: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] Puolesta Seth G L?hetetty: 14. joulukuuta 2017 10:03 Vastaanottaja: mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] mapserver with kml Hi, Your output image looks like a projection issue. Google Maps use the espg:3857 projection, but your request is asking for SRS=epsg:4326, maybe try changing this? Also are you trying to return KML or display an image using KML as a data source? If you are trying to return KML you'd need to use WFS rather than WMS which only returns images. Seth -- web:http://geographika.co.uk twitter: @geographika On Thu, Dec 14, 2017, at 01:33 AM, Ivan Ogasawara wrote: Dear all, Anyone knows some tutorial to work with mapserver (wms) and kml? I am trying to do it .. but with no success. this is the local url used: http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml for image/png works fine (tested with leaflet). Any tips? Files: * mapfiles: * https://pastebin.com/4EkahMZi * https://pastebin.com/DVSt4mmS * kml: https://pastebin.com/LYkD4ZDL * Result: https://user-images.githubusercontent.com/5209757/33969313-f7029096-e042-11e7-8621-e8235f0bd5ce.png Thanks! My best regards, Ivan _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From aperi2007 at gmail.com Thu Dec 14 03:59:54 2017 From: aperi2007 at gmail.com (Andrea Peri) Date: Thu, 14 Dec 2017 12:59:54 +0100 Subject: [mapserver-users] Retrieve the getfeatureinfo by point coords Message-ID: Hi, I know the GetFeatureInfo is retrieving the information of all the features available in a clicked point using the map extend (bbox) and the pixels references I,J I'm searching some workaround in mapserver to retrieve the same information of a GetFeatureInfo using the x,y coords. My need is to avoid to use the BBOX and the pixel I,J. I guess this is not available in wms specs. But with some custom parameter should it be possible. ? thx. -- ----------------- Andrea Peri . . . . . . . . . qwerty ????? ----------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From sethg at geographika.co.uk Thu Dec 14 04:55:37 2017 From: sethg at geographika.co.uk (Seth G) Date: Thu, 14 Dec 2017 13:55:37 +0100 Subject: [mapserver-users] mapserver with kml In-Reply-To: <3f32a22f2f9f4da3a5101c4019989f5a@C119S212VM042.msvyvi.vaha.local> References: <1513238598.3286764.1204665672.031AF63C@webmail.messagingengine.com> <3f32a22f2f9f4da3a5101c4019989f5a@C119S212VM042.msvyvi.vaha.local> Message-ID: <1513256137.3355896.1204905672.562491A3@webmail.messagingengine.com> Interesting! >From the WMS spec: "Graphic element formats include Scalable Vector Graphics (SVG; MIME type ?image/svg+xml?) or Web Computer Graphics Metafile (WebCGM; MIME type ?image/cgm;Version=4;ProfileId=WebCGM?) formats" I wonder how many WMS clients would handle KML as a WMS. As it is XML then it would't be accessible from another domain in a web client. Ivan's problem looks to be a projection issue only. Seth -- web:http://geographika.co.uk twitter: @geographika On Thu, Dec 14, 2017, at 10:42 AM, Rahkonen Jukka (MML) wrote: > Hi Seth, > > KML is considered as an image format and it should work with WMS and > with mode=map > http://mapserver.gis.umn.edu/fr/development/rfc/ms-rfc-58.html> > It seems that KML output has not been developed much since the initial > implementation.> > -Jukka Rahkonen- > > *L?hett?j?:* mapserver-users [mailto:mapserver-users- > bounces at lists.osgeo.org] *Puolesta *Seth G *L?hetetty:* 14. joulukuuta > 2017 10:03 *Vastaanottaja:* mapserver-users at lists.osgeo.org *Aihe:* > Re: [mapserver-users] mapserver with kml> > Hi, > > Your output image looks like a projection issue. Google Maps use the > espg:3857 projection, but your request is asking for SRS=epsg:4326, > maybe try changing this?> Also are you trying to return KML or display an image using KML as a > data source? If you are trying to return KML you'd need to use WFS > rather than WMS which only returns images.> > Seth > > -- > web:http://geographika.co.uk > twitter: @geographika > > > On Thu, Dec 14, 2017, at 01:33 AM, Ivan Ogasawara wrote: >> >> Dear all, >> >> Anyone knows some tutorial to work with mapserver (wms) and kml? >> >> I am trying to do it .. but with no success. >> >> this is the local url used: >> >> http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml>> >> for image/png works fine (tested with leaflet). >> >> Any tips? >> >> >> Files: >> * mapfiles: >> * https://pastebin.com/4EkahMZi >> * https://pastebin.com/DVSt4mmS >> * kml: https://pastebin.com/LYkD4ZDL >> * Result: >> https://user-images.githubusercontent.com/5209757/33969313-f7029096-e042-11e7-8621-e8235f0bd5ce.png>> >> >> Thanks! >> >> My best regards, >> Ivan >> >> _________________________________________________ >> mapserver-users mailing list >> mapserver-users at lists.osgeo.org >> https://lists.osgeo.org/mailman/listinfo/mapserver-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ijturton at gmail.com Thu Dec 14 05:22:51 2017 From: ijturton at gmail.com (Ian Turton) Date: Thu, 14 Dec 2017 13:22:51 +0000 Subject: [mapserver-users] Retrieve the getfeatureinfo by point coords In-Reply-To: References: Message-ID: You could make a WFS getFeatures request using a WITHIN filter Ian On 14 December 2017 at 11:59, Andrea Peri wrote: > Hi, > I know the GetFeatureInfo is retrieving the information of all the > features available in a clicked point using the map extend (bbox) and the > pixels references I,J > > I'm searching some workaround in mapserver to retrieve the same > information of a GetFeatureInfo using the x,y coords. > > My need is to avoid to use the BBOX and the pixel I,J. > > I guess this is not available in wms specs. But with some custom parameter > should it be possible. > ? > > thx. > > -- > ----------------- > Andrea Peri > . . . . . . . . . > qwerty ????? > ----------------- > > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > -- Ian Turton -------------- next part -------------- An HTML attachment was scrubbed... URL: From jukka.rahkonen at maanmittauslaitos.fi Thu Dec 14 05:32:09 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 14 Dec 2017 13:32:09 +0000 Subject: [mapserver-users] Retrieve the getfeatureinfo by point coords In-Reply-To: References: Message-ID: Hi, - use fixed i=1&j=1 - use fixed &width=2&height=2 - push the clicked coordinates as first parameters of &BBOX= - calculate x+1, y+1 for completing the BBOX I do not remember exactly if width and height can be 1 and BBOX just a point with MapServer, but 2x2 sized output and a real, small BBOX should works with all WMS servers. -Jukka Rahkonen- L?hett?j?: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] Puolesta Andrea Peri L?hetetty: 14. joulukuuta 2017 14:00 Vastaanottaja: mapserver-users at lists.osgeo.org Aihe: [mapserver-users] Retrieve the getfeatureinfo by point coords Hi, I know the GetFeatureInfo is retrieving the information of all the features available in a clicked point using the map extend (bbox) and the pixels references I,J I'm searching some workaround in mapserver to retrieve the same information of a GetFeatureInfo using the x,y coords. My need is to avoid to use the BBOX and the pixel I,J. I guess this is not available in wms specs. But with some custom parameter should it be possible. ? thx. -- ----------------- Andrea Peri . . . . . . . . . qwerty ????? ----------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From jukka.rahkonen at maanmittauslaitos.fi Thu Dec 14 06:08:43 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 14 Dec 2017 14:08:43 +0000 Subject: [mapserver-users] mapserver with kml Message-ID: Hi, Geoservers have KML output enabled by default so you can have a try with clients. Test-URL http://demo.geo-solutions.it/geoserver/wms?REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&WIDTH=1373&HEIGHT=840&LAYERS=topp%3Astates&TRANSPARENT=TRUE&FORMAT=application/vnd.google-earth.kml+xml&BBOX=-124.731422,19.49461526802622,-66.969849,54.83308673197378&SRS=EPSG:4326&STYLES= WMS 1.3.0 does not say anything about GetMap formats, just that they must appear in GetCapabilities, and all formats that appear in GetCapabilities must also be usable. -Jukka Rahkonen- L?hett?j?: Seth G [mailto:sethg at geographika.co.uk] L?hetetty: 14. joulukuuta 2017 14:56 Vastaanottaja: Rahkonen Jukka (MML) ; mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] mapserver with kml Interesting! From the WMS spec: "Graphic element formats include Scalable Vector Graphics (SVG; MIME type ?image/svg+xml?) or Web Computer Graphics Metafile (WebCGM; MIME type ?image/cgm;Version=4;ProfileId=WebCGM?) formats" I wonder how many WMS clients would handle KML as a WMS. As it is XML then it would't be accessible from another domain in a web client. Ivan's problem looks to be a projection issue only. Seth -- web:http://geographika.co.uk twitter: @geographika On Thu, Dec 14, 2017, at 10:42 AM, Rahkonen Jukka (MML) wrote: Hi Seth, KML is considered as an image format and it should work with WMS and with mode=map http://mapserver.gis.umn.edu/fr/development/rfc/ms-rfc-58.html It seems that KML output has not been developed much since the initial implementation. -Jukka Rahkonen- L?hett?j?: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] Puolesta Seth G L?hetetty: 14. joulukuuta 2017 10:03 Vastaanottaja: mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] mapserver with kml Hi, Your output image looks like a projection issue. Google Maps use the espg:3857 projection, but your request is asking for SRS=epsg:4326, maybe try changing this? Also are you trying to return KML or display an image using KML as a data source? If you are trying to return KML you'd need to use WFS rather than WMS which only returns images. Seth -- web:http://geographika.co.uk twitter: @geographika On Thu, Dec 14, 2017, at 01:33 AM, Ivan Ogasawara wrote: Dear all, Anyone knows some tutorial to work with mapserver (wms) and kml? I am trying to do it .. but with no success. this is the local url used: http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml for image/png works fine (tested with leaflet). Any tips? Files: * mapfiles: * https://pastebin.com/4EkahMZi * https://pastebin.com/DVSt4mmS * kml: https://pastebin.com/LYkD4ZDL * Result: https://user-images.githubusercontent.com/5209757/33969313-f7029096-e042-11e7-8621-e8235f0bd5ce.png Thanks! My best regards, Ivan _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From aperi2007 at gmail.com Thu Dec 14 06:25:40 2017 From: aperi2007 at gmail.com (Andrea Peri) Date: Thu, 14 Dec 2017 15:25:40 +0100 Subject: [mapserver-users] Retrieve the getfeatureinfo by point coords In-Reply-To: References: Message-ID: Hi Jukka. It work ! I need to set a size widthxheight of 2x2 (mapserver seem don't work using 1x1) and a X=Y=1 and a BBOX of 1 meters. But the result is what I need. Really thx ! A. 2017-12-14 14:32 GMT+01:00 Rahkonen Jukka (MML) < jukka.rahkonen at maanmittauslaitos.fi>: > Hi, > > > > - use fixed i=1&j=1 > > - use fixed &width=2&height=2 > > - push the clicked coordinates as first parameters of &BBOX= > > - calculate x+1, y+1 for completing the BBOX > > > > I do not remember exactly if width and height can be 1 and BBOX just a > point with MapServer, but 2x2 sized output and a real, small BBOX should > works with all WMS servers. > > > > -Jukka Rahkonen- > > > > *L?hett?j?:* mapserver-users [mailto:mapserver-users- > bounces at lists.osgeo.org] *Puolesta *Andrea Peri > *L?hetetty:* 14. joulukuuta 2017 14:00 > *Vastaanottaja:* mapserver-users at lists.osgeo.org > *Aihe:* [mapserver-users] Retrieve the getfeatureinfo by point coords > > > > Hi, > > I know the GetFeatureInfo is retrieving the information of all the > features available in a clicked point using the map extend (bbox) and the > pixels references I,J > > I'm searching some workaround in mapserver to retrieve the same > information of a GetFeatureInfo using the x,y coords. > > > > My need is to avoid to use the BBOX and the pixel I,J. > > > > I guess this is not available in wms specs. But with some custom parameter > should it be possible. > > ? > > > > thx. > > > > -- > > ----------------- > Andrea Peri > . . . . . . . . . > qwerty ????? > ----------------- > -- ----------------- Andrea Peri . . . . . . . . . qwerty ????? ----------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Thu Dec 14 07:59:52 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Thu, 14 Dec 2017 15:59:52 +0000 Subject: [mapserver-users] Legend graphic output: Nested. Message-ID: <3B21B015-1A9B-4EDE-8A8C-62F96BAD29EB@ci.stpaul.mn.us> Anbyone have any ideas on how to output a nested, or indented legend graphic (as a raster image?)? Looking for something like this: Storm ? Fitting (blue) ? Catchbasin (blue) ? Manhole (blue) ? Forcemain (blue) ? Storm Pipe (blue) Storm, Private ? Fitting (lightblue) ? Catchbasin (lightblue) ? Manhole (lightblue) ? Forcemain (lightblue) ? Storm Pipe (lightblue) Storm, Saint Paul ? Fitting (purple) ? Catchbasin (purple) ? Manhole (purple) ? Forcemain (purple) ? Storm Pipe (purple) etc. Each of the sub list items are a separate layer in the MAPFILE, and the Main headings, would be used to filter on. Do all 15 layers above need to be defined in order to get a line in the legend to appear. This is just an example BTW, I have many more main headings to contend with. I guess it comes down to, how do I grab the filter item and insert it into the Legend graphic, and probably along with the color assignment as well. Maybe I?m thinking about this backwards. I could pass in the color along with the main heading filter . . . but how to get a composite legend. Maybe it needs to be three (or more) different calls. . . . . A simpler description of the need, is to display a seamless Sewer network with color coded ownership, but using the same cartography for each sub-heading. Hmm, maybe an INCLUDE . . . It feels like a Monday today for some reason . . . . :c) bobb We learn from history that we do not learn from history. ~ George Wilhelm Hegel -------------- next part -------------- An HTML attachment was scrubbed... URL: From ivan.ogasawara at gmail.com Thu Dec 14 08:35:32 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Thu, 14 Dec 2017 12:35:32 -0400 Subject: [mapserver-users] mapserver with kml In-Reply-To: References: Message-ID: Dear all, thanks :) Carlo Ruiz, > http://mapserver.org/input/vector/kml.html Actually, in my case, the input should be shapefile and the outputs gtiff,png and kml. http://mapserver.org/output/kml_output.html Jukka Rahkonen, > I used version 1.3.0 so that the response will open into the browser automatically. Great! I changed to v 1.3.0 too this is my new url request: http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&CRS=CRS:84&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml > Do you have KML in the list? yes. Full GetCapabilities xml here: https://pastebin.com/z2myYc5m > Did you just guess or is there somewhere wrong documentation about metadata item you have tried # "wms_format" "image/png") I saw it at some page ... but I think I haven't seen any difference (I don't remember so well) .. so I commented this option. > However, you must explicitly add KML into WMS outputformats in the metadata. It seems that you have played with it because you have this line commented out: OK .. I added `wms_getmap_formatlist` parameter. I also added `wms_formatlist` to metadata layer I also change SRS=EPSG:4326 to CRS=CRS:84 Seth, > Ivan's problem looks to be a projection issue only. I also added crs:84 .. but the result is the same .. KML by specification uses only a single projection, EPSG:4326 ( http://www.gdal.org/drv_kml.html) My shapefile is defined as epsg:4326 too The png output works fine ... maybe something in kml conversion is doing wrong ... The log about kml request is here: https://pastebin.com/iP4h0wXx Ivan Ogasawara 2017-12-14 10:08 GMT-04:00 Rahkonen Jukka (MML) < jukka.rahkonen at maanmittauslaitos.fi>: > Hi, > > > > Geoservers have KML output enabled by default so you can have a try with > clients. Test-URL > > http://demo.geo-solutions.it/geoserver/wms?REQUEST=GetMap& > SERVICE=WMS&VERSION=1.1.1&WIDTH=1373&HEIGHT=840&LAYERS= > topp%3Astates&TRANSPARENT=TRUE&FORMAT=application/vnd. > google-earth.kml+xml&BBOX=-124.731422,19.49461526802622,- > 66.969849,54.83308673197378&SRS=EPSG:4326&STYLES= > > > > WMS 1.3.0 does not say anything about GetMap formats, just that they must > appear in GetCapabilities, and all formats that appear in GetCapabilities > must also be usable. > > > > -Jukka Rahkonen- > > > > *L?hett?j?:* Seth G [mailto:sethg at geographika.co.uk] > *L?hetetty:* 14. joulukuuta 2017 14:56 > *Vastaanottaja:* Rahkonen Jukka (MML) ; > mapserver-users at lists.osgeo.org > > *Aihe:* Re: [mapserver-users] mapserver with kml > > > > Interesting! > > > > From the WMS spec: "Graphic element formats include Scalable Vector > Graphics (SVG; MIME type ?image/svg+xml?) or Web Computer Graphics Metafile > (WebCGM; MIME type ?image/cgm;Version=4;ProfileId=WebCGM?) formats" > > > > I wonder how many WMS clients would handle KML as a WMS. As it is XML then > it would't be accessible from another domain in a web client. > > > > Ivan's problem looks to be a projection issue only. > > > > Seth > > > > -- > > web:http://geographika.co.uk > > twitter: @geographika > > > > > > On Thu, Dec 14, 2017, at 10:42 AM, Rahkonen Jukka (MML) wrote: > > Hi Seth, > > > > KML is considered as an image format and it should work with WMS and with > mode=map http://mapserver.gis.umn.edu/fr/development/rfc/ms-rfc-58.html > > > > It seems that KML output has not been developed much since the initial > implementation. > > > > -Jukka Rahkonen- > > > > *L?hett?j?:* mapserver-users [mailto:mapserver-users- > bounces at lists.osgeo.org ] *Puolesta > *Seth G > *L?hetetty:* 14. joulukuuta 2017 10:03 > *Vastaanottaja:* mapserver-users at lists.osgeo.org > *Aihe:* Re: [mapserver-users] mapserver with kml > > > > Hi, > > > > Your output image looks like a projection issue. Google Maps use the > espg:3857 projection, but your request is asking for SRS=epsg:4326, maybe > try changing this? > > Also are you trying to return KML or display an image using KML as a data > source? If you are trying to return KML you'd need to use WFS rather than > WMS which only returns images. > > > > Seth > > > > -- > > web:http://geographika.co.uk > > twitter: @geographika > > > > > > On Thu, Dec 14, 2017, at 01:33 AM, Ivan Ogasawara wrote: > > > > Dear all, > > > > Anyone knows some tutorial to work with mapserver (wms) and kml? > > > > I am trying to do it .. but with no success. > > > > this is the local url used: > > > > http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map& > SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_ > JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23. > 0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT= > 300&FORMAT=kml.map&SERVICE=WMS&VERSION=1.1.1&REQUEST= > GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=- > 43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858& > WIDTH=400&HEIGHT=300&FORMAT=kml > > > > for image/png works fine (tested with leaflet). > > > > Any tips? > > > > > > Files: > > * mapfiles: > > * https://pastebin.com/4EkahMZi > > * https://pastebin.com/DVSt4mmS > > * kml: https://pastebin.com/LYkD4ZDL > > * Result: https://user-images.githubusercontent.com/5209757/ > 33969313-f7029096-e042-11e7-8621-e8235f0bd5ce.png > > > > > > Thanks! > > > > My best regards, > > Ivan > > > > *_______________________________________________* > > mapserver-users mailing list > > mapserver-users at lists.osgeo.org > > https://lists.osgeo.org/mailman/listinfo/mapserver-users > > > > > > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jukka.rahkonen at maanmittauslaitos.fi Thu Dec 14 10:01:30 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 14 Dec 2017 18:01:30 +0000 Subject: [mapserver-users] mapserver with kml In-Reply-To: References: , Message-ID: <1513274491264.51863@maanmittauslaitos.fi> Hi, The name of the format in the GetCapabilities is application/vnd.google-earth.kml+xml Use that. I have never used CRS:84 as CRS and I don't know if it really works. You can stay in WMS version 1.1.1 and SRS=EPSG:4326. Verify first with image/png that GetMap returns a map. Read http://www.mapserver.org/optimization/debugging.html, add MS_ERRORFILE and DEBUG 5 and see what you get. -Jukka Rahkonen- ________________________________ L?hett?j?: Ivan Ogasawara L?hetetty: 14. joulukuuta 2017 18:35 Vastaanottaja: Rahkonen Jukka (MML) Kopio: mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] mapserver with kml Dear all, thanks :) Carlo Ruiz, > http://mapserver.org/input/vector/kml.html Actually, in my case, the input should be shapefile and the outputs gtiff,png and kml. http://mapserver.org/output/kml_output.html Jukka Rahkonen, > I used version 1.3.0 so that the response will open into the browser automatically. Great! I changed to v 1.3.0 too this is my new url request: http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&CRS=CRS:84&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml > Do you have KML in the list? yes. Full GetCapabilities xml here: https://pastebin.com/z2myYc5m > Did you just guess or is there somewhere wrong documentation about metadata item you have tried # "wms_format" "image/png") I saw it at some page ... but I think I haven't seen any difference (I don't remember so well) .. so I commented this option. > However, you must explicitly add KML into WMS outputformats in the metadata. It seems that you have played with it because you have this line commented out: OK .. I added `wms_getmap_formatlist` parameter. I also added `wms_formatlist` to metadata layer I also change SRS=EPSG:4326 to CRS=CRS:84 Seth, > Ivan's problem looks to be a projection issue only. I also added crs:84 .. but the result is the same .. KML by specification uses only a single projection, EPSG:4326 (http://www.gdal.org/drv_kml.html) My shapefile is defined as epsg:4326 too The png output works fine ... maybe something in kml conversion is doing wrong ... The log about kml request is here: https://pastebin.com/iP4h0wXx Ivan Ogasawara 2017-12-14 10:08 GMT-04:00 Rahkonen Jukka (MML) >: Hi, Geoservers have KML output enabled by default so you can have a try with clients. Test-URL http://demo.geo-solutions.it/geoserver/wms?REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&WIDTH=1373&HEIGHT=840&LAYERS=topp%3Astates&TRANSPARENT=TRUE&FORMAT=application/vnd.google-earth.kml+xml&BBOX=-124.731422,19.49461526802622,-66.969849,54.83308673197378&SRS=EPSG:4326&STYLES= WMS 1.3.0 does not say anything about GetMap formats, just that they must appear in GetCapabilities, and all formats that appear in GetCapabilities must also be usable. -Jukka Rahkonen- L?hett?j?: Seth G [mailto:sethg at geographika.co.uk] L?hetetty: 14. joulukuuta 2017 14:56 Vastaanottaja: Rahkonen Jukka (MML) >; mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] mapserver with kml Interesting! >From the WMS spec: "Graphic element formats include Scalable Vector Graphics (SVG; MIME type ?image/svg+xml?) or Web Computer Graphics Metafile (WebCGM; MIME type ?image/cgm;Version=4;ProfileId=WebCGM?) formats" I wonder how many WMS clients would handle KML as a WMS. As it is XML then it would't be accessible from another domain in a web client. Ivan's problem looks to be a projection issue only. Seth -- web:http://geographika.co.uk twitter: @geographika On Thu, Dec 14, 2017, at 10:42 AM, Rahkonen Jukka (MML) wrote: Hi Seth, KML is considered as an image format and it should work with WMS and with mode=map http://mapserver.gis.umn.edu/fr/development/rfc/ms-rfc-58.html It seems that KML output has not been developed much since the initial implementation. -Jukka Rahkonen- L?hett?j?: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] Puolesta Seth G L?hetetty: 14. joulukuuta 2017 10:03 Vastaanottaja: mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] mapserver with kml Hi, Your output image looks like a projection issue. Google Maps use the espg:3857 projection, but your request is asking for SRS=epsg:4326, maybe try changing this? Also are you trying to return KML or display an image using KML as a data source? If you are trying to return KML you'd need to use WFS rather than WMS which only returns images. Seth -- web:http://geographika.co.uk twitter: @geographika On Thu, Dec 14, 2017, at 01:33 AM, Ivan Ogasawara wrote: Dear all, Anyone knows some tutorial to work with mapserver (wms) and kml? I am trying to do it .. but with no success. this is the local url used: http://172.17.0.2/?map=/maps/dengue-Rio-de-Janeiro.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml.map&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&LAYERS=RIO_DE_JANEIRO&STYLES=&SRS=epsg:4326&BBOX=-43.7965385309,-23.0828926973,-43.0990394004,-22.7460202858&WIDTH=400&HEIGHT=300&FORMAT=kml for image/png works fine (tested with leaflet). Any tips? Files: * mapfiles: * https://pastebin.com/4EkahMZi * https://pastebin.com/DVSt4mmS * kml: https://pastebin.com/LYkD4ZDL * Result: https://user-images.githubusercontent.com/5209757/33969313-f7029096-e042-11e7-8621-e8235f0bd5ce.png Thanks! My best regards, Ivan _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users _______________________________________________ mapserver-users mailing list mapserver-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/mapserver-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From ivan.ogasawara at gmail.com Thu Dec 14 11:03:20 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Thu, 14 Dec 2017 15:03:20 -0400 Subject: [mapserver-users] mapserver with kml In-Reply-To: <1513274491264.51863@maanmittauslaitos.fi> References: <1513274491264.51863@maanmittauslaitos.fi> Message-ID: > > The name of the format in the GetCapabilities is > > application/vnd.google-earth.kml+xml > > Use that. > yes .. this format is in my GetMap/Format application/vnd.google-earth.kml+xml using this format name in url result this error: msWMSLoadGetMapParams(): Image handling error. Unsupported output format (application/vnd.google-earth.kml xml). I think I should use the same value defined on OUTPUTFORMAT/NAME > > I have never used CRS:84 as CRS and I don't know if it > really works. You can stay in WMS version 1.1.1 and SRS=EPSG:4326. Verify > first with image/png that GetMap returns a map. > > > I have no problem with image/png format (using 1.1.1 or 1.3.0) > Read > > http://www.mapserver.org/optimization/debugging.html, > add MS_ERRORFILE > and DEBUG 5 and see what you get. > These parameter are already defined: CONFIG 'ON_MISSING_DATA' 'IGNORE' CONFIG 'PROJ_LIB' './conf/' CONFIG "MS_ERRORFILE" "/var/log/mapserver.log" CONFIG "CPL_DEBUG" "ON" CONFIG "PROJ_DEBUG" "ON" DEBUG 5 but I couldn't find any important information in the log file ( https://pastebin.com/iP4h0wXx) this is the proj_lib/conf/ file : https://pastebin.com/AFNKC88Z My best regards, Ivan -------------- next part -------------- An HTML attachment was scrubbed... URL: From jukka.rahkonen at maanmittauslaitos.fi Thu Dec 14 11:21:22 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Thu, 14 Dec 2017 19:21:22 +0000 Subject: [mapserver-users] mapserver with kml In-Reply-To: References: <1513274491264.51863@maanmittauslaitos.fi>, Message-ID: <9a413527e5a2402b909df7f2f5171fab@C119S212VM042.msvyvi.vaha.local> If it is WMS standard compliant it must accept the advertized mime type. That said our KML implementation is not necessarily compliant. There may also be some trouble with parsing the request because + is changed into space. But perhaps it is OK to do so for the query string. -Jukka Rahkonen- ________________________________ L?hett?j?: Ivan Ogasawara L?hetetty: ?14.?12.?2017 21:03 Vastaanottaja: Rahkonen Jukka (MML) Kopio: mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] mapserver with kml The name of the format in the GetCapabilities is application/vnd.google-earth.kml+xml Use that. yes .. this format is in my GetMap/Format application/vnd.google-earth.kml+xml using this format name in url result this error: msWMSLoadGetMapParams(): Image handling error. Unsupported output format (application/vnd.google-earth.kml xml). I think I should use the same value defined on OUTPUTFORMAT/NAME I have never used CRS:84 as CRS and I don't know if it really works. You can stay in WMS version 1.1.1 and SRS=EPSG:4326. Verify first with image/png that GetMap returns a map. I have no problem with image/png format (using 1.1.1 or 1.3.0) Read http://www.mapserver.org/optimization/debugging.html, add MS_ERRORFILE and DEBUG 5 and see what you get. These parameter are already defined: CONFIG 'ON_MISSING_DATA' 'IGNORE' CONFIG 'PROJ_LIB' './conf/' CONFIG "MS_ERRORFILE" "/var/log/mapserver.log" CONFIG "CPL_DEBUG" "ON" CONFIG "PROJ_DEBUG" "ON" DEBUG 5 but I couldn't find any important information in the log file ( https://pastebin.com/iP4h0wXx) this is the proj_lib/conf/ file : https://pastebin.com/AFNKC88Z My best regards, Ivan -------------- next part -------------- An HTML attachment was scrubbed... URL: From woodbri at swoodbridge.com Thu Dec 14 11:44:27 2017 From: woodbri at swoodbridge.com (Stephen Woodbridge) Date: Thu, 14 Dec 2017 14:44:27 -0500 Subject: [mapserver-users] mapserver with kml In-Reply-To: References: <1513274491264.51863@maanmittauslaitos.fi> Message-ID: Ivan, The "+" char in the URL is interpreted as a space you have to ecapce this as %2B But you should be able to give the OUTPUTFORMAT block an NAME "kml" and give that the appropriate parameters like: EXTENSION "kml" MIMETYPE "application/vnd.google-earth.kml+xml" and whatever other parameters are needed, then request the format "kml" -Steve W On 12/14/2017 2:03 PM, Ivan Ogasawara wrote: > The name of the format in the GetCapabilities is > > application/vnd.google-earth.kml+xml > > Use that. > > > yes .. this format is in my GetMap/Format > > ? application/vnd.google-earth.kml+xml > > using this format name in url result this error: > > ? msWMSLoadGetMapParams(): Image handling error. Unsupported output > format (application/vnd.google-earth.kml xml). > > I think I should use the same value defined on?OUTPUTFORMAT/NAME > > > I have never used CRS:84?as?CRS and I don't know if it > really?works.?You?can stay?in WMS?version?1.1.1 and?SRS=EPSG:4326. > Verify first with image/png that GetMap returns a map. > > > I have no problem with image/png format? (using 1.1.1 or 1.3.0) > > Read > > http://www.mapserver.org/optimization/debugging.html, > add > MS_ERRORFILE and DEBUG 5 and see what you get. > > > ?These parameter are already defined: > > ? ? CONFIG 'ON_MISSING_DATA' 'IGNORE' > ? ? CONFIG 'PROJ_LIB' './conf/' > ? ? CONFIG? ? ? "MS_ERRORFILE" "/var/log/mapserver.log" > ? ? CONFIG? ? ? "CPL_DEBUG" "ON" > ? ? CONFIG? ? ? "PROJ_DEBUG" "ON" > ? ? DEBUG? ? ? ?5 > > but I couldn't find any important information in the log file > (https://pastebin.com/iP4h0wXx ) > > > this is the proj_lib/conf/ file : https://pastebin.com/AFNKC88Z > > My best regards, > Ivan > > > _______________________________________________ > mapserver-users mailing list > mapserver-users at lists.osgeo.org > https://lists.osgeo.org/mailman/listinfo/mapserver-users > --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From ivan.ogasawara at gmail.com Thu Dec 14 14:00:21 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Thu, 14 Dec 2017 18:00:21 -0400 Subject: [mapserver-users] mapserver with kml In-Reply-To: References: <1513274491264.51863@maanmittauslaitos.fi> Message-ID: Hi Stephen, 2017-12-14 15:44 GMT-04:00 Stephen Woodbridge : > The "+" char in the URL is interpreted as a space you have to ecapce this > as %2B > You're right, thanks .. but there is the same issue ... > But you should be able to give the OUTPUTFORMAT block an NAME "kml" and > give that the appropriate parameters like: > > EXTENSION "kml" > MIMETYPE "application/vnd.google-earth.kml+xml" > > and whatever other parameters are needed, then request the format "kml" > yes .. this is the kml outputformat that I am using: OUTPUTFORMAT NAME "kml" DRIVER KML MIMETYPE "application/vnd.google-earth.kml+xml" IMAGEMODE RGBA EXTENSION "kml" FORMATOPTION 'ATTACHMENT=RIO_DE_JANEIRO.kml' END -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve.lime at state.mn.us Fri Dec 15 06:04:57 2017 From: steve.lime at state.mn.us (Lime, Steve D (MNIT)) Date: Fri, 15 Dec 2017 14:04:57 +0000 Subject: [mapserver-users] Legend graphic output: Nested. In-Reply-To: <3B21B015-1A9B-4EDE-8A8C-62F96BAD29EB@ci.stpaul.mn.us> References: <3B21B015-1A9B-4EDE-8A8C-62F96BAD29EB@ci.stpaul.mn.us> Message-ID: You might be able to lay it out as a map (using a mapfile) with a bunch of inline features that you could assign symbols (could be calls to MapServer to get legend icons since a SYMBOL can be a URL) and labels. The problem is that if this needs to be really dynamic (different layers show/hide) then I think you?d have to lay things out using other tools ? MapScript, ImageMagik or something else along those line. MapScript could probably automate much of the layout as a map/mapfile programmatically. --Steve From: mapserver-users [mailto:mapserver-users-bounces at lists.osgeo.org] On Behalf Of Basques, Bob (CI-StPaul) Sent: Thursday, December 14, 2017 10:00 AM To: mapserver-users at lists.osgeo.org Subject: [mapserver-users] Legend graphic output: Nested. Anbyone have any ideas on how to output a nested, or indented legend graphic (as a raster image?)? Looking for something like this: Storm ? Fitting (blue) ? Catchbasin (blue) ? Manhole (blue) ? Forcemain (blue) ? Storm Pipe (blue) Storm, Private ? Fitting (lightblue) ? Catchbasin (lightblue) ? Manhole (lightblue) ? Forcemain (lightblue) ? Storm Pipe (lightblue) Storm, Saint Paul ? Fitting (purple) ? Catchbasin (purple) ? Manhole (purple) ? Forcemain (purple) ? Storm Pipe (purple) etc. Each of the sub list items are a separate layer in the MAPFILE, and the Main headings, would be used to filter on. Do all 15 layers above need to be defined in order to get a line in the legend to appear. This is just an example BTW, I have many more main headings to contend with. I guess it comes down to, how do I grab the filter item and insert it into the Legend graphic, and probably along with the color assignment as well. Maybe I?m thinking about this backwards. I could pass in the color along with the main heading filter . . . but how to get a composite legend. Maybe it needs to be three (or more) different calls. . . . . A simpler description of the need, is to display a seamless Sewer network with color coded ownership, but using the same cartography for each sub-heading. Hmm, maybe an INCLUDE . . . It feels like a Monday today for some reason . . . . :c) bobb We learn from history that we do not learn from history. ~ George Wilhelm Hegel -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Fri Dec 15 07:34:43 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Fri, 15 Dec 2017 15:34:43 +0000 Subject: [mapserver-users] Legend graphic output: Nested. In-Reply-To: References: <3B21B015-1A9B-4EDE-8A8C-62F96BAD29EB@ci.stpaul.mn.us> Message-ID: <01F62CE9-7C03-47F0-B089-06CD2F2E5A01@ci.stpaul.mn.us> Steve, I think I?m going to need to experiment with dynamic calls in some manner. I have the sub-list items all coming out now, but the legend is already pretty big: [http://gis.ci.stpaul.mn.us/datasets/UTILITIES_COMM/SEWERS/storm.map?FORMAT=image/png&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetLegendGraphic&_OLSALT=0.44218986502012125&SCALE=821.740340641835&WIDTH=250&STYLE=&LAYER=all] Adding in a color coding for separation to the above will be too much for most browser maps. So I?m thinking about setting up a method for defining each ownership layer based on a CGI filter. Seems the easiest to make work. There are 7 or 8 ownership classifications that would need to be hardcoded. And if I can set it up to work with multiple filter items in the legend, then I still have the option for generating the really long legend if needed simply by stringing the filter items onto a single call. Not sure how that?s going to work exactly, or if it can. bobb On Dec 15, 2017, at 8:04 AM, Lime, Steve D (MNIT) > wrote: You might be able to lay it out as a map (using a mapfile) with a bunch of inline features that you could assign symbols (could be calls to MapServer to get legend icons since a SYMBOL can be a URL) and labels. The problem is that if this needs to be really dynamic (different layers show/hide) then I think you?d have to lay things out using other tools ? MapScript, ImageMagik or something else along those line. MapScript could probably automate much of the layout as a map/mapfile programmatically. --Steve Looking for something like this: Storm ? Fitting (blue) ? Catchbasin (blue) ? Manhole (blue) ? Forcemain (blue) ? Storm Pipe (blue) Storm, Private ? Fitting (lightblue) ? Catchbasin (lightblue) ? Manhole (lightblue) ? Forcemain (lightblue) ? Storm Pipe (lightblue) Storm, Saint Paul ? Fitting (purple) ? Catchbasin (purple) ? Manhole (purple) ? Forcemain (purple) ? Storm Pipe (purple) etc. Each of the sub list items are a separate layer in the MAPFILE, and the Main headings, would be used to filter on. Do all 15 layers above need to be defined in order to get a line in the legend to appear. This is just an example BTW, I have many more main headings to contend with. I guess it comes down to, how do I grab the filter item and insert it into the Legend graphic, and probably along with the color assignment as well. Maybe I?m thinking about this backwards. I could pass in the color along with the main heading filter . . . but how to get a composite legend. Maybe it needs to be three (or more) different calls. . . . . A simpler description of the need, is to display a seamless Sewer network with color coded ownership, but using the same cartography for each sub-heading. Hmm, maybe an INCLUDE . . . It feels like a Monday today for some reason . . . . :c) bobb We learn from history that we do not learn from history. ~ George Wilhelm Hegel The third-rate mind is only happy when it is thinking with the majority. The second-rate mind is only happy when it is thinking with the minority. The first-rate mind is only happy when it is thinking. ?A. A. Milne -------------- next part -------------- An HTML attachment was scrubbed... URL: From fullergalway at gmail.com Fri Dec 15 07:40:23 2017 From: fullergalway at gmail.com (Rob Fuller) Date: Fri, 15 Dec 2017 15:40:23 +0000 Subject: [mapserver-users] fetching netcdf from web service Message-ID: Hi, I was hoping to expose some ocean data as WMS using mapserver, where the netcdf data is fetched on demand from the erddap server. The gdalinfo command appears to show something useful, however the corresponding ogrinfo command doesn't, and neither have I been able to come up with a mapfile to see any kind of data fetched from erddap and rendered. Has anyone done this or can you offer any tips? Thanks, Rob. root at 0031582b6672:/geodata# gdalinfo " http://erddap.digitalocean.ie/erddap/griddap/IMI_CONN_2D.nc?zeta[(last)][(52.9508945):(53.7291217)][(-10.7985117):(-8.8964883)]&.nc " Warning 1: No UNIDATA NC_GLOBAL:Conventions attribute Driver: netCDF/Network Common Data Format Files: none associated Size is 640, 440 Coordinate System is `' Origin = (-10.799999999999960,53.730008086083473) Pixel Size = (0.002976562500000,-0.001772727222680) Metadata: latitude#actual_range={52.95089447171561,53.72912172247213} latitude#axis=Y latitude#ioos_category=Location latitude#long_name=Latitude latitude#standard_name=latitude latitude#units=degrees_north latitude#_CoordinateAxisType=Lat longitude#actual_range={-10.79851171874996,-8.89648828124996} longitude#axis=X longitude#ioos_category=Location longitude#long_name=Longitude longitude#standard_name=longitude longitude#units=degrees_east longitude#_CoordinateAxisType=Lon NC_GLOBAL#cdm_data_type=Grid NC_GLOBAL#Easternmost_Easting=-8.89648828124996 NC_GLOBAL#geospatial_lat_max=53.72912172247213 NC_GLOBAL#geospatial_lat_min=52.95089447171561 NC_GLOBAL#geospatial_lat_resolution=0.001772727222680005 NC_GLOBAL#geospatial_lat_units=degrees_north NC_GLOBAL#geospatial_lon_max=-8.89648828124996 NC_GLOBAL#geospatial_lon_min=-10.79851171874996 NC_GLOBAL#geospatial_lon_resolution=0.002976562500000001 NC_GLOBAL#geospatial_lon_units=degrees_east NC_GLOBAL#history=2017-12-15T15:33:03Z http://milas.marine.ie/thredds/dodsC/IMI-CONN_AGG 2017-12-15T15:33:03Z http://erddap.digitalocean.ie/erddap/griddap/IMI_CONN_2D.nc?zeta[(last)][(52.9508945):(53.7291217)][(-10.7985117):(-8.8964883)]&.nc NC_GLOBAL#infoUrl=http://milas.marine.ie/thredds/ NC_GLOBAL#institution=Irish Marine Institute NC_GLOBAL#license=The data may be used and redistributed for free but is not intended for legal use, since it may contain inaccuracies. Neither the data Contributor, ERD, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, of this information. NC_GLOBAL#Northernmost_Northing=53.72912172247213 NC_GLOBAL#sourceUrl=http://milas.marine.ie/thredds/dodsC/IMI-CONN_AGG NC_GLOBAL#Southernmost_Northing=52.95089447171561 NC_GLOBAL#summary=CONN2D NC_GLOBAL#time_coverage_end=2017-12-18T00:00:00Z NC_GLOBAL#time_coverage_start=2017-12-18T00:00:00Z NC_GLOBAL#title=Irish Marine Institute Connemara Model CONN2D NC_GLOBAL#Westernmost_Easting=-10.79851171874996 NETCDF_DIM_EXTRA={time} NETCDF_DIM_time_DEF={1,6} NETCDF_DIM_time_VALUES=1513555200 time#actual_range={1513555200,1513555200} time#axis=T time#ioos_category=Time time#long_name=time since initialization time#standard_name=time time#time_origin=01-JAN-1970 00:00:00 time#units=seconds since 1970-01-01T00:00:00Z time#_CoordinateAxisType=Time zeta#colorBarMaximum=3.0 zeta#colorBarMinimum=-3.0 zeta#coordinates=time latitude longitude zeta#FillValue_=9.99999993381581e+36 zeta#ioos_category=Sea Level zeta#long_name=Sealevel Height zeta#missing_value=9.9999999e+36 zeta#standard_name=sea_surface_height zeta#units=m Subdatasets: SUBDATASET_1_NAME=NETCDF:"/tmp/file.dat":zeta SUBDATASET_1_DESC=[1x440x640] sea_surface_height (32-bit floating-point) Geolocation: LINE_OFFSET=0 LINE_STEP=1 PIXEL_OFFSET=0 PIXEL_STEP=1 SRS=GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]] X_BAND=1 X_DATASET=NETCDF:"/tmp/file.dat":longitude Y_BAND=1 Y_DATASET=NETCDF:"/tmp/file.dat":latitude Corner Coordinates: Upper Left ( -10.8000000, 53.7300081) Lower Left ( -10.8000000, 52.9500081) Upper Right ( -8.8950000, 53.7300081) Lower Right ( -8.8950000, 52.9500081) Center ( -9.8475000, 53.3400081) Band 1 Block=640x1 Type=Float32, ColorInterp=Undefined NoData Value=9.99999993381581251e+36 Unit Type: m Metadata: colorBarMaximum=3.0 colorBarMinimum=-3.0 coordinates=time latitude longitude FillValue_=9.99999993381581e+36 ioos_category=Sea Level long_name=Sealevel Height missing_value=9.9999999e+36 NETCDF_DIM_time=1513555200 NETCDF_VARNAME=zeta standard_name=sea_surface_height units=m root at 0031582b6672:/geodata# ogrinfo " http://erddap.digitalocean.ie/erddap/griddap/IMI_CONN_2D.nc?zeta[(last)][(52.9508945):(53.7291217)][(-10.7985117):(-8.8964883)]&.nc " ERROR 6: Update from remote service not supported Warning 1: No UNIDATA NC_GLOBAL:Conventions attribute FAILURE: Unable to open datasource ` http://erddap.digitalocean.ie/erddap/griddap/IMI_CONN_2D.nc?zeta[(last)][(52.9508945):(53.7291217)][(-10.7985117):(-8.8964883)]&.nc' with the following drivers. -> PCIDSK -> netCDF -> JPEG2000 -> PDF -> ESRI Shapefile -> MapInfo File -> UK .NTF -> OGR_SDTS -> S57 -> DGN -> OGR_VRT -> REC -> Memory -> BNA -> CSV -> NAS -> GML -> GPX -> LIBKML -> KML -> GeoJSON -> Interlis 1 -> Interlis 2 -> OGR_GMT -> GPKG -> SQLite -> ODBC -> WAsP -> MDB -> PGeo -> MSSQLSpatial -> PostgreSQL -> MySQL -> OpenFileGDB -> XPlane -> DXF -> CAD -> Geoconcept -> GeoRSS -> GPSTrackMaker -> VFK -> PGDUMP -> OSM -> GPSBabel -> SUA -> OpenAir -> OGR_PDS -> WFS -> HTF -> AeronavFAA -> Geomedia -> EDIGEO -> GFT -> SVG -> CouchDB -> Cloudant -> Idrisi -> ARCGEN -> SEGUKOOA -> SEGY -> XLS -> ODS -> XLSX -> ElasticSearch -> Walk -> Carto -> AmigoCloud -> SXF -> Selafin -> JML -> PLSCENES -> CSW -> VDV -> GMLAS -> TIGER -> AVCBin -> AVCE00 -> HTTP -------------- next part -------------- An HTML attachment was scrubbed... URL: From ivan.ogasawara at gmail.com Fri Dec 15 15:06:53 2017 From: ivan.ogasawara at gmail.com (Ivan Ogasawara) Date: Fri, 15 Dec 2017 19:06:53 -0400 Subject: [mapserver-users] mapserver with kml In-Reply-To: References: <1513274491264.51863@maanmittauslaitos.fi> Message-ID: Dear all, I think the problem is related to this: https://github.com/mapserver/mapserver/issues/4938 because using this URL works fine: http://172.17.0.2?map=/maps/dengue-Rio-de-Janeiro.map&mode=map&MAP_IMAGETYPE=KML&layers=RIO_DE_JANEIRO I changed the image width/height ratio and works fine too! thanks so much! 2017-12-14 18:00 GMT-04:00 Ivan Ogasawara : > Hi Stephen, > > 2017-12-14 15:44 GMT-04:00 Stephen Woodbridge : > >> The "+" char in the URL is interpreted as a space you have to ecapce this >> as %2B >> > > You're right, thanks .. but there is the same issue ... > > >> But you should be able to give the OUTPUTFORMAT block an NAME "kml" and >> give that the appropriate parameters like: >> >> EXTENSION "kml" >> MIMETYPE "application/vnd.google-earth.kml+xml" >> >> and whatever other parameters are needed, then request the format "kml" >> > > yes .. this is the kml outputformat that I am using: > > OUTPUTFORMAT > NAME "kml" > DRIVER KML > MIMETYPE "application/vnd.google-earth.kml+xml" > IMAGEMODE RGBA > EXTENSION "kml" > FORMATOPTION 'ATTACHMENT=RIO_DE_JANEIRO.kml' > END > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmckenna at gatewaygeomatics.com Fri Dec 15 21:05:24 2017 From: jmckenna at gatewaygeomatics.com (Jeff McKenna) Date: Sat, 16 Dec 2017 01:05:24 -0400 Subject: [mapserver-users] Fwd: Promotion Video In-Reply-To: References: Message-ID: Forwarding a fun video made by a highschool student as part of Google's Code-in contest... -------- Forwarded Message -------- I completed my Promotion Video For MapServer. Here is the Link https://youtu.be/EkPd2v22Vxk Thank You -Sunveer From lucadeluge at gmail.com Fri Dec 15 22:29:58 2017 From: lucadeluge at gmail.com (Luca Delucchi) Date: Sat, 16 Dec 2017 07:29:58 +0100 Subject: [mapserver-users] Fwd: Promotion Video In-Reply-To: References: Message-ID: Hi Jeff, On 16 December 2017 at 06:05, Jeff McKenna wrote: > Forwarding a fun video made by a highschool student as part of Google's > Code-in contest... > Sunveer is doing well, could I ask you to change the License, you could choose a CC license.. -- ciao Luca www.lucadelu.org From jukka.rahkonen at maanmittauslaitos.fi Sun Dec 17 23:46:43 2017 From: jukka.rahkonen at maanmittauslaitos.fi (Rahkonen Jukka (MML)) Date: Mon, 18 Dec 2017 07:46:43 +0000 Subject: [mapserver-users] mapserver with kml In-Reply-To: References: <1513274491264.51863@maanmittauslaitos.fi> , Message-ID: <1513583202837.94281@maanmittauslaitos.fi> Hi, There is a dark side in closing Mapserver issues just because they are old and still not fixed. Good that you managed to find that closed issue and kame your KML output to work. I am going to re-open the issue and add a link into this mail thread. -Jukka Rahkonen- ________________________________ L?hett?j?: mapserver-users k?ytt?j?n puolestaIvan Ogasawara L?hetetty: 16. joulukuuta 2017 1:06 Vastaanottaja: Stephen Woodbridge Kopio: mapserver-users at lists.osgeo.org Aihe: Re: [mapserver-users] mapserver with kml Dear all, I think the problem is related to this: https://github.com/mapserver/mapserver/issues/4938 because using this URL works fine: http://172.17.0.2?map=/maps/dengue-Rio-de-Janeiro.map&mode=map&MAP_IMAGETYPE=KML&layers=RIO_DE_JANEIRO I changed the image width/height ratio and works fine too! thanks so much! 2017-12-14 18:00 GMT-04:00 Ivan Ogasawara >: Hi Stephen, 2017-12-14 15:44 GMT-04:00 Stephen Woodbridge >: The "+" char in the URL is interpreted as a space you have to ecapce this as %2B You're right, thanks .. but there is the same issue ... But you should be able to give the OUTPUTFORMAT block an NAME "kml" and give that the appropriate parameters like: EXTENSION "kml" MIMETYPE "application/vnd.google-earth.kml+xml" and whatever other parameters are needed, then request the format "kml" yes .. this is the kml outputformat that I am using: OUTPUTFORMAT NAME "kml" DRIVER KML MIMETYPE "application/vnd.google-earth.kml+xml" IMAGEMODE RGBA EXTENSION "kml" FORMATOPTION 'ATTACHMENT=RIO_DE_JANEIRO.kml' END -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Tue Dec 19 07:23:49 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Tue, 19 Dec 2017 15:23:49 +0000 Subject: [mapserver-users] [Geomoose-users] [TCMUG] REMINDER Next meeting is tomorrow . . . In-Reply-To: References: <3D81FAC5-E29A-43D6-ABB0-05B3D65ECC04@ci.stpaul.mn.us> Message-ID: All, Last meet up had a good showing of people. Talked about all sorts of stuff, even Open Souce software. See here: https://www.dropbox.com/s/lwf049lpbufpakt/20171129_170101-01.barreltheory.jpg?dl=0 The next Meeting will be at Bad Weather Brewing Location: Google: Map Date: Wednesday Dec. 20th Time: 4:30pm. _______________________________________________ Geomoose-users mailing list Geomoose-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/geomoose-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From mlechner at bfs.de Wed Dec 20 04:32:05 2017 From: mlechner at bfs.de (Dr. Marco Lechner) Date: Wed, 20 Dec 2017 13:32:05 +0100 Subject: [mapserver-users] Buidl cache on demand Message-ID: <3d65cf98-6dc5-7e6c-8326-64ab2da7971e@bfs.de> Hi, is it possible to configure mapcache that the cache is build on demand and does not have to be seeded in advance? Marco -- Dr. Marco Lechner Bundesamt fuer Strahlenschutz / Federal Office for Radiation Protection SW2.1 Koordination Notfallschutzsysteme / Coordination Emergency Systems Rosastrasse 9 | D-79098 Freiburg | Germany mlechner at bfs.de | +49 (0)3018 333 6724 | www.bfs.de -- Hinweis zu Anh?ngen die auf .p7m/.p7c/.p7s oder .asc/.asc.sig enden: Die .p7?- und .asc-Dateien sind ungef?hrliche Signaturdateien (digitale Unterschriften). In E-Mail-Clients mit S/MIME Konfiguration (.p7?) oder PGP-Erweiterung (.asc) dienen sie zur: - - ?berpr?fung des Absenders - - ?berpr?fung einer evtl. Ver?nderung des Inhalts w?hrend der ?bermittlung ?ber das Internet Die Signaturdateien k?nnen ebenso dazu verwendet werden dem Absender dieser Signatur eine E-Mail mit verschl?sseltem Inhalt zu senden. In E-Mail-Clients ohne S/MIME Konfiguration oder PGP-Erweiterung erscheinen die Dateien als Anhang und k?nnen ignoriert werden. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0xD733400E.asc Type: application/pgp-keys Size: 3108 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 5099 bytes Desc: S/MIME Cryptographic Signature URL: From steve.lime at state.mn.us Wed Dec 20 05:12:11 2017 From: steve.lime at state.mn.us (Lime, Steve D (MNIT)) Date: Wed, 20 Dec 2017 13:12:11 +0000 Subject: [mapserver-users] Buidl cache on demand In-Reply-To: <3d65cf98-6dc5-7e6c-8326-64ab2da7971e@bfs.de> References: <3d65cf98-6dc5-7e6c-8326-64ab2da7971e@bfs.de> Message-ID: Yup, that?s the default behavior. The first user through pays a bit of a performance as tiles are initially created. Subsequent users will work off the cache then... ?Steve ________________________________ From: mapserver-users on behalf of Dr. Marco Lechner Sent: Wednesday, December 20, 2017 6:32:05 AM To: mapserver-users at lists.osgeo.org Subject: [mapserver-users] Buidl cache on demand Hi, is it possible to configure mapcache that the cache is build on demand and does not have to be seeded in advance? Marco -- Dr. Marco Lechner Bundesamt fuer Strahlenschutz / Federal Office for Radiation Protection SW2.1 Koordination Notfallschutzsysteme / Coordination Emergency Systems Rosastrasse 9 | D-79098 Freiburg | Germany mlechner at bfs.de | +49 (0)3018 333 6724 | www.bfs.de -- Hinweis zu Anh?ngen die auf .p7m/.p7c/.p7s oder .asc/.asc.sig enden: Die .p7?- und .asc-Dateien sind ungef?hrliche Signaturdateien (digitale Unterschriften). In E-Mail-Clients mit S/MIME Konfiguration (.p7?) oder PGP-Erweiterung (.asc) dienen sie zur: - - ?berpr?fung des Absenders - - ?berpr?fung einer evtl. Ver?nderung des Inhalts w?hrend der ?bermittlung ?ber das Internet Die Signaturdateien k?nnen ebenso dazu verwendet werden dem Absender dieser Signatur eine E-Mail mit verschl?sseltem Inhalt zu senden. In E-Mail-Clients ohne S/MIME Konfiguration oder PGP-Erweiterung erscheinen die Dateien als Anhang und k?nnen ignoriert werden. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Wed Dec 20 12:28:36 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Wed, 20 Dec 2017 20:28:36 +0000 Subject: [mapserver-users] WFS attributes to MapServer TEMPLATE in an automated way. Message-ID: <2C219738-880A-4AAD-BE42-8BC85CB0850C@ci.stpaul.mn.us> All, I?ve been working with remote WFS feeds a lot lately, and it got me thingking about how to generate a MapServer TEMPLATE that included all the ATTRIBUTE names that are published from a WFS service in an automated way. I could write a Application service to run a call to the service and report back with a TEMPLATE output, but then I started thinkging about how to do the same thing in a POSTGIS connection. Is anyone attempting to just output the attribute list directly from the SQL call and pass it to a TEMPLATE wrapper perhaps? I would be able to filter in one spot this way, in the SQL for the POSTGIS connection, and all the attributes pulled from the SQL would automatically be applied in the TEMPLATE ala: Column Name: I?m really after the auto-population of the TEMPLATE to create the columnName: valueList from the connection. I can build a SQL to generate this even not knowing the original list to start with (SELECT * from . . .) . . . I can get the column names like so: select column_name from information_schema.columns where table_name = 'stpl_swdischargepoint'; Maybe the real question is, how can I generate a TEMPLATE from a pre-sql like this? would this need to happen outside of the MapServer CGI request structure? or is there a method forward for something like: TEMPLATE = select column_name from information_schema.columns where table_name = ?stpl_swdischargepoint'; Thoughts? bobb "But what ... is it good for?" --Engineer at the Advanced Computing Systems Division of IBM, 1968, commenting on the microchip. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Wed Dec 20 13:57:45 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Wed, 20 Dec 2017 21:57:45 +0000 Subject: [mapserver-users] [TCMUG] [Geomoose-users] REMINDER Next meeting is tomorrow . . . In-Reply-To: References: <3D81FAC5-E29A-43D6-ABB0-05B3D65ECC04@ci.stpaul.mn.us> Message-ID: <2E6FAF16-A63B-43FE-B0A8-F2B4956ACD8F@ci.stpaul.mn.us> Peryy, I?ll be there, I believe Jim will too, actually everyone from the last meeting Ok?ed the date, so . . . . . ??? bobb On Dec 20, 2017, at 3:47 PM, Perry Nacionales > wrote: Are people still planning on going to bad weather after work? I'll be late--traffic--and wouldn't wanna drink beer by myself. :) -Perry On Dec 19, 2017 9:23 AM, "Basques, Bob (CI-StPaul)" > wrote: All, Last meet up had a good showing of people. Talked about all sorts of stuff, even Open Souce software. See here: https://www.dropbox.com/s/lwf049lpbufpakt/20171129_170101-01.barreltheory.jpg?dl=0 The next Meeting will be at Bad Weather Brewing Location: Google: Map Date: Wednesday Dec. 20th Time: 4:30pm. _______________________________________________ Geomoose-users mailing list Geomoose-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/geomoose-users _______________________________________________ Tcmug mailing list Tcmug at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/tcmug "I'm not interested in preserving the status quo; I want to overthrow it.? - Niccolo Machiavelli -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Wed Dec 20 13:58:26 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Wed, 20 Dec 2017 21:58:26 +0000 Subject: [mapserver-users] [TCMUG] [Geomoose-users] REMINDER Next meeting is tomorrow . . . In-Reply-To: References: <3D81FAC5-E29A-43D6-ABB0-05B3D65ECC04@ci.stpaul.mn.us> Message-ID: <42BEBB3B-EE11-43F9-B782-038D14FD0111@ci.stpaul.mn.us> Perry, I guess the Snow could scare some off though . . . bobb On Dec 20, 2017, at 3:47 PM, Perry Nacionales > wrote: Are people still planning on going to bad weather after work? I'll be late--traffic--and wouldn't wanna drink beer by myself. :) -Perry On Dec 19, 2017 9:23 AM, "Basques, Bob (CI-StPaul)" > wrote: All, Last meet up had a good showing of people. Talked about all sorts of stuff, even Open Souce software. See here: https://www.dropbox.com/s/lwf049lpbufpakt/20171129_170101-01.barreltheory.jpg?dl=0 The next Meeting will be at Bad Weather Brewing Location: Google: Map Date: Wednesday Dec. 20th Time: 4:30pm. _______________________________________________ Geomoose-users mailing list Geomoose-users at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/geomoose-users _______________________________________________ Tcmug mailing list Tcmug at lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/tcmug "I meant what I said and I said what I meant. " - Dr. Seuss -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Thu Dec 21 08:42:48 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Thu, 21 Dec 2017 16:42:48 +0000 Subject: [mapserver-users] [TCMUG] [Geomoose-users] [MapServer-users] Next Meeting . . . In-Reply-To: References: <3D81FAC5-E29A-43D6-ABB0-05B3D65ECC04@ci.stpaul.mn.us> Message-ID: <30EF24FB-51B8-403E-A5B7-2ED12F850D30@ci.stpaul.mn.us> All, Smallish turnout for the meeting last evening. Snow scared some folks and clogged up traffic some. Still some good discussion and Beer drinking. The Next meet up will be at : Tin Whiskers Location: Google: Map Date: Wednesday Jan. 17th Time: 4:30pm. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Wed Dec 27 08:35:47 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Wed, 27 Dec 2017 16:35:47 +0000 Subject: [mapserver-users] Our very own Jim K. presenting at FOSS4G Boston. Message-ID: <8A9D5893-E648-4DD5-9402-F2A59922B9C6@ci.stpaul.mn.us> https://vimeo.com/234274591 Just posted at : http://2017.foss4g.org/post_conference/#slides bobb "I never had a policy; I have just tried to do my very best each and every day. ? - Abraham Lincoln -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob.basques at ci.stpaul.mn.us Wed Dec 27 10:14:13 2017 From: bob.basques at ci.stpaul.mn.us (Basques, Bob (CI-StPaul)) Date: Wed, 27 Dec 2017 18:14:13 +0000 Subject: [mapserver-users] Some other select presentations from FOSS4G Boston. Message-ID: All, Just some more select presentations from some of our local OSS celebrities . . . GeoMOOSE 3.0: https://vimeo.com/245246140 Colubia Pacific coastal municipality utility applications with GeoMOOSE: https://vimeo.com/248124635 Mapserver/amazon: https://vimeo.com/246726303 Pro.4: https://vimeo.com/246727324 Trillions of points . . . : https://vimeo.com/245073446 Time in Postgres/PostGIS: https://vimeo.com/246143260 . . . Open Source geoportal: the Big Ten Academic Alliance Geoportal: https://vimeo.com/246207851 Raspberry Pi based GeoMoose: https://vimeo.com/234274591 Go ahead and post any locally originating presentations, presenters I missed in this list (not all videos are posted yet either). Also, any interesting ones you view, I don?t think I?llkbe able to get through viewing all of them before next year. :c) bobb -------------- next part -------------- An HTML attachment was scrubbed... URL: