Skip to content

Commit

Permalink
released v1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastien-plutniak committed Jun 18, 2024
1 parent 627af31 commit bffd5b9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: archeoViz
Type: Package
Title: Visualisation, Exploration, and Web Communication of Archaeological Spatial Data
Version: 1.3.5
Date: 2024-04-
Date: 2024-06-17
Authors@R: c(person("Sebastien", "Plutniak", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-6674-3806")),
person("Renata", "Araujo", email = "[email protected]", role = "ctb", comment = c(ORCID = "0000-0001-8874-2858")),
person("Laura", "Coltofean", email = "[email protected]", role = "ctb", comment = c(ORCID = "0000-0002-2233-3565")),
Expand All @@ -17,7 +17,7 @@ Author: Sebastien Plutniak [aut, cre] (<https://orcid.org/0000-0002-6674-3806>),
Sara Giardino [ctb] (<https://orcid.org/0000-0001-5634-7060>),
Julian Laabs [ctb] (<https://orcid.org/0000-0003-1378-3908>)
Maintainer: Sebastien Plutniak <[email protected]>
Description: An R 'Shiny' application for the visualisation, interactive exploration, and web communication of archaeological spatial data. It includes interactive 3D and 2D visualisations, generation of cross sections and maps of the remains, and display an interactive timeline of the work made in a site. Simple spatial statistics can be performed (convex hull, regression surfaces, 2D kernel density estimation), as well as exporting data to other online applications for more complex methods. 'archeoViz' can be used locally or deployed on a server, either with interactive input of data or with a static data set. Example is provided at <https://analytics.huma-num.fr/archeoviz/en>.
Description: An R 'Shiny' application for visual and statistical exploration and web communication of archaeological spatial data, either remains or sites. It offers interactive 3D and 2D visualisations (cross sections and maps of remains, timeline of the work made in a site) which can be exported in SVG and HTML formats. It performs simple spatial statistics (convex hull, regression surfaces, 2D kernel density estimation) and allows exporting data to other online applications for more complex methods. 'archeoViz' can be used offline locally or deployed on a server, either with interactive input of data or with a static data set. Example is provided at <https://analytics.huma-num.fr/archeoviz/en>.
License: GPL-3
Repository: CRAN
Encoding: UTF-8
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# archeoViz 1.3.5
Released: 2024-XX-XX
Released: 2024-06-17

* New feature: archeoViz can now display a background drawing (e.g. a map outline) in '3D' and 'Map' plots, using the new 'background.map' parameter.
* New 'unit' parameter to define the metric unit (one of: cm, m, km). The internal automatic conversion of units for the scale grid has been revised (from centimeter to meter and meter to kilometer).
* Add an export link to the 'shinyHeatmaply' application the 'Statistics' tab.
* Add variables selection in the 'Statistics' tab.
* Add variable selection in the 'Statistics' tab.

# archeoViz 1.3.4
Released: 2024-01-13
Expand Down
3 changes: 2 additions & 1 deletion R/app_server.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
app_server <- function(input, output, session) {
.data <- NULL
y <- NULL

# retrieve parameters from URL ----
observe({
Expand Down Expand Up @@ -1862,7 +1863,7 @@ app_server <- function(input, output, session) {
timeline.map.out <- timeline.map.out +
theme(axis.text.y = element_blank())
}
browser()

# : - add scale ----
timeline.map.out <- timeline.map.out +
annotate("text",
Expand Down
1 change: 1 addition & 0 deletions R/do_section_plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
range = c(coords$zmax, coords$zmin),
scaleanchor="x"
),
# scene = list(aspectmode = "cube"),
annotations = list(list(
xref="paper", yref="paper",
x= 0, y = 0,
Expand Down

0 comments on commit bffd5b9

Please sign in to comment.