Q&A - Question

Tatukgis de isoline how to create.

Question
ilkk asked on October 26, 2017, keyword: Developer Kernel
Tatukgis de isoline how to create.
Answers
ilkk replied October 24, 2017
How to create Tatukgis isoline.
Artur Redzko (TatukGIS) replied October 25, 2017
uses 
  GisContour ;

function generateContourLayer( const _lp : TGIS_LayerPixel ) : TGIS_LayerVector ;
var
  cg : TGIS_ContourGenerator ;
  lv : TGIS_LayerVector ;
begin
  cg := TGIS_ContourGenerator.Create ;
  try
    cg.ContourBase     := 0 ;
    cg.ContourInterval := 10.0 ;
    cg.Smoothen        := True ;

    lv := TGIS_LayerVector.Create ;
    lv.Name := 'Contour' ;
    lv.CS   := _lp.CS ;
    lv.Open ;

    cg.Generate( _lp, lv, '') ;
  finally
    cg.Free ;
  end ;
  Result := lv ;
end;
ilkk replied October 26, 2017
Thank you for your answer.
we can create a triangle model of isoline without using raster.
If you would like to answer the question please Sign In.
*
*
Please review our recent Privacy Policy.
If you have any questions or requests, please contact us.
Rules
The Questions and Answers (Q & A) is intended to provide a means of communication between TatukGIS customers.
 
  1. Licensed users (with active maintenance play) of TatukGIS products may contribute to the Q & A content. Read-only access is available to anyone.
  2. Keep the content positive and professional.
  3. Be courteous to others by posting information when a question or issue asked on the Q & A is answered or resolved by other means (such as with help from TatukGIS technical support). Offer others at least a hint how the posted question was answered or the issue was resolved.
  4. The Q & A is not a replacement for TatukGIS technical support. TatukGIS team may or may not regularly follow or contribute content.