Skip to main content
Archived

Creator - now with attributes

Related products:Transformers
siennaatsafe
fmelizard
david_r
ebygomm
+54
  • bbvector
  • siennaatsafe
    siennaatsafe
  • fmelizard
    fmelizard
  • david_r
    david_r
  • ebygomm
    ebygomm
  • redgeographics
    redgeographics
  • danilo_fme
    danilo_fme
  • dustin
    dustin
  • sigtill
    sigtill
  • warrendev
    warrendev
  • tcrossman
    tcrossman
  • vxn43
    vxn43
  • jkr_wrk
    jkr_wrk
  • j.botterill
    j.botterill
  • davideagle
    davideagle
  • bruceharold
    bruceharold
  • lars_de_vries
    lars_de_vries
  • nic_ran
    nic_ran
  • jelle
    jelle
  • geosander
    geosander
  • kennyo
    kennyo
  • chriswilson
    chriswilson
  • philippeb
    philippeb
  • helmoetz
    helmoetz
  • ciarab
    ciarab
  • aquamarine
  • olivier
    olivier
  • bibold
  • jasperwis
    jasperwis
  • richsnyder0
  • esko
    esko
  • tomtoni109
    tomtoni109
  • pratsch
    pratsch
  • ev_robin
    ev_robin
  • ml56067
    ml56067
  • nordpil
    nordpil
  • geolassi
    geolassi
  • dfresh
    dfresh
  • mygis
    mygis
  • xabi
    xabi
  • tkent
  • ecthelion
    ecthelion
  • lily
    lily
  • roland.martin
    roland.martin
  • gavinpark
    gavinpark
  • jneujens
    jneujens
  • anari
    anari
  • geoal
    geoal
  • jpvo
    jpvo
  • wicki
    wicki
  • _fabian_
    _fabian_
  • soeren
    soeren
  • ngoorman
    ngoorman
  • 1200ks
  • geoharsha
  • richardsnyder3
  • battlezone77
  • pharaon
  • mark2atsafe
    mark2atsafe

fmelizard
Contributor
Instead of creating features with no attributes, enhance the creator to optionally allow a table of attributes and values to be used to populate a series of features, one per row of the table.
This post is closed to further activity.
It may be a question with a best answer, an implemented idea, or just a post needing no comment.
If you have a follow-up or related question, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

10 replies

lars_de_vries
Forum|alt.badge.img+10
I think it would be better to use the AttributeCreator to do this, to have better control of your workbench. It is the same as exposing attributes in your reader or use the AttributeExposer to do so. For WorkbenchManagement purposes I would prefer to do the last. For a tidy workbench it would be a good alternative (and of you can always choose to do the last if the first is made available).

jkr_wrk
Influencer
Forum|alt.badge.img+28
  • May 30, 2018

I think it is very counter-intuitive that you can use a Creator to create an Feature with geometry but can not create a Feature with Attributes. I sometimes use a Creator with geometry to create a spatial filter for my FeatureReaders. But I have to use a AttributeCreator to create the parameters for my WHERE clause.

So it would be good to move the geometry options of the Creator to the GeometryReplacer (Which can create geometry already) and rename the creator to Starter. Or to integrate the AttributeCreator options into the Creator.


fmelizard
Contributor
Forum|alt.badge.img+17
  • Author
  • Contributor
  • May 30, 2018

You can create one attribute and assign a value, on the feature(s) coming out of the Creator.


paalped
Contributor
Forum|alt.badge.img+5
  • Contributor
  • June 20, 2018

 

PythonCreator can do this for you:

 

""" Date: 2018.06.20 Author: Paal S. Pedersen """ import fmeobjects class FeatureCreator(object): def __init__(self): pass def input(self,feature): # Create a Point feature pointFeature = fmeobjects.FMEFeature() # To create 3d objects we must .setDimension(fmeobjects.FME_THREE_D) # For 2 dimensional use .setDimension(fmeobjects.FME_TWO_D) pointFeature.setDimension(fmeobjects.FME_THREE_D) # To set the correct GeometryType use .setGeometryType, or else feature will be undefined # A list of valid geometries can be found in the doc # See help(feature) # Or help(fmeobjects) for a complete documentation of fmeobjects pointFeature.setGeometryType(fmeobjects.FME_GEOM_POINT) # Lets add a coordinate with x, y, z = 0, 0, 1 pointFeature.addCoordinate(1,1,0) # Lets create a dictionary with som attributes point_attributes = {'TYPE':'POINT', 'HAS_ATTRIBUTES': 'YES'} # Make a loop to itereate the attributes and set them to the feature for attribute_name, attribute_value in point_attributes.items(): pointFeature.setAttribute(attribute_name, attribute_value) # Now send this feature back to FME self.pyoutput(pointFeature) # Lets create a polygon polygonFeature = fmeobjects.FMEFeature() # Repeat procedure polygonFeature.setDimension(fmeobjects.FME_TWO_D) polygonFeature.setGeometryType(fmeobjects.FME_GEOM_POLYGON) # Lets create some coordinates coordinate_list = [(0,0), (0,10), (10,10), (10,0), (0,0)] # Make a loop to place each coordinate on the feature for x, y in coordinate_list: polygonFeature.addCoordinate(x,y) # Send the feature back to FME self.pyoutput(polygonFeature) def close(self): pass

 

Remember to expose attributes created

ecthelion
Contributor
Forum|alt.badge.img+12
  • Contributor
  • June 28, 2022

By right-clicking on 'Created', you can add (one at a time) as many attributes as you like - with default values.


LizAtSafe
Safer
Forum|alt.badge.img+15
  • Safer
  • February 8, 2024
The following idea has been merged into this idea:
All the votes have been transferred into this idea.

LizAtSafe
Safer
Forum|alt.badge.img+15
  • Safer
  • February 8, 2024
The following idea has been merged into this idea:
All the votes have been transferred into this idea.

LizAtSafe
Safer
Forum|alt.badge.img+15
  • Safer
  • February 8, 2024
The following idea has been merged into this idea:
All the votes have been transferred into this idea.

LizAtSafe
Safer
Forum|alt.badge.img+15
  • Safer
  • February 8, 2024
The following idea has been merged into this idea:
All the votes have been transferred into this idea.

andreaatsafe
Safer
Forum|alt.badge.img+10
  • Safer
  • September 20, 2024

Thanks for all the feedback on adding attributes to the Creator transformer. After reviewing the suggestions, we’ve decided not to proceed with this change right now.
The Creator is designed mainly for creating geometry features, and adding attribute functionality could complicate its core purpose.

For now, using workarounds like the AttributeCreator after or adding attributes on the output port is the best approach.

We might revisit the Creator’s overall functionality in the future, but for now, this change isn’t on the table.

Thanks for your understanding!


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings