179 reputation
18
bio website thinkin-gis.blogspot.com
location Germany
age
visits member for 8 months
seen 2 days ago
stats profile views 7

Apr
27
comment Problem reading attribute with Python using osgeo.ogr
Well, I tried on your shp - all fine! What you could do, is print out all Field names to check if it is really what it is :) 'n=0 while n < feature.GetFieldCount(): print feature.GetFieldDefnRef(n).GetName() n+=1'
Apr
26
answered map of europe in list of lat/long points
Apr
26
comment ArcToolbox Metadata. How does this work?
ArcGis version?
Apr
25
awarded  Constituent
Apr
25
awarded  Caucus
Apr
16
answered Export KML ExtendedData with OGR2OGR
Feb
13
answered How to view the whole KML
Feb
8
awarded  Critic
Jan
28
revised Updating polygon geometry: deleting inner rings with python
deleted 33 characters in body
Nov
26
comment How to generate a random but believable digital elevation model?
Plus it would need some kind of filltering at the end to nivelate those mosaic edges of random parts..
Nov
20
comment Self intersections for polygons, howto solve?
I would say it's all about shapefiles.. they are strange creatures. GDB is always better. btw, all fine with projections?
Nov
14
comment Placing label designs in the legend - Is it possible in ArcGIS 9.3.1?
but still it's such a weak tool... :/
Oct
29
comment Is there a way to visualize a 3D full/solid body (like a full layer) in ArcScene
Thanks for suggestion! The Subsurface looks pretty attractive to try! And also XTools Pro - never heard about!
Oct
22
comment From text data create a FeatureClass with table with python
Uf.. those floats turned to be strings (forgot to convert) :S.. So all works fine!
Oct
18
comment From text data create a FeatureClass with table with python
Thanks a lot for a help!. I did not define the CRS, I guess therefore. If one defines it maybe that should accept I hope. Will try it!
Oct
18
revised From text data create a FeatureClass with table with python
deleted 128 characters in body
Oct
18
comment From text data create a FeatureClass with table with python
First, thought that MakeXYEventLayer is available just manually! Will try a bit later, since it worked out with Pyshp
Oct
18
comment From text data create a FeatureClass with table with python
Indeed all was matching. First thing, I found that it did not accept coordinates as floats(!), other thing was that I was writing data all casted in tuple w.record(tuple(casted)), so it meant 1 unit ! I just needed to parse it like w.record(*casted) to put one by one.
Oct
18
accepted From text data create a FeatureClass with table with python
Oct
18
comment From text data create a FeatureClass with table with python
Such a simplicity that even I found though of :) w.fields.. But after checking I see that I have the same length of fields as well as of my tuple I want to write in... But the same error anyways..