• 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.

Search results

  1. Vogel

    BGLBoundaries to .kml

    updated 11/13: - Add FS9 BGL's placement & Library Objects support
  2. Vogel

    BGLBoundaries to .kml

    Hi, Here is a new version of the tool that can generate in addition a .kml file with the placements of Library objects declared in BGL's... I add direct link to the great catalog from Sven2157: http://fsxsoc.dynamicfxgroup.com/ in placemark's description when objects are from FSX base library...
  3. Vogel

    BGLBoundaries to .kml

    Thanks for your comment Caleb :)
  4. Vogel

    BGLBoundaries to .kml

    thanks Gary... link edited with a .zip file
  5. Vogel

    BGLBoundaries to .kml

    Hi Guys, I don't know if this kind of tool already existed but... I present you with a tool that allows you to generate a kml file to visualize the geographic boundaries of your .BGL files at the nearest LOD / Qmid And/or BGL Placements of library objects. Rather convenient to view in google...
  6. Vogel

    Help needed for Qmid To bounding box coordinates

    And if it's correct, may be a function like this in C# could be added to the wiki on BGL & Qmid subject... public static List<double> GetBoundingCoordinates(int Level, int U, int V) { var factor = Math.Pow(2, Level - 1); var qmidwidth = 240 / factor...
  7. Vogel

    BGLDEC - A resample BGL (and CGL) DECompressor

    Congratulations! really exciting and interesting topic. :stirthepo I'm just starting to learn some binaryreading working on bgl files and I'm very impressed with your work on the pictures decompression algorithms, wow! The true is that the 3/4th of the fsdevelopper's wiki about bgl format is...
  8. Vogel

    Help needed for Qmid To bounding box coordinates

    ok, after some search on the forum I found the post that help me much ;) thx Arno -> http://www.fsdeveloper.com/forum/threads/convert-lat-lon-to-qmid.437367/#post-744620 with that informations, I think I found the right formula... I share with you guys From QMID (level, U, V) we can found...
  9. Vogel

    Help needed for Qmid To bounding box coordinates

    Hi, Could someone help me to find the relation between U and V from Qmid(level, U, V) and the coordinates (latitude, longitude) from the upper left corner please. I try something like: Latitude = (V+2exp(??)) x 360 / 2exp(level) or similar but it seems to work only for low level...
  10. Vogel

    AdAttributeIfInside step

    Temporary Resolved: So it wasn't just a feeling... I've just reload an old Scenproc revision (v1.0.0.0 r2810 02/06/2014) convert and launch my new script... the process take 90 sec with old one vs more than 15-20 min with new one...
  11. Vogel

    AdAttributeIfInside step

    I have experimented the ADDATTRIBUTEIFINSIDE step in my script, and I feel that this function is much slower than old Scenproc revision (2015-2016) ... It's me or the algorithm and/or processing library has been changed since then? Otherwise maybe someone knows a batch or a command line...
  12. Vogel

    Problems with the new syntax of the latest Scenproc

    wow ! perfect Arno... I'm going to download it now :D
  13. Vogel

    Problems with the new syntax of the latest Scenproc

    many thanks Arno :)
  14. Vogel

    Problems with the new syntax of the latest Scenproc

    any idea or other way to get around this :scratchch
  15. Vogel

    Problems with the new syntax of the latest Scenproc

    Thx Arno, it' s a Int
  16. Vogel

    Problems with the new syntax of the latest Scenproc

    Sorry Arno but unfortunately it does not work either :( I tried: FTYPE="LINE" And (bridge<>1 OR NOT bridge) -> Scenproc error: "is not a valid filter string" FTYPE="POINT" And (bridge<>1 OR bridge=NONE) -> don't work FTYPE="POINT" And (bridge<>1 OR bridge=NULL) -> don't work FTYPE="POINT"...
  17. Vogel

    Problems with the new syntax of the latest Scenproc

    Oh !!! Of course ! Yes it should work like that! Thank you Arno... And dont worry about the delay, it's already very nice of you to take the time to answer ;) I hope your vacation have been good. :)
  18. Vogel

    Problems with the new syntax of the latest Scenproc

    Another example to try to make me understand better(do not pay attention to the syntax, I write it from memory). This is just an example, I know there are many other ways to do it, but this pseudo script is there only to try to demonstrate the problem. Script Objective: I want to: 1/ import the...
  19. Vogel

    Problems with the new syntax of the latest Scenproc

    Hi Chris, thanks for the advice :) Unfortunately it does not work either. :( I think there is a real problem related to the implementation of the new syntax....Or so I missed something. ;)
  20. Vogel

    Problems with the new syntax of the latest Scenproc

    Hi Arno, before the scenproc syntax change, I could do a filtering on attributes without losing the features that did not possess this attribute in their table ... Exemple: Old syntax: PLACEPOINTSALONGLINE | FTYPE = LINE; bridge!1 | ....! New syntax: PLACEPOINTSALONGLINE | FTYPE = "LINE" And...
Back
Top