├── .Rbuildignore ├── .Rprofile ├── .gitattributes ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE.note ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── BuildHistogram.R ├── CheckEntry.R ├── ChooseColor.R ├── ChoosePch.R ├── Data.R ├── DefineGrid.R ├── EditData.R ├── EditFunction.R ├── EditText.R ├── EvalFunction.R ├── ExportData.R ├── Format.R ├── FormatDateTime.R ├── GetBitmapImage.R ├── GetFile.R ├── ImportDataset.R ├── ImportSpreadsheet.R ├── ImportText.R ├── LaunchGui.R ├── ManagePackages.R ├── ManagePolygons.R ├── ManageVariables.R ├── Plot3d.R ├── ProgressBar.R ├── Rename.R ├── RestoreSession.R ├── Search.R ├── SetAxesLimits.R ├── SetConfiguration.R ├── SetCrs.R ├── SetPlotAnnotation.R ├── SetPolygonLimits.R ├── SetSortOrder.R └── zzz.R ├── README.md ├── appveyor.yml ├── inst ├── CITATION ├── extdata │ ├── ex.data.csv │ ├── ex.data.xlsx │ ├── ex.polygon.1.txt │ └── ex.polygon.2.txt └── images │ ├── README.md │ ├── axes.gif │ ├── close.gif │ ├── config.gif │ ├── import.gif │ ├── manage.gif │ ├── pch.gif │ ├── polygon.gif │ ├── rlogo.gif │ └── save.gif └── man ├── BuildHistogram.Rd ├── CheckEntry.Rd ├── ChooseColor.Rd ├── ChoosePch.Rd ├── Data.Rd ├── DefineGrid.Rd ├── EditData.Rd ├── EditFunction.Rd ├── EditText.Rd ├── EvalFunction.Rd ├── ExportData.Rd ├── Format.Rd ├── FormatDateTime.Rd ├── GetBitmapImage.Rd ├── GetFile.Rd ├── ImportDataset.Rd ├── ImportSpreadsheet.Rd ├── ImportText.Rd ├── LaunchGui.Rd ├── ManagePackages.Rd ├── ManagePolygons.Rd ├── ManageVariables.Rd ├── Plot3d.Rd ├── ProgressBar.Rd ├── Rename.Rd ├── RestoreSession.Rd ├── Search.Rd ├── SetAxesLimits.Rd ├── SetConfiguration.Rd ├── SetCrs.Rd ├── SetPlotAnnotation.Rd ├── SetPolygonLimits.Rd └── SetSortOrder.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/.Rprofile -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/LICENSE.note -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/BuildHistogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/BuildHistogram.R -------------------------------------------------------------------------------- /R/CheckEntry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/CheckEntry.R -------------------------------------------------------------------------------- /R/ChooseColor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ChooseColor.R -------------------------------------------------------------------------------- /R/ChoosePch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ChoosePch.R -------------------------------------------------------------------------------- /R/Data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/Data.R -------------------------------------------------------------------------------- /R/DefineGrid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/DefineGrid.R -------------------------------------------------------------------------------- /R/EditData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/EditData.R -------------------------------------------------------------------------------- /R/EditFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/EditFunction.R -------------------------------------------------------------------------------- /R/EditText.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/EditText.R -------------------------------------------------------------------------------- /R/EvalFunction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/EvalFunction.R -------------------------------------------------------------------------------- /R/ExportData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ExportData.R -------------------------------------------------------------------------------- /R/Format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/Format.R -------------------------------------------------------------------------------- /R/FormatDateTime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/FormatDateTime.R -------------------------------------------------------------------------------- /R/GetBitmapImage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/GetBitmapImage.R -------------------------------------------------------------------------------- /R/GetFile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/GetFile.R -------------------------------------------------------------------------------- /R/ImportDataset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ImportDataset.R -------------------------------------------------------------------------------- /R/ImportSpreadsheet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ImportSpreadsheet.R -------------------------------------------------------------------------------- /R/ImportText.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ImportText.R -------------------------------------------------------------------------------- /R/LaunchGui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/LaunchGui.R -------------------------------------------------------------------------------- /R/ManagePackages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ManagePackages.R -------------------------------------------------------------------------------- /R/ManagePolygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ManagePolygons.R -------------------------------------------------------------------------------- /R/ManageVariables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ManageVariables.R -------------------------------------------------------------------------------- /R/Plot3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/Plot3d.R -------------------------------------------------------------------------------- /R/ProgressBar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/ProgressBar.R -------------------------------------------------------------------------------- /R/Rename.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/Rename.R -------------------------------------------------------------------------------- /R/RestoreSession.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/RestoreSession.R -------------------------------------------------------------------------------- /R/Search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/Search.R -------------------------------------------------------------------------------- /R/SetAxesLimits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/SetAxesLimits.R -------------------------------------------------------------------------------- /R/SetConfiguration.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/SetConfiguration.R -------------------------------------------------------------------------------- /R/SetCrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/SetCrs.R -------------------------------------------------------------------------------- /R/SetPlotAnnotation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/SetPlotAnnotation.R -------------------------------------------------------------------------------- /R/SetPolygonLimits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/SetPolygonLimits.R -------------------------------------------------------------------------------- /R/SetSortOrder.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/SetSortOrder.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/appveyor.yml -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/extdata/ex.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/extdata/ex.data.csv -------------------------------------------------------------------------------- /inst/extdata/ex.data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/extdata/ex.data.xlsx -------------------------------------------------------------------------------- /inst/extdata/ex.polygon.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/extdata/ex.polygon.1.txt -------------------------------------------------------------------------------- /inst/extdata/ex.polygon.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/extdata/ex.polygon.2.txt -------------------------------------------------------------------------------- /inst/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/README.md -------------------------------------------------------------------------------- /inst/images/axes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/axes.gif -------------------------------------------------------------------------------- /inst/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/close.gif -------------------------------------------------------------------------------- /inst/images/config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/config.gif -------------------------------------------------------------------------------- /inst/images/import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/import.gif -------------------------------------------------------------------------------- /inst/images/manage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/manage.gif -------------------------------------------------------------------------------- /inst/images/pch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/pch.gif -------------------------------------------------------------------------------- /inst/images/polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/polygon.gif -------------------------------------------------------------------------------- /inst/images/rlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/rlogo.gif -------------------------------------------------------------------------------- /inst/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/inst/images/save.gif -------------------------------------------------------------------------------- /man/BuildHistogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/BuildHistogram.Rd -------------------------------------------------------------------------------- /man/CheckEntry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/CheckEntry.Rd -------------------------------------------------------------------------------- /man/ChooseColor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ChooseColor.Rd -------------------------------------------------------------------------------- /man/ChoosePch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ChoosePch.Rd -------------------------------------------------------------------------------- /man/Data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/Data.Rd -------------------------------------------------------------------------------- /man/DefineGrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/DefineGrid.Rd -------------------------------------------------------------------------------- /man/EditData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/EditData.Rd -------------------------------------------------------------------------------- /man/EditFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/EditFunction.Rd -------------------------------------------------------------------------------- /man/EditText.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/EditText.Rd -------------------------------------------------------------------------------- /man/EvalFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/EvalFunction.Rd -------------------------------------------------------------------------------- /man/ExportData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ExportData.Rd -------------------------------------------------------------------------------- /man/Format.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/Format.Rd -------------------------------------------------------------------------------- /man/FormatDateTime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/FormatDateTime.Rd -------------------------------------------------------------------------------- /man/GetBitmapImage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/GetBitmapImage.Rd -------------------------------------------------------------------------------- /man/GetFile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/GetFile.Rd -------------------------------------------------------------------------------- /man/ImportDataset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ImportDataset.Rd -------------------------------------------------------------------------------- /man/ImportSpreadsheet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ImportSpreadsheet.Rd -------------------------------------------------------------------------------- /man/ImportText.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ImportText.Rd -------------------------------------------------------------------------------- /man/LaunchGui.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/LaunchGui.Rd -------------------------------------------------------------------------------- /man/ManagePackages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ManagePackages.Rd -------------------------------------------------------------------------------- /man/ManagePolygons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ManagePolygons.Rd -------------------------------------------------------------------------------- /man/ManageVariables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ManageVariables.Rd -------------------------------------------------------------------------------- /man/Plot3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/Plot3d.Rd -------------------------------------------------------------------------------- /man/ProgressBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/ProgressBar.Rd -------------------------------------------------------------------------------- /man/Rename.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/Rename.Rd -------------------------------------------------------------------------------- /man/RestoreSession.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/RestoreSession.Rd -------------------------------------------------------------------------------- /man/Search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/Search.Rd -------------------------------------------------------------------------------- /man/SetAxesLimits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/SetAxesLimits.Rd -------------------------------------------------------------------------------- /man/SetConfiguration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/SetConfiguration.Rd -------------------------------------------------------------------------------- /man/SetCrs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/SetCrs.Rd -------------------------------------------------------------------------------- /man/SetPlotAnnotation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/SetPlotAnnotation.Rd -------------------------------------------------------------------------------- /man/SetPolygonLimits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/SetPolygonLimits.Rd -------------------------------------------------------------------------------- /man/SetSortOrder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USGS-R/RSurvey/HEAD/man/SetSortOrder.Rd --------------------------------------------------------------------------------