Tuesday, June 27, 2006

OGC Technical Committee Meeting - Edinburgh

I'm sitting here in Edinburgh at the OGC TC meeting. Its day two and I've caught up on my email :-) Day 1 went quite well, we started off by proposing to create a security WG to separate securing your data on the web from digital rights management. With any luck this will lead to fewer flame wars on GeoWanking when people produce open source products which allow you to secure your WMS. I might have upset Graham Vowles from Ordnance Survey by alluding to OS being seen as the spawn of the devil.

There was a brief discussion about the future of SLD with respect to what OWS 4 was up to. This seemed to boil down to SLD is dead long live Symbology Encoding. The only change is to remove UserLayers from SLD and move the binding of a style to a data layer to an annex to WMS, WFS, WCS etc.

On day 2 I'm now sitting in GeoDRM (we're discussing the future of GeoDRM) the debate seems to still be how should we do this, are proxies the way to go or do we need to build directly into the services, which language should we use and how do we integrate geo in to DRM.

I'll post later with some thoughts on the crisis management session and tomorrow's grid workshop.

1 Comments:

Blogger Unknown said...

Hi, i was working with geotools , and i saw your answer :
public void mouseMoved(MouseEvent e) {
if (highlightLayer == null) {
return;
}

Rectangle bounds = e.getComponent().getBounds();
JMapPane pane = (JMapPane) e.getSource();
Envelope mapArea = pane.mapArea;
double x = (double) (e.getX());
double y = (double) (e.getY());
double width = mapArea.getWidth();
double height = mapArea.getHeight();

double mapX = ((x * width) / (double) bounds.width) + mapArea.getMinX();
double mapY = (((bounds.getHeight() - y) * height) / (double)
bounds.height)
+ mapArea.getMinY();

but i can't make this code work.. i'm using geotools 2.2.4, connecting JMapPane to Postgis, but i can't make that work..

i leave my e-mail :
bsdemonio@gmail.com

i hope u can help me ...

See u..

1:44 PM  

Post a Comment

<< Home