-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to enumerate the contents (feature classes and feature datasets, not interested in tables, etc) of a file geodatabase using vba/arcobjects.
I have the file GDB set as an IGxDatabase object, but can't find a way of getting further in. I've had a look at the geodatabase object model and…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Having trouble converting an Ilayer to an IPolygon.
I am developing a toolbar for ArcMap and I grab a layer via code from the side table of contents. The Layer is a Polygon, but the code won't convert it to a IPolygon.
Can anyone help me out? This is the code I am using to try and convert it to…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
After accessing one feature now iterating through all features of a feature class: open System;;
#I "C:\Program Files\ArcGIS\DotNet";;
#r "ESRI.ArcGIS.System.dll";;
#r "ESRI.ArcGIS.DataSourcesGDB.dll";;
#r "ESRI.ArcGIS.Geodatabase.dll";;
open ESRI.ArcGIS.esriSystem;;
open ESRI.ArcGIS.DataSourcesGDB;;
open…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Today i played a little bit with IFeature-sequences and piping data. The result was a calculator of the bounding box around all features in a feature class. Maybe a little bit dirty, but for learning was it OK. ;-) open System;;
#I "C:\Program Files\ArcGIS\DotNet";;
#r "ESRI.ArcGIS.System…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
After having a first look on F# its time to ask: Who could i use F# with ArcObjects. So my first steps was to do something with a feature in a F# interactive session. And these are my first code lines: open ESRI.ArcGIS.esriSystem;;open ESRI.ArcGIS.DataSourcesGDB;;open ESRI.ArcGIS.Geodatabase;;let…
>>> More