A space to discuss FME Form
Recently active
id,v1,v2,v3,v4,v522,hi,hi,1,2,322,hi,hi,1,2,322,,,,,33,hi,hi,2,3,433,hi,hi,2,3,433,hi,hi,2,3,433,,,,,44,no,no,5,5,544,no,no,5,5,544,no,no,5,5,544,no,no,5,5,544,no,no,5,5,544,,,,,
Hi everybody! I have tried to remove collinear points without sucess. For example, a square(polygon) but between two vertex I have one or more collinear point's. So how to remove this???
Hello,it is first time ,I use zigzag transformer but I got error .python caller failed to process feature .how could I fix it ?i have used spike remover for the same input lines data and it works great without problem .which transformer is better (spike or zigzag) ?which angle that should I use from your experience ?thanks in advance FME 2021
I have a bunch of points that fall on or near a linear features (routes/roads). Is there a way to use the Locate Features Along Route tool in FME to identify which route those points fall on?
Using the FME Server REST API repositories I am able to retrieve items for every repository using the HTTPCaller , but I have a difficulty retrieving an actual item (the .fmw to download or put into a parameter)As in this exampleI tried Accept=contents and disposition=inline in the Headers section of HTTPCaller, but all I get is information about the items and not the item itselfCan someone give me an example of configuration of the HTTPCaller in order to retrive de item itself. Thanks in advance!
Hello ,i would like to know ,what is the best tolerance value that use in anchored snapper (segment type ) to avoid any problems i have used 0.02 , automatic .it works well for some lines but it make problems for some lines when they are so close or cross eachother .The segment type of anchored snapper make lines to be intersected instead of cross lines . which value that people has experience with segment type always use without any problems ? is there any alternative for anchored snapper segment type that do the same purpose fme 2021
I have string attributes which contain repetitions of the type ";;;". How to get rid of these, however numerous the ";" are. I also want to nullify the attribute if it ends up being ";" but that can be done with a trimmer afterwards. I also would like to delete other repetitions.Examples"31;31;44" should become "31;44""*3*;*3*;*4*" or "*3*;*4*;*3*" should become "*3*;*4*" "#TH#;#BAT#;#TH#;#BAT#" should become "#TH#;#BAT#"
Hi, I hope someone can help:I have an XML URL.The URL is updated from my reader with different variables. I go through the AttributeManager to stitch together the different URL's I need to go through.I input that result into the FeatureReader When I go the the FeatureReaders parameters and choose elements to match, I see this:If I take the URL the FeatureReader receives as an input and paste it into a browser, it worksIf I take the working URL and hardcode the value directly into the AttributeManager, without any variables, the FeatureReader gives me the same errorIf I paste the working URL directly into the dataset within the feature reader I get access to the parameters and can set the Elements to Match, but that won't make it updateable from the features coming in.To me it seems like I can't use an attribute with the URL as a dataset on an XML URL in the FeatureReader. Does anyone know how to use an attribute calculated from the input data to get the information out of a
I'm having problems with the "fmepy emailer".... Python Exception <ModuleNotFoundError>: No module named 'fmepy_emailer'PythonFactory failed to load python symbol `fmepy_emailer.Emailer'. An outdated FME packaged transformer may be in use. Please check Tools > FME Options > FME Packages to confirm that all FME Packages are up to dateFactory proxy not initializedEmailer_CALLER (PythonFactory): PythonFactory failed to process feature New to FME Flow... TIA for your help!!!
I have LAZ files which I want to divide into smaller pointcloud (XYZ format) to use in another software. I cannot find how to split / divide a single pointcloud into smaller ones, based on point counts. For instance, splitting a single cloud of 20 M points into 4 clouds of 5 M points. For now, I use the PointCloudCoercer to create single points, then add an attribute for "batch number" (with the point number), then re-create cloud merging the points according the the bach number. But this takes very long. I you have any tricks, I would be happy to know it! Thanks.
Hello, I have a response from one of the APIs I'm using that is formatted as the following example:{ "measurements": { "timestamps": [ 1504377563, 1504378166, 1504378372 ], "waterGround_mm": [ -5032, -5030, -5031 ], "waterNAP_mm": [ -7532, -7530, -7531 ], "validity": [ null, null, 1 ] }}Now, I can flatten this using FME to the following lists:_timestamps{0}: 1504377563_timestamps{1}: 1504378166_timestamps{2}: 1504378372_waterGround_mm{0}: -5032_waterGround_mm{1}: -5030_waterGround_mm{2}: -5031_waterNAP_mm{0}: -7532_waterNAP_mm{1}: -7530_waterNAP_mm{2}: -7531_validity{0}: <null>_validity{1}: <null>_validity{2}: 1Now my idea would be to rename these lists somehow to _list{}.measurement, _list{}.waterGround_mm and so on, and then use the ListExploder to explode _list{} to features. Sadly I can't find a way to properly rename _measurement{} to _list{}.measurement. Also, just trying to explode _measurements{} takes a long time with 30.000 records. Is this the proper way to go ab
Is it possible to set the Cache-Control header using the S3Connector? When I set Cache-Control in the Metadata it changes it to x-amz-meta-cache-control, which supposedly doesn't influence cache control on client requests. My Content-Type metadata changes are working. Is that a bug or expected behaviour? Via Cloudberry
I current have a workspace reader that reads all of fmw files in a selected folder and use the WriterFeatureTypes to find all names writers in each fmw file being read.But when I run it, it produces errors and warning messages that aren't relevant to the writer (screenshot below).Since I only wish to know the names of the layers that the writers in each fmw file writes to, is there a way to avoid reading other information about the file such as the transformers to remove getting these errors/warnings and improve the runtime?
Hello everybody, i have a question regarding lines: i have a network of lines in 2D. The information of the z value is stored in 2 different attributes: height1 and height2. I would like to add the height1 to the coordinate0, and would like to add the height2 to the coordinate1 of the line. So far i tried some ways but could not figure out how to overwrite the coordinates of the line. any help would be very appreciated. thanks a lot rené
I have a network that is just input lines from shapefiles.All line ends are snapped together correctly. The network has an origin point that is a point feature shapefile.I want to be able to run the TopologyBuilder and assign that origin point as node 1. From there, each subsequent intersection of the lines where a new node is created should be incremental from the origin Node 1. In my attached picture you can see the top part of the image is what I want.The bottom section of the image is what comes out. In the TopologyBuilder I am using end nodes only, so there is no overlapping intersections creating false nodes. I have tried to plug the network into the NetworkFlowOrientor and it does not do anything if I then rebuild the topology after it. Does anyone have any ideas as to what could be causing this, or how to set an origin node to build a topology on? *As a side note, I can identify the origin node ID and from there each line segment has the from and to, however I do not know how t
Hello Forum, What is the best part of the community for raising potential bugs / unusually behaviour in FME Form 2023? I've looked around but couldn't see anything obvious. I'm happy to post it in here, but if there is a more appropriate location then that would be ideal. Thanks,Stuart
The data lod-2 is available for public download from the servers of the bavarian Opengeodata platform at: <https://geodaten.bayern.de/opengeodata/OpenDataDetail.html?pn=lod2> here is the direct link to a 2x2 km square that is downloaded as citygml: <https://download1.bayernwolke.de/a/lod2/citygml/704_5322.gml> I have a whole workflow for processing that data, which stopped working without any changes to the workspace. Then i realized that i can not even read the data into a brand new workspace with the same basic error message being shown:'http://repository.gdi-de.org/schemas/adv/citygml/1.0/cityGMLBaseLoD2.xsd' mapped to 'C:\\Users\\mutzh\\AppData\\Local\\Temp\\FME_XSD_CACHE\\fmexsd_1696954419928_14896.xml'Parsing schema document 'C:\\Users\\mutzh\\AppData\\Local\\Temp\\FME_XSD_CACHE\\fmexsd_1696954419928_14896.xml' ...XML Parser error: 'Error at file: 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd' line: 126 column: 22 message: unable t
Could someone please provide a dead simple "Hello World!" example of using the FILECOPY writer? Try as I might I can't figure out how to get this to work. Thanks. This is what I've done so far:FME Workbench >> File new >> Blank workspaceWriters >> Add >> FILECOPYDataset: \\\\server\\share\\source folder >> OKOpen "user attributes" and set:filecopy_source_dataset = "\\\\server\\share\\source folder\\filename.ext"filecopy_dest_dataset = d:\\tempfilecopy_dest_filename = xx-my-filename.ext At this point "Run Workspace" doesn't work. "Run to this" does work, but aside from filling the log window nothing appears to happen.Workspace and log are attached.
Hello FME Community, I am using a 'StringConcatenator' and a 'Text Writer' to create a text file. I intend to add two separate texts as the header and footer. Is there a way to add these texts without duplication?
Hi I'm trying to create a workspace that takes in multiple Esri GDB files from a specified folder. For some reason though, only the original GDB file I started with seems to be able to pass (MyProject1.gdb). Any other GDB when passed through my FeatureReader is automatically rejected, but the log file doesn't say anything useful beyond that I need to save my GDB files correctly, even though the process has been identical for the various files. For some reason, if I were to copy my original gdb and put it in the same location as the original file, the workspace seems able to process the original file, but not the identical copy of it at all. There might be a chance that MyProject3.gdb is corrupted but that's highly unlikely since I did it in the exact same way as MyProject1, but I can't understand why the exact duplicate of MyProject1.gdb cannot be read and gets rejected.
Hi, I know this has been asked a few years ago but is there a straight forward way to extract attachments from an ArcGIS online feature service?Thanks
I am following the Trailmix for FME Certified Professional (we don't have server yet and need to complete the first one). Before scheduling the exam there is the module on FME Server Authoring. Should this come after the FME Certified Professional exam has been passed? I don't want to do 7 hours of training if I can't do the exercises and it's not covered in the first exam. I am just querying the order of the modules here, not the content.
Q1. I need help adding 15mins to the this datetime: 5/10/2023 06:45 PM Q2. I also want to be able to pick two datetime points to calculate the duration in hours. Eg. (a) 5/10/2023 07:00 PM (b) 5/10/2023 12:00 AM Tried several options but can't get it to work. Thanks!
Hi @daveatsafe! I am trying to use the Maximo object updater but I am missing the existing object url. Per the documentation I can use the Object Querier the problem is that I cant seem to figure out which attribute to use as there are several url lake attributes. Any thoughts/ guidance that you can provide would be amazing.Thanks so much in advanced.G
I have created a parameter that allows the user to extract records between 2 chosen dates.The problem is that if the user forgets when they last ran the FME, the next time it is run, they may get some duplicate records if the "From Date" chosen is a date earlier than the last time FME was run. As usually the "To date" is always the day the FME is run, ideally I would like FME to take the date and time from the log file. That way the user will always get the latest data since FME was last run.But I do not know to get FME to read the logfile and set this up.