Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ Le format est basé sur [Keep a Changelog](https://keepachangelog.com/) et ce pr

### Added
### Changed

- `Cache` : Export de toutes les classes implémentées dans Cache dans leurs propres fichiers. Les fichiers ajoutés sont :
* `CurlPool`
* `ProjPool`
* `StoragePool`
* `IndexCache`
* `IndexElement`
* `TmsBook`
* `StyleBook`
* `CrsBook`

### Deprecated
### Removed
### Fixed
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ Le programme qui suit charge une pyramide SCAN1000 à partir de son descripteur,
#include <boost/log/trivial.hpp>
#include <rok4/utils/Pyramid.h>
#include <rok4/image/file/FileImage.h>
#include "rok4/utils/Cache.h"
#include "rok4/utils/CrsBook.h"
#include "rok4/utils/TmsBook.h"
#include "rok4/utils/ProjPool.h"
#include "rok4/utils/IndexCache.h"
#include "rok4/utils/StoragePool.h"

int main( int argc, char *argv[] ) {

Expand Down
4 changes: 2 additions & 2 deletions include/rok4/image/Image.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
#include <cmath>

#include "rok4/utils/BoundingBox.h"
#include "rok4/utils/CRS.h"
#include "rok4/utils/Cache.h"
#include "rok4/utils/CrsBook.h"


#define METER_PER_DEG 111319.492

Expand Down
1 change: 1 addition & 0 deletions include/rok4/processors/Grid.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
#include "rok4/utils/CRS.h"
#include <proj.h>
#include <string>
#include "rok4/utils/ProjPool.h"

/**
* \author Institut national de l'information géographique et forestière
Expand Down
1 change: 1 addition & 0 deletions include/rok4/style/Style.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class Style;
#include "rok4/style/Aspect.h"
#include "rok4/enums/Interpolation.h"
#include "rok4/utils/Configuration.h"
#include "rok4/utils/StoragePool.h"
#include "rok4/enums/Format.h"

/**
Expand Down
4 changes: 4 additions & 0 deletions include/rok4/utils/CRS.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@
#pragma once

#include <string>
#include <boost/log/trivial.hpp>
#include <proj.h>
#include "rok4/utils/BoundingBox.h"
#include "rok4/utils/ProjPool.h"
#include "rok4/utils/Utils.h"

/**
* \~french \brief Code utilisé en cas de non correspondance avec les référentiel de Proj
Expand Down
Loading