A space to discuss FME Form
Recently active
I want to create multi-level JSON (nested) with a specific attribution. I have followed this article. I need to get this structure:Following the tutorial I'm not able to add more attributes to the top layer as is written also in JSONTemplater help. I need to get something like this:[{ "category": "kategorie1", "caption": "A", "features" : [ { "name" : "A1", "rotation" : "0", "bbox" : [ -733690, -1024463, -732733, -1023916 ] }, { "name" : "A2", "rotation" : "0", "bbox" : [ -733093, -1024114, -732939, -1023902 ] }, ... ]},{ "category": "kategorie2", "caption": "B", "features" : [ { "name" : "B1", "rotation" : "0", "bbox" : [ -732924, -1023936, -732707, -1023601 ] }, { "name" : "B2", "rotation" : "0", "bbox" : [ -733058, -1023918, -732884, -1023584 ] }, ... ]}]All I can get so far is this:{ "A" : [ { "name" : "A1", "
So, I'm looking at this question on StackExchange.The user has color blindness and has trouble reading error messages in the FME log, because they are colored red.I've filed an enhancement request and we'll work on adding those to our special color blindness theme.But, in the meantime I was wondering if we could do something else to help. They don't want to have to copy/paste the log to check for errors. So I was thinking perhaps a shutdown python script that automatically extracted error messages? Or even a script that just popped up a dialog saying "there has been an error"?Any thoughts? My Python skills are pretty limited. And yes, I just tweeted recently how I never needed them, because of FME. Ironic (or perhaps moronic) is the word you're looking for!NB: I'll treat it as a challenge and award extra reputation points for really good solutions.
Hi folksI am working on a database that has multiple fields that could contain a part of an address, I want to merge these fields and then split them into the specified fields eg House number, Street name & type, Country, Suburb, State and Postcode. Some records may only have 2 of the fields populated whilst others may have all populated. I've managed to do this using a very convoluted sql script in the past but was hoping that there might be an easier way to do it in FME See attached for before and after
is there any way to KMZ and Shape file reader get the link automatically when file or link change from website for Examplehttps://www.nhc.noaa.gov/gis/forecast/archive/al012022_5day_latest.zipits today may be tomorrow file name change with lk015856.zip and anything is there and parameter if i need to use
I want to update an ifc file with attributes. For a reason I don't know, the element to be linked is not displayed in the ifc reader. That's why I created an extra Ifc Reader with Dataviews and linked the missing attributes via the Elementid. Then I linked the attributes of the Excel list with the added attributes. The output on the second FeatureMerger is correct. Only the ifc is not written correctly. What could be the reason?
I have a Autocad Dwg file which needs to be converted to imdf file format. I have an active Autodesk Autocad account to work with Dwg files. Please guide me on how I would proceed with FME on converting the cad file to imdf file.
Hello there we are using the staticImageFeatcher transformer in order to get a satellite image that fit the bounding box of vector the bounding box changes based on each vector's data is there any way to extract the right value for the Height/width in the image to set the parameter of the staticMapfetcher dynamic? Thanks
Hey community!Question: How can I intersect 3D building multipatch features with 3D lines? tnkx a lot!
I am using FME 2021.2 with a PostGIS reader and an XML Templater and XML Formatter to write an XML output file. This works fine, but the coordinate X/Y output appears in scientific notation as below: <Vertex> <X>2.010340655257836E6</X> <Y>6.7378739141772166E6</Y> </Vertex>I have tried all kinds of different things, however I can't get FME to format the output they way I want it like below: <Vertex> <X>2010340.655257836</X> <Y>6737873.914177217</Y> </Vertex>This code fragment in the XML Templater works:<Vertex> <X>{geom:get-x-coord()}</X> <Y>{geom:get-y-coord()}</Y></Vertex>This does not:<Vertex> { let $l := geom:get-x-coord() let $r := @Format(%.2f,$l) return $r }</Vertex>I can't figure out how to pass the X value above into the format function, or find another workaround.
I have very limited experience in configuring FME Server, so this may be a softball question. I have workspace that generates a set of shapefiles, and outputs those to a directory specified in a published parameter. However, when uploading this workspace to Server, the output is only available as a download. Can FME Server be configured to output the results to the published parameter directory? In the case of this workbench, it would be a local directory.
I have a centerline for a river (2d) and some nearby measurement (3d-points). I want to single create a 3d line that takes the z-values from point within a distance of 100m. So far I tried chopping up the line using the pointOnLine-overlayer, but I can't transfer the z-values nor relevant attributes. I tried several approaches, like deconstructing the line into points, but I feel I am missing something crucial. Does anyone have a solution or some advice?
Hi Experts, I'm tearing my hair out ... 🙂I have a line (with approx 500 vertexes), the length between each of them is never the same.... My goal is to split the distance between each vertex into 5 equal lenghts.... in other world I would like to resample my line with approx 500 vertexes into 2500... I'll do everything for help... Maaasive thank you
Which transformer to use to combine column in ArcMap? For instance I want to associate Transformer with High Voltage Fuse?
Guys, Simple for u, not so simple for me... I have a LAS with number of additional attributes. How can swap one of them as for example classification attribute or other standard LAS 1.4 format attributesThank you!!
I am trying to export an Esri geodatabase as ifc using some of the transformers provided in a tutorial for DWG to ifc but I end up with ifc file that has no geometry stored.
I'd like to run this quarterly using parameters for the date specific strings.Thanks!
Hi,I am using FeatureReader to read JSON files, and converting to GDB, when I select multiple JSON files in Desktop it is working fine without any problem, but when publish into FME server it is not working (when select single JSON it is working fine) when select more than one JSON files.Before I used JSON reader but due to some issues (not auto updating schema (attributes) until we manual update reader ) now not using.Requesting you to help what exactly the reason for this error?
I have hosted FME server in Kubernetes and trying to create a stream there.I am not able to allocate any engine to my stream from the user interface and it shows this warning. There are 2 links mentioned in the warning :https://community.safe.com/s/article/fme-server-on-docker-frequent-engine-scaling-and-jhttps://docs.safe.com/fme/html/FME_Server_Documentation/404-Redirect.htm The second one gives 404 error.The first one mentions about the allocation of engines to queues (nothing about streams). I also tried to check on the Engine Management page if there is any possibility to allocate engines to streams from there but no luck.Job routing rules and Engine assignment rules have queues as one of the options but not streams. There must be a way to allocate engines to streams in case of the Kubernetes deployment if I am not wrong.Can someone please help me with the options. Thanks in advance!
Hi There, I am reading from a csv column in which the hours and minutes are spelled out as a string, and I want to calculate the total minutes value. So I created a series of new columns in Attribute Manger and used some Regular expressions to isolate the components of the string. However, when I use the Multiply function against a zero value in the string, I do not get zero. And as we all know zero times any number should always equal zero. Any ideas what I am doing wrong? (I have attached my workbench for reference). THANK YOU!
Hi list.I have a rather large list of choices with aliases, that I need to present to a workspace user when run. The dialog includes a button called "Import", and so I expected it to be able to read a database view with the choice values. But alas no, it reads nothing. Even though I tried to name the two view columns "Display Name" and "Value", the choice dialog remains empty.There is no immidiate help for this, so I'm asking here instead.What are the possibilities and caveats of using Import/From Dataset when populating a user parameter (type choice with alias) ?I'm using 2020.2, but it's the exact same in 2022.0.
How do I convert tif file to Arc/Info binary grid?
I'm working on a system which has Oracle Client 32Bit and 64Bit installed. The environment variable for ORACLE_HOME points to the 64Bit version. I need FME to use the 32Bit Version of the Oracle Client - just for this very FME process. Is it possible to set the environment variable temporarily at runtime (e.g. Phytin Startup Script)? How would this be done?
How to compare schema difference between to gdb and get a status report matching/nonmatching
Name attribute will come in columns and value come in rows Is there any way to that Output come like this
Let's say I have two Line L1 and L2 that intersect on point A.Line A has node on point A but Line B does not.