• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

scenProc seems to ignore the tag natural="tree_row"

Messages
2
Country
ca-ontario
I have been tying to cultivate trees along tree rows for AFS2 with the latest dev build of scenProc

There are natural="tree_row" features in the OSM file
All features are imported into scenProc

the following SPC

LineToPolygon|FTYPE="LINE" And natural="tree_row"|2|String;landuse|forest
UnloadFeatures|natural="tree_row"

produces the log

11:10 AM LineToPolygon Information Extruding lines with filter FTYPE="LINE" AND (natural="tree_row")
11:10 AM LineToPolygon Information Extruded 0 polygons
11:10 AM UnloadFeatures Information Removing features that match natural="tree_row"
11:10 AM UnloadFeatures Information Removed 0 features

Other users in the AFS2 forum have noted similar results.

Is there some reason natural="tree_row" is not a valid scenProc tag?

thanks

PS highway="tree_row" will work
 
Last edited:

arno

Administrator
Staff member
FSDevConf team
Resource contributor
Messages
32,883
Country
netherlands
Hi,

scenProc uses the GDAL libraries to read the OSM file format. There is a file called osmconf.ini in the gdal-data folder that controls which elements from the OSM file are read. At the moment natural is not listed for line features, that's why you don't see your tree lines. I will change the configuration file in the next development release, but you can also edit it locally as a work around. Just add natural to the line that starts with attributes= in the [lines] section.
 
Top