Converting DWG surface to line feature class in file geodatabase using FME? Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Need links on DWG to GDB conversion using FME WorkbenchFME - Can I write back into my original file geodatabaseHow to keep polygon from becoming polyline when converting polygon feature class to .dwgFME - MapInfo to File Geodatabase Conversion ProjectReading raster datasets from file geodatabase with FME?Importing dgn geometry into empty file geodatabase feature class?Translating DGN geometry to Esri File Geodatabase using FME?Converting tiff file (DEM) into XYZ file with FME?Converting *.dwg to *.shp using FME pyfme or fmeobjects in bulk?Mapping attributes from input shapefile to output CAD file using FME?
Do terminal tabs correspond to different shells?
Mortgage adviser recommends a longer term than necessary combined with overpayments
Problem when applying foreach loop
Is there a documented rationale why the House Ways and Means chairman can demand tax info?
How are presidential pardons supposed to be used?
Classification of bundles, Postnikov towers, obstruction theory, local coefficients
Did the new image of black hole confirm the general theory of relativity?
Roughly how much would it cost to hire a team of dwarves to build a home into a mountainside?
When is phishing education going too far?
What is the largest species of polychaete?
Animated film about a society's offering for gods
Writing Thesis: Copying from published papers
How did the aliens keep their waters separated?
Why is there no army of Iron-Mans in the MCU?
Why my balance decrease while baking?
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
Why did AF447 never return to normal law?
How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time
What's the point in a preamp?
ELI5: Why do they say that Israel would have been the fourth country to land a spacecraft on the Moon and why do they call it low cost?
What did Darwin mean by 'squib' here?
Working around an AWS network ACL rule limit
Large external storage stops working after being connected for a long time
Fishing simulator
Converting DWG surface to line feature class in file geodatabase using FME?
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Need links on DWG to GDB conversion using FME WorkbenchFME - Can I write back into my original file geodatabaseHow to keep polygon from becoming polyline when converting polygon feature class to .dwgFME - MapInfo to File Geodatabase Conversion ProjectReading raster datasets from file geodatabase with FME?Importing dgn geometry into empty file geodatabase feature class?Translating DGN geometry to Esri File Geodatabase using FME?Converting tiff file (DEM) into XYZ file with FME?Converting *.dwg to *.shp using FME pyfme or fmeobjects in bulk?Mapping attributes from input shapefile to output CAD file using FME?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a DWG file with autocad_surfaces.
I want to export these to a line, so that I can use it in ArcGIS Pro.
How can I convert the features from surfaces to lines in an ArcGIS File Geodatabase using FME 2018?
file-geodatabase fme dwg surface
add a comment |
I have a DWG file with autocad_surfaces.
I want to export these to a line, so that I can use it in ArcGIS Pro.
How can I convert the features from surfaces to lines in an ArcGIS File Geodatabase using FME 2018?
file-geodatabase fme dwg surface
add a comment |
I have a DWG file with autocad_surfaces.
I want to export these to a line, so that I can use it in ArcGIS Pro.
How can I convert the features from surfaces to lines in an ArcGIS File Geodatabase using FME 2018?
file-geodatabase fme dwg surface
I have a DWG file with autocad_surfaces.
I want to export these to a line, so that I can use it in ArcGIS Pro.
How can I convert the features from surfaces to lines in an ArcGIS File Geodatabase using FME 2018?
file-geodatabase fme dwg surface
file-geodatabase fme dwg surface
edited Apr 8 at 12:09
PolyGeo♦
54k1782246
54k1782246
asked Apr 8 at 10:35
birksbirks
1088
1088
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Well the key issue there is that a surface is a continuous area of measurements, whereas a line is a series of discrete points. So there has to be a decision on how you want to extract points from that surface, and how you want them to be joined together.
I suspect the transformer to use is the SurfaceModeller. Point the surface feature(s) into the Points/Lines input port. Then take the output from maybe the Contours output port, or the VertexPoints (and then join them together with a LineBuilder transformer).
Those methods would give you irregular lines. The other solution is to take the DEMRaster output and use a RasterCellCoercer to turn that into points. Then you have a regular DEM grid, which again you could use the LineBuilder to join up.
However, I would question why you need to turn this into lines, just to get this into a different format. As far as I know, File Geodatabase does support surface-type geometries. So there shouldn't be a need to convert the geometry type so radically, just to get the data in there (of course, if you need the data in a different geometry to carry out a different action on it, that's fine).
Thank you. I will try this out. I want it to become the centerline of the surface so that I can represent it in a GIS-database which stores pipe centerlines.
– birks
Apr 9 at 11:18
There's a CentreLineReplacer transformer, but you'll need to get the data from a surface into a polygon before you could use that. I don't think it would work on a surface.
– Mark Ireland
Apr 9 at 14:24
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318103%2fconverting-dwg-surface-to-line-feature-class-in-file-geodatabase-using-fme%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Well the key issue there is that a surface is a continuous area of measurements, whereas a line is a series of discrete points. So there has to be a decision on how you want to extract points from that surface, and how you want them to be joined together.
I suspect the transformer to use is the SurfaceModeller. Point the surface feature(s) into the Points/Lines input port. Then take the output from maybe the Contours output port, or the VertexPoints (and then join them together with a LineBuilder transformer).
Those methods would give you irregular lines. The other solution is to take the DEMRaster output and use a RasterCellCoercer to turn that into points. Then you have a regular DEM grid, which again you could use the LineBuilder to join up.
However, I would question why you need to turn this into lines, just to get this into a different format. As far as I know, File Geodatabase does support surface-type geometries. So there shouldn't be a need to convert the geometry type so radically, just to get the data in there (of course, if you need the data in a different geometry to carry out a different action on it, that's fine).
Thank you. I will try this out. I want it to become the centerline of the surface so that I can represent it in a GIS-database which stores pipe centerlines.
– birks
Apr 9 at 11:18
There's a CentreLineReplacer transformer, but you'll need to get the data from a surface into a polygon before you could use that. I don't think it would work on a surface.
– Mark Ireland
Apr 9 at 14:24
add a comment |
Well the key issue there is that a surface is a continuous area of measurements, whereas a line is a series of discrete points. So there has to be a decision on how you want to extract points from that surface, and how you want them to be joined together.
I suspect the transformer to use is the SurfaceModeller. Point the surface feature(s) into the Points/Lines input port. Then take the output from maybe the Contours output port, or the VertexPoints (and then join them together with a LineBuilder transformer).
Those methods would give you irregular lines. The other solution is to take the DEMRaster output and use a RasterCellCoercer to turn that into points. Then you have a regular DEM grid, which again you could use the LineBuilder to join up.
However, I would question why you need to turn this into lines, just to get this into a different format. As far as I know, File Geodatabase does support surface-type geometries. So there shouldn't be a need to convert the geometry type so radically, just to get the data in there (of course, if you need the data in a different geometry to carry out a different action on it, that's fine).
Thank you. I will try this out. I want it to become the centerline of the surface so that I can represent it in a GIS-database which stores pipe centerlines.
– birks
Apr 9 at 11:18
There's a CentreLineReplacer transformer, but you'll need to get the data from a surface into a polygon before you could use that. I don't think it would work on a surface.
– Mark Ireland
Apr 9 at 14:24
add a comment |
Well the key issue there is that a surface is a continuous area of measurements, whereas a line is a series of discrete points. So there has to be a decision on how you want to extract points from that surface, and how you want them to be joined together.
I suspect the transformer to use is the SurfaceModeller. Point the surface feature(s) into the Points/Lines input port. Then take the output from maybe the Contours output port, or the VertexPoints (and then join them together with a LineBuilder transformer).
Those methods would give you irregular lines. The other solution is to take the DEMRaster output and use a RasterCellCoercer to turn that into points. Then you have a regular DEM grid, which again you could use the LineBuilder to join up.
However, I would question why you need to turn this into lines, just to get this into a different format. As far as I know, File Geodatabase does support surface-type geometries. So there shouldn't be a need to convert the geometry type so radically, just to get the data in there (of course, if you need the data in a different geometry to carry out a different action on it, that's fine).
Well the key issue there is that a surface is a continuous area of measurements, whereas a line is a series of discrete points. So there has to be a decision on how you want to extract points from that surface, and how you want them to be joined together.
I suspect the transformer to use is the SurfaceModeller. Point the surface feature(s) into the Points/Lines input port. Then take the output from maybe the Contours output port, or the VertexPoints (and then join them together with a LineBuilder transformer).
Those methods would give you irregular lines. The other solution is to take the DEMRaster output and use a RasterCellCoercer to turn that into points. Then you have a regular DEM grid, which again you could use the LineBuilder to join up.
However, I would question why you need to turn this into lines, just to get this into a different format. As far as I know, File Geodatabase does support surface-type geometries. So there shouldn't be a need to convert the geometry type so radically, just to get the data in there (of course, if you need the data in a different geometry to carry out a different action on it, that's fine).
answered Apr 8 at 14:52
Mark IrelandMark Ireland
9,87732760
9,87732760
Thank you. I will try this out. I want it to become the centerline of the surface so that I can represent it in a GIS-database which stores pipe centerlines.
– birks
Apr 9 at 11:18
There's a CentreLineReplacer transformer, but you'll need to get the data from a surface into a polygon before you could use that. I don't think it would work on a surface.
– Mark Ireland
Apr 9 at 14:24
add a comment |
Thank you. I will try this out. I want it to become the centerline of the surface so that I can represent it in a GIS-database which stores pipe centerlines.
– birks
Apr 9 at 11:18
There's a CentreLineReplacer transformer, but you'll need to get the data from a surface into a polygon before you could use that. I don't think it would work on a surface.
– Mark Ireland
Apr 9 at 14:24
Thank you. I will try this out. I want it to become the centerline of the surface so that I can represent it in a GIS-database which stores pipe centerlines.
– birks
Apr 9 at 11:18
Thank you. I will try this out. I want it to become the centerline of the surface so that I can represent it in a GIS-database which stores pipe centerlines.
– birks
Apr 9 at 11:18
There's a CentreLineReplacer transformer, but you'll need to get the data from a surface into a polygon before you could use that. I don't think it would work on a surface.
– Mark Ireland
Apr 9 at 14:24
There's a CentreLineReplacer transformer, but you'll need to get the data from a surface into a polygon before you could use that. I don't think it would work on a surface.
– Mark Ireland
Apr 9 at 14:24
add a comment |
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318103%2fconverting-dwg-surface-to-line-feature-class-in-file-geodatabase-using-fme%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown