A read-only category for lost FME Form topics. We hope to move them shortly.
Recently active
https://community.safe.com/s/question/0D54Q000080hU2VSAU/the-error-number-from-arcobjects-is-2147220936?t=1600358866820Is a similar error except mine says |ERROR |An error occurred while attempting to add a shape to a feature buffer. The error number from ArcObjects is: '-2147220936'. The error message from ArcObjects is: {No spatial reference exists.} However there is a coordinate system just as all the other drawings in my dataset.this is FATAL and the workbench does not continue
Hi I would like to call an oracle stored multiple times, passing different parameters. It seems only the first call is successful.Any idea what is the correct syntax ? begin storedproc1(param1, parm2);storedproc1(param3, parm4);end; I have also tried FME_SQL_DELIMITER / begin storedproc1(param1, parm2);storedproc1(param3, parm4);end;/
Hello everyone, when I create Geotiff file, I can see some pictures with differents appearances, as you can see on the attachment, we can have the feeling that we have a transparency filter.. Whatg do you think about it ? How can I resolve this problem? I have tested to see my result on different soft (Global Mapper, QGIS) and I have the same render, so it's not a "software bug" but effectively during the process when I create my Geotiff file. And the second ambiguity, I can see (on second image) something like black clip while in my raw images, I have nothing that seems abnormal to me. Any help will be appreciated :)
Hello, I submit this very simple workspace that writes three text files containing the current date obtained in different ways from a private parameter (Today).I get 3 different files when I thought I could get the same 3 files. Moreover, there is no problem to create directories containing the date.Unless I'm mistaken, it looks like a bug. Especially since when I designed the workspace, test1.txt contained the expected result... If the .fmw is copied or moved, the problem occurs.I ran this workspace on version 2020.1 (FME(R) 2020.1.1 (20200817 - Build 20614 - WIN64).
I have an issue reading ifc files containing an IFC Class called:IFCPHYSICALCOMPLEXQUANTITY https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcquantityresource/lexical/ifcphysicalcomplexquantity.htm I have tried using a feature reader to read different types of Ifc Files, but to no avail, the file gets rejected. I found a work around, where I would open the ifc file as a text file and replace the IFCPHYSICALCOMPLEXQUANTITY with IFCPHYSICALSIMPLEQUANTITY and then save and close the txt file and run the fme desktop script again, which then opens the ifc file!? Does anyone know how to read ifc files with this class? I am worried that by changing the text, I might lose some dependencies or relations within the ifc structure. Feature Request Rejection code:'ISO10303-21: Unable to open STEP file: W:\\000_mitarbeiterInnen\\000_fs\\02_FME_Watcher\\000_RawData\\TN05_V1_BEM_200827.ifc'. Please check that the file is readable.A fatal error has occurred. Check t
Hi,i need to create polygon-geometries with different start and end widths for our road network but i didnt find any useful ways to do this. The source data are lines from an esri geodatabase with attributes for the start and end widths and the offsets for the left and right corner points. A bunch of sample datasets are attached (MITAB).
I have a network where I would like to identify intersections that are not connecting at endpoints. Each line feature has it's own colour in the image below and I would like to sort out all intersections similar to A. At intersections B and C all the lines are connecting at end nodes, but the yellow line is touching the pink somewhere "midline". I would like to collect the point where this overlap happens. I have been experimenting with the TopologyBuilder but have not figured out to get the result I want.
Hi,I want to create raster based on several LIDAR component that came with a pointcloud. These are:Component: ReflectanceType = Int16Scale = 0.01Component: DeviationType = UInt16I would like to create rasters based on these atributes. I have tried PointCloudSpliter, PointCloudPropertyExtractor but without results.Any advice?
Welcome to another edition of What’s Up Wednesday! Coming back to my home office from vacation got me thinking about days back in the Safe office. Both Mark and myself work from home permanently from the chilly prairies compared to the balmy Vancouver/Surrey area that the office is in. But that doesn’t stop us from dreaming about the new office. If you haven’t seen our new building or just want to dream of being back in the office, you can go on a tour with Don and Dale through our office back in December. New BuildFME 2020.1.2.1 (b20624) has been released. No major updates but starting next week, new users can immediately start a 7-day free trial to test out FME without waiting for a license via email. FME and Web ConnectionsJen has been busy updating and creating a ton of new articles for our knowledge base regarding FME and Web Connections! Learn how to create a web connection, add authentication as well as how to access the connections. There are articles specifically about conne
I'm trying to write a CSV file with leading and trailing spaces in the field/column names. I know this is unusual, but is required for a specific deliverable. The feature writer transformer does not appear to allow this. Any ideas on how best to accomplish this?
Hello everyone, I maked NDVI raster using RasterExpressionEvaluator and I want to clip it with a shapefile area. I use RasterBandNoDataSetter tranformer to remove all NoData Value (pixel = 0) but in my area, I have some pixels with NDVI value = 0 , so they are removed also. Have you got any idea to avoid this ? Thks everyone for your help 🙂
After installing FME server 1:2020.1.2.1.20624~ubuntu.18.04 with express install, accept all defaults I can't access the web interface. No matter what I do, curl localhost only returns this empty document: curl -i localhostHTTP/1.1 200Set-Cookie: JSESSIONID=77599200BE369031A6D32AE8176D98E9; Path=/; HttpOnlyContent-Type: text/html;charset=ISO-8859-1Content-Length: 126Date: Wed, 16 Sep 2020 05:09:52 GMT <!DOCTYPE html><html lang="en"> <head> <meta HTTP-EQUIV="REFRESH" content="0; url=fmeserver"> </head></html> What am I doing wrong here? I've browsed the installation and the fmeserver logs, and everything seems go-happy-lucky there. EDIT: I guess the above code is just to make the browser stick around and wait (refresh) untill FME server has composed the web GUI it wants to present to this particular browser instance. If the browser presents the right coockie FME server will try to resume your previous session (or something like that).
Long story short I'm trying to create a Canopy height model from a set of DEM rasters and DSM rasters by subtracting the DEM from the DEM using the rastercellvaluecalculator transform. My workflow works fine except for the occasional set of DEM and DSM where they don't share the same number of pixels. This is because the DEM and DSM are generated using different sampling techniques. As such when I clip them using the clipper transform the DSM might have an extra row or column of pixels. Here is the general workflow: Once the DEMs and DSMs are clipped I get the raster extents for both datasets that looks like the following coming out of the sorter:DEMDSMAs you can see there is an example where the pair of DEM and DSM dont share the same number of rows (line 66). When this pair gets to the rastercellvalue calculator transform it stops on this pair, even though I have the rejected feature handling set to continue. I have a work around that I've tested with one image pair that
Something like this (it does't seem to like this) : <td style="color:" {fme:get-attribute("StoragePreviousWeekStartFontColour")} ";padding: 1px 1px 0px 1px; white-space:pre-wrap; word-wrap:break-word; border: 1px solid #d4d4d4"> {fme:get-attribute("Storage Mon 31 Aug")} </td>
I'm looking for some clarification regarding the difference between inspecting source data and cached data. This is specifically looking at cached data on the reader. I have always expected these to be the same, but a recent discovery has shown me that, from a geometry perspective, this is not always true. When I inspect this source data, either by clicking on the button on the reader or opening it directly in Inspector, I get what's shown here. Everything here on the map looks correct. Although, the IFMEPOLYGON geometry shows as only point coordinates, which I know is not true (there are arcs). When I inspect the cached data on this same reader, I get what's shown here.There are numerous geometries that extend to lat/long 0,0. Also, the IFMEPOLYGON geometry now shows many segments, arcs and paths. Which is expected, as this more reflects the true geometry. Furthermore, when I view this with the background map (Stamen:terrain) turned off, none of the anomalies show
I'm converting a batch of shp from one MCD to another. I can easily map 80% of the fields without any problem. But for the output MCD I need to generate a new primary key based on a concatenation of a string and a three digit increment. I've tried modifying the value (in the feature type dialog box) using the text editor, and 'string_'@Count() - this sort of works it produces 'string_1' etc but i need 'string_001' etc. Also, I already use Count() in another field which seems to confuse FME - This is probably very easy, but I'm new FME...
I am reading some oracle tables (non spatial) and trying to write them out to to sql server tables using a dynamic schema. However, I constantly get this error: Provider error `(2760) The specified schema name either does not exist or you do not have permission to use it.' Please can someone let me know what I am doing wrong, otherwise I will have to add a separate reader and writer for each table Many thanksMark
Hi, I have a single file geodatabase, within this I have a number of polygons that are broken down into various classes. For example, grass, buildings and forest etc. I want to be able to check if a grass parcel touches another grass. Would this be possible to check? ThanksB
Hello Looking extract only the number from this feature value1010002475_external perspectiveget only ( 1010002475)using regular expression
I have about 20 tables which I would like to do some data profiling on. I would like to generate a summary showing the percentage of null or empty values in each column.For example if the input table looks like this: I would want an output like this:I have played around with a few transformers like AttributeValidator, StatisticsCalculator and ListBuilder, but is PythonCaller really needed here?I am using FME 2020Thanks!
Hi all Does FMEServer has Listener to detect change on external SQL database log file? to trigger a workspace once it detects the change?
The below shown image polygon is generated from 4 lines and the big vertical line's top and bottom portion of polygon should be smooth like shown below expected output. Please can suggest the workflow to achieve the result. Input Expected output
Hello and welcome to What's Up Wednesday: a round up of the weekly FME news... FME Hub UpdatesDo you keep up to date on new FME Hub items? It's pretty easy when you have monthly summaries like this one.In brief, this month saw new transformers and templates for creating isochrones, normalizing numeric data, downloading ULDK data, and simulating tumors! My contributions were a DateExploder and a Sundial Calculator. Click the link above to check out these items - and more. 3D AR Pipe TexturesIn case you missed it, my colleague Dmitri tweeted about an AR example he'd created. Underground pipes were visualized in AR, with a texture that varied according to the pipe's age. Well worth checking out. 30 Days of the New CommunityIt's been over 30 days since the new-look community was launched. How do I know? Because my automated badging workspace just awarded Early Adopter badges to users who posted in this initial period. Did you receive this badge? Keep a look out for oth
Hi, I have upgraded my sqlexcutor transformer - now the result ashow as single, row , delimited and shows missing.is this the way it should work - or a bug?before (version 8)after upgrade (version 9)
I have a set of 2d points that I need to generate a smooth curve between all points. My goal is to either take a polyline or a set of points and generate a spline between all of the points for a best fit and write this out to a DWG. I'm trying to figure out which transformers would be best to build this. I just need to make sure that the spline passes through each point for a best fit.