1# useDynLib(rgdal, .registration = TRUE, .fixes = "GDAL_")
2useDynLib(rgdal, .registration = TRUE)
3
4import(methods)
5import(sp)
6importFrom(grDevices, gray, rgb, hsv, col2rgb)
7importFrom(graphics, par, image.default, text)
8importFrom(stats, sd, offset, na.omit)
9importFrom(utils, packageVersion)
10importFrom("utils", "read.csv")
11
12#exportMethods(spTransform)
13exportMethods(closeDataset)
14exportMethods(initialize)
15exportMethods(summary)
16exportMethods(coerce, "[", "[[")
17
18exportClass(GDALDataset)
19exportClass(GDALDriver)
20exportClass(GDALMajorObject)
21exportClass(GDALRasterBand)
22exportClass(GDALReadOnlyDataset)
23exportClass(GDALTransientDataset)
24exportClass(SpatialGDAL, SpatialGDALWrite)
25
26export(rgdal_extSoftVersion, PROJis6ormore, GDALis3ormore, GDAL_OSR_PROJ,
27 new_proj_and_gdal)
28
29export(project, make_EPSG, projInfo, getPROJ4VersionInfo, getPROJ4libPath,
30  projNAD)
31export(CRSargs, checkCRSArgs, checkCRSArgs_ng, compare_CRS)
32export(get_P6_datum_hard_fail, set_P6_datum_hard_fail, get_transform_wkt_comment, set_transform_wkt_comment, get_last_coordOp, get_thin_PROJ6_warnings, set_thin_PROJ6_warnings, get_enforce_xy, set_enforce_xy, get_prefer_proj, set_prefer_proj, get_rgdal_show_exportToProj4_warnings, set_rgdal_show_exportToProj4_warnings, get_PROJ6_warnings_count)
33export(putRasterData, saveDataset, copyDataset, deleteDataset, saveDatasetAs)
34export(getGDALDriverNames, getDriverName, getDriverLongName, gdalDrivers)
35export(getDescription)
36export(getRasterData, getRasterTable, getProjectionRef)
37export(getRasterBand, getRasterBlockSize)
38export(toSigned, toUnSigned)
39export(getDriver, GDAL.close, GDAL.open, getColorTable,
40  getGeoTransFunc, sub.GDROD, SGDF2PCT, vec2RGB, asSGDF_GROD, RGB2PCT)
41export(make_EPSG, project, readGDAL, writeGDAL, create2GDAL)
42export(showWKT, showEPSG, showP4, showSRID, list_coordOps, best_instantiable_coordOp)
43export(readOGR, ogrInfo, ogrFIDs, ogrDrivers, writeOGR, ogrListLayers)
44export(GDALinfo, print.GDALobj, getGDALVersionInfo, getGDALCheckVersion, getGDAL_DATA_Path, getGDALwithGEOS)
45export(displayDataset)
46export(open.SpatialGDAL, copy.SpatialGDAL)
47export(llgridlines)
48export(GDALcall)
49export(rawTransform)
50export(is_proj_CDN_enabled, enable_proj_CDN, disable_proj_CDN)
51export(get_proj_search_paths, set_proj_search_paths, proj_CDN_user_writable_dir)
52
53#export(spTransform, spTransform.SpatialPoints,
54#  spTransform.SpatialPointsDataFrame, spTransform.SpatialLines,
55#  spTransform.SpatialLinesDataFrame, spTransform.SpatialPolygons,
56#  spTransform.SpatialPolygonsDataFrame)
57
58export(OGRSpatialRef, GDALSpatialRef, OSRIsProjected)
59
60export(get_OVERRIDE_PROJ_DATUM_WITH_TOWGS84,
61 set_OVERRIDE_PROJ_DATUM_WITH_TOWGS84)
62
63export(getCPLConfigOption, setCPLConfigOption)
64
65export(get_cached_orig_PROJ_LIB, get_cached_orig_GDAL_DATA,
66 get_cached_set_PROJ_LIB, get_cached_set_GDAL_DATA)
67
68#S3method(spTransform, SpatialPoints)
69#S3method(spTransform, SpatialPointsDataFrame)
70#S3method(spTransform, SpatialLines)
71#S3method(spTransform, SpatialLinesDataFrame)
72#S3method(spTransform, SpatialPolygons)
73#S3method(spTransform, SpatialPolygonsDataFrame)
74S3method(print, GDALobj)
75S3method(print, ogrinfo)
76S3method(open, SpatialGDAL)
77S3method(close, SpatialGDAL)
78S3method(close, SpatialGDALWrite)
79S3method(print, summary.SpatialGDAL)
80S3method(print, coordOps)
81
82
83
84
85