596 reputation
111
bio website careers.stackoverflow.com/cv/…
location
age
visits member for 1 year, 4 months
seen May 13 at 8:24
stats profile views 32

May
7
asked Updating leaflet variable using dajax?
May
7
awarded  Nice Answer
Apr
5
answered label for circle marker in leaflet
Apr
5
revised Need help assigning values to field using OGR in python
added 1 characters in body
Apr
5
answered Need help assigning values to field using OGR in python
Mar
11
comment leaflet geojson coordinate problem
Indeed a matter of confusion. I just read the geojson spec and indeed you are absolutely right. Here is the quote The order of elements must follow x, y, z order (easting, northing, altitude for coordinates in a projected coordinate reference system, or longitude, latitude, altitude for coordinates in a geographic coordinate reference system)
Mar
11
accepted leaflet geojson coordinate problem
Mar
11
revised leaflet geojson coordinate problem
added 162 characters in body
Mar
11
asked leaflet geojson coordinate problem
Jan
19
awarded  Yearling
Dec
28
awarded  Popular Question
Oct
28
awarded  Nice Question
Oct
26
comment Self intersections for polygons, howto solve?
Have you tried to define topology rules for your GDB? It is a painful way to go but I ended up getting valid topologies after all. This is good starting point
Oct
26
comment Migrate python scripts from 9.3 to Arcgis10
One little comment: 2. Replace all gp. with arcpy isn't really needed if you assign your import to gp, lik so: import arcpy gp = arcpy. Which also makes 5. obsolete, as well.
Oct
25
answered Generate a matrix of change from shoreline vector time-series data
Oct
25
comment Python dataSource Path
Hard to tell like this. Maybe it is a arcgis.workspace problem. I ran into various problems not setting the ArcInfoWorkspace(). Even though this is under ArcGis 9x using the gp-object.
Oct
24
accepted Migrate python scripts from 9.3 to Arcgis10
Oct
24
comment Migrate python scripts from 9.3 to Arcgis10
Thanks Roy. Good resource there!
Oct
24
asked Migrate python scripts from 9.3 to Arcgis10
Oct
15
comment function, return, 'instancemethod' object has no attribute '__getitem__'
Your indentation levels, at least how you posted them here, are not quite right. You also should take a look at [the python style guide ] (python.org/dev/peps/pep-0008). It well help others to read your code.