1 min

Wie spricht man den Lambda-Operator aus?

Da gibt es unterschiedliche Auffassungen. Im Englischen: Func f = x => x * 2; ”x goes to x * 2” ”x maps to x * 2” ”x becomes x * 2” ”x induces x * 2” Func te...

F#
2 min

F# and ArcObjects, Part 3

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....

ArcObjects
1 min

F# and ArcObjects, Part 2

After accessing one feature now i iterate through all features of a feature class: open System;; #I "C:\Program Files\ArcGIS\DotNet" ;; #r "ESRI.ArcGIS.Syste...

ArcObjects
1 min

F# and ArcObjects, Part 1

After having a first look on F# its time to ask: How could i use F# with ArcObjects. So my first steps was to do something with a feature in a F# interactive...

ArcObjects