Skip to content

Commit

Permalink
h
Browse files Browse the repository at this point in the history
  • Loading branch information
rhijmans committed May 12, 2024
1 parent 51b74ac commit e27f4e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/spatVector.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class SpatVector {
SpatVector set_holes(SpatVector x, size_t i);
SpatVector remove_duplicate_nodes(int digits);

bool read(std::string fname, std::string layer, std::string query, std::vector<double> extent, SpatVector filter, bool as_proxy, std::string what, std::vector<std::string> options);
bool read(std::string fname, std::string layer, std::string query, std::vector<double> ext, SpatVector filter, bool as_proxy, std::string what, std::vector<std::string> options);

bool write(std::string filename, std::string lyrname, std::string driver, bool append, bool overwrite, std::vector<std::string>);

Expand All @@ -223,7 +223,7 @@ class SpatVector {
#ifdef useGDAL
GDALDataset* write_ogr(std::string filename, std::string lyrname, std::string driver, bool append, bool overwrite, std::vector<std::string> options);
GDALDataset* GDAL_ds();
bool read_ogr(GDALDataset *&poDS, std::string layer, std::string query, std::vector<double> extent, SpatVector filter, bool as_proxy, std::string what);
bool read_ogr(GDALDataset *&poDS, std::string layer, std::string query, std::vector<double> ext, SpatVector filter, bool as_proxy, std::string what);
SpatVector fromDS(GDALDataset *poDS);
bool ogr_geoms(std::vector<OGRGeometryH> &ogrgeoms, std::string &message);
bool delete_layers(std::string filename, std::vector<std::string> layers, bool return_error);
Expand Down

0 comments on commit e27f4e5

Please sign in to comment.