1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
Some parts of this code are derived from ITK. See ITKCopyright.txt
for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbPersistentImageToOGRLayerFilter_txx
#define otbPersistentImageToOGRLayerFilter_txx
#include "otbPersistentImageToOGRLayerFilter.h"
#include "itkTimeProbe.h"
#include <boost/foreach.hpp>
#include <stdio.h>
#include "otbMacro.h"
#include "otbOGRHelpers.h"
namespace otb
{
template<class TImage>
PersistentImageToOGRLayerFilter<TImage>
::PersistentImageToOGRLayerFilter() : m_OGRLayer(ITK_NULLPTR, false)
{
m_StreamSize.Fill(0);
}
template<class TImage>
PersistentImageToOGRLayerFilter<TImage>
::~PersistentImageToOGRLayerFilter()
{
}
template<class TImage>
void
PersistentImageToOGRLayerFilter<TImage>
::SetOGRLayer(const OGRLayerType & ogrLayer)
{
m_OGRLayer = ogrLayer;
this->Modified();
}
template<class TImage>
const typename PersistentImageToOGRLayerFilter<TImage>::OGRLayerType&
PersistentImageToOGRLayerFilter<TImage>
::GetOGRLayer( void ) const
{
return m_OGRLayer;
}
template<class TImage>
void
PersistentImageToOGRLayerFilter<TImage>
::AllocateOutputs()
{
// Nothing that needs to be allocated for the outputs : the output is not meant to be used
}
template<class TImage>
void
PersistentImageToOGRLayerFilter<TImage>
::Reset()
{
}
template<class TImage>
void
PersistentImageToOGRLayerFilter<TImage>
::Synthetize()
{
}
template<class TImage>
void
PersistentImageToOGRLayerFilter<TImage>
::Initialize()
{
// Make sure input projection ref is set
const_cast<InputImageType*> (this->GetInput())->UpdateOutputInformation();
// Ensure that spatial reference of the output layer matches with
// the spatial reference of the input image
OGRSpatialReference oSRS(this->GetInput()->GetProjectionRef().c_str());
// when dealing with .shp OGRSPatialreference is morphed to ESRI WKT,
// which results in small difference in WKT with some projection reference
// so the comparison must be done with WKT and ESRI WKT Mantis #ref567
OGRSpatialReference oSRSESRI(this->GetInput()->GetProjectionRef().c_str());
oSRSESRI.morphToESRI();
oSRSESRI.morphFromESRI();
if (m_OGRLayer.GetSpatialRef() && (!oSRS.IsSame(m_OGRLayer.GetSpatialRef())
&& !oSRSESRI.IsSame(m_OGRLayer.GetSpatialRef())))
{
if ((oSRS.Validate() != OGRERR_NONE) && (oSRSESRI.Validate() != OGRERR_NONE))
{
itkExceptionMacro(<<"Input projection ref is not valid");
}
itkExceptionMacro(<<"Spatial reference of input image and target layer do not match! "<< std::endl
<< "Input image : "<< this->GetInput()->GetProjectionRef()<< std::endl
<< "Target layer : "<<m_OGRLayer.GetProjectionRef());
}
}
template<class TImage>
void
PersistentImageToOGRLayerFilter<TImage>
::GenerateData()
{
if(!m_OGRLayer)
{
itkExceptionMacro(<<"Output OGRLayer is null.");
}
if (this->GetStreamSize()[0]==0 && this->GetStreamSize()[1]==0)
{
this->m_StreamSize = this->GetInput()->GetRequestedRegion().GetSize();
}
// call the processing function for this tile
OGRDataSourcePointerType currentTileVD = this->ProcessTile();
OGRLayerType srcLayer = currentTileVD->GetLayerChecked(0);
// Check spatial reference matches
if(srcLayer.GetSpatialRef() && m_OGRLayer.GetSpatialRef() && !srcLayer.GetSpatialRef()->IsSame(m_OGRLayer.GetSpatialRef()))
{
itkExceptionMacro(<<"Spatial reference of internal and target layers do not match!");
}
//Copy features contained in the memory layer (srcLayer) in the output layer
itk::TimeProbe chrono;
chrono.Start();
OGRErr err = m_OGRLayer.ogr().StartTransaction();
if (err != OGRERR_NONE)
{
itkExceptionMacro(<< "Unable to start transaction for OGR layer " << m_OGRLayer.ogr().GetName() << ".");
}
OGRLayerType::const_iterator featIt = srcLayer.begin();
for(; featIt!=srcLayer.end(); ++featIt)
{
OGRFeatureType dstFeature(m_OGRLayer.GetLayerDefn());
dstFeature.SetFrom( *featIt, TRUE );
m_OGRLayer.CreateFeature( dstFeature );
}
err = m_OGRLayer.ogr().CommitTransaction();
if (err != OGRERR_NONE)
{
itkExceptionMacro(<< "Unable to commit transaction for OGR layer " << m_OGRLayer.ogr().GetName() << ".");
}
chrono.Stop();
otbMsgDebugMacro(<< "write ogr tile took " << chrono.GetTotal() << " sec");
}
template<class TImage>
void
PersistentImageToOGRLayerFilter<TImage>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
}
} // end namespace otb
#endif
|