1,469 reputation
111
bio website atlefren.net
location Trondheim, Norway
age 29
visits member for 1 year, 5 months
seen 6 hours ago
stats profile views 86

Background: masters in Geomatics and ICT from Norwegian University of Science and Technology (2009). Works as a GIS software/web developer. Mainly OpenLayers, Geoserver and PostGIS


6h
comment How to create a topologically correct dataset in PostGIS (with GRASS)?
You might want to look at PostGIS topology: postgis.refractions.net/docs/Topology.html as PostGIS in itself has no concept of topology
9h
comment How to store data for gis system?
Oh, then I am not sure, i guess that if functional indicies does not support aggregate functions then this option is out. Sorry for the noise..
9h
answered How to build a portfolio for a GIS/Java career path?
May
16
answered How to store data for gis system?
May
15
comment How to calculate the bounding box by a given center and scale in Android?
the only thing you need to know about the projection is its units, OpenLayers uses the OpenLayers.INCHES_PER_UNIT[units] array in Utils.js. web mercator uses meters as unit, which means 39.37 instead of 4374754 to calculate resolution
May
15
comment How to calculate the bounding box by a given center and scale in Android?
Yes, that is correct. As long as your users doesn't expect to use the map in the same fashion as a paper map (i.e measuring on it) any value can be used (and I think most mapping libraries use 72 or 96)
May
15
answered How to calculate the bounding box by a given center and scale in Android?
May
15
comment How to calculate the bounding box by a given center and scale in Android?
Android, are you using the Google Maps API or just plain displaying an image? I Would also recommend against using an unprojected coordinate system to display your map, as it will look heavily distorted.
May
15
comment How to calculate the bounding box by a given center and scale in Android?
What projection are your map in? Web Mercator? Or do you display a unprojected map in lat/lon? And the size of your viewport, is that in pixels? Is the scale in piels? Do you use any mapping framework/library that might have a function for this?
May
14
comment Display list of OpenLayers Features which are currently visible on screen
Aha, seems OpenLayers has got guite a few new features lately. I guess my solution is akin to setting boundsOnly to true on onScreen. But either way, you have to somehow loop through all features to check them. Glad to help!
May
14
answered Why does map display like it is in Isometric when everything is in EPSG:4326?
May
14
answered OpenLayers generate random polygon
May
14
answered Is there a way to group regions on a world map for common functionality?
May
14
answered Display list of OpenLayers Features which are currently visible on screen
May
14
answered How do I stop the map at just one world/globe?
May
8
answered Webservices for GPS (Upload on DB and display it)
May
7
answered Instructor led Web mapping development courses?
Nov
27
awarded  Yearling
Aug
8
awarded  Revival
May
31
comment How to use cql_filter in OpenLayers.Control.WMSGetFeatureInfo?
Yes, that's the point. Changes to the CQL of a layer does not automagically reflect themselves to the WMSGetFeatureInfo control. So, you have to apply the new CQL filter to the GetFeatureControl as well