Skip to content

Commit 2f238b2

Browse files
author
Steffen Frey
committed
initial commit of 2024 page
0 parents  commit 2f238b2

23 files changed

+1204
-0
lines changed

Gemfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
source "https://rubygems.org"
2+
#ruby "~> 2.3.1"
3+
4+
gem "jekyll", "4.2.0"
5+
6+
# jekyll plugins
7+
group :jekyll_plugins do
8+
#gem "jekyll-last-modified-at"
9+
gem "jekyll-sitemap"
10+
end
11+
12+
# deploying to S3
13+
#gem "s3_website", "~> 3.4.0"
14+
15+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
16+
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
17+
18+
gem "webrick", "~> 1.7"

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# ldav.org
2+
LDAV symposium website
3+
4+
## Build instructions
5+
6+
Assuming [Jekyll](https://jekyllrb.com/docs/installation/) is installed:
7+
```
8+
# gem install bundler
9+
# bundle install
10+
# bundle exec jekyll serve
11+
```
12+
13+
[![Build Status](https://travis-ci.org/cgarth/ldav.org.svg?branch=master)](https://travis-ci.org/cgarth/ldav.org)
14+
15+
16+
## Web page management
17+
18+
See the
19+
[ldav-web-instructions](https://github.com/LDAV-Symposium/ldav-web-instructions/blob/master/README.md)
20+
repository for advise on building and maintaining LDAV web pages.

_config.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
2+
title: LDAV 2023
3+
4+
baseurl: ""
5+
url: "http://ldav.org"
6+
7+
# --- site config ---
8+
9+
description: >
10+
The 13th IEEE Symposium on Large Data Analysis and Visualization, in conjunction with IEEE VIS 2023, Melbourne, Australia, 22-27 October 2023
11+
12+
navigation:
13+
- title: Home
14+
url: index.html
15+
- title: Program
16+
url: program.html
17+
- title: Presentation and Final Submission Information
18+
url: presenters.html
19+
- title: Call for Papers
20+
url: call-for-papers.html
21+
- title: Call for Posters
22+
url: call-for-posters.html
23+
# - title: Supporters
24+
# url: supporters.html
25+
# - title: Important Dates
26+
# url: important-dates.html
27+
- title: Organization
28+
url: organization.html
29+
30+
# --- end site config ---
31+
32+
# build settings
33+
markdown: kramdown
34+
35+
plugins:
36+
# - jekyll-last-modified-at
37+
- jekyll-sitemap
38+
39+
exclude:
40+
- Gemfile
41+
- Gemfile.lock
42+
- README.md
43+
- misc
44+
- archive/previous
45+
- s3_website.yml
46+
- .travis.yml
47+
- vendor
48+
49+
collections:
50+
pages:
51+
output: true
52+
permalink: /:path:output_ext
53+

_includes/dates.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Important Dates
2+
3+
Paper Abstracts
4+
: June 16, 2023
5+
6+
Paper Submissions
7+
: June 23, 2023
8+
9+
Author Notifications
10+
: July 25, 2023
11+
12+
Camera-Ready Deadline
13+
: August 8, 2023
14+
15+
Poster Submission
16+
: August 17, 2023
17+
18+
Presentation Videos
19+
: September 1, 2023
20+
21+
## Symposium
22+
23+
Monday, October 23, 2023
24+
9am-12pm
25+
26+

_layouts/default.html

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ page.lang | default: site.lang | default: " en " }}">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
9+
<title>{% if site.title %}{{ site.title | escape }}{% endif %}{% if page.title %} – {{ page.title | escape }}{% endif %}</title>
10+
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
11+
12+
<link rel="stylesheet" href="assets/style-20.css">
13+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
14+
</head>
15+
<body>
16+
17+
<header>
18+
<aside>
19+
<img id="ldav-logo" src="assets/ldav23_logo.png" />
20+
</aside>
21+
<article>
22+
<h2>
23+
<b><span>The 13th IEEE Symposium on</span><br/>
24+
<span>Large Data Analysis and Visualization</span></b><br />
25+
<span>in conjunction with IEEE VIS 2023</span>
26+
<span>Melbourne, Australia</span><br/>
27+
<span>22-27 October 2023</span>
28+
</h2>
29+
<img id="ieee-logo" src="assets/logo-ieee.png" />
30+
</article>
31+
32+
</header>
33+
34+
<main>
35+
<aside>
36+
<nav>
37+
<h1>Menu</h1>
38+
<ul>
39+
{% for link in site.navigation %}
40+
{% assign current = nil %}
41+
{% if page.url contains link.url %} {% assign current = 'current'%} {% endif %}
42+
<li class="{{ current }}">
43+
<a href="{{ link.url }}">{{ link.title }}</a>
44+
</li>
45+
{% endfor %}
46+
<li>
47+
<a href="mailto:[email protected]">Contact</a>
48+
</li>
49+
</ul>
50+
</nav>
51+
<hr />
52+
{% capture my_include %}{% include dates.md %}{% endcapture %}
53+
{{ my_include | markdownify }}
54+
<hr />
55+
<nav id="archive">
56+
<h1>LDAV Archive</h1>
57+
<ul>
58+
<li><a href="/2022/" target="_blank">2022</a></li>
59+
<li><a href="/2021/" target="_blank">2021</a></li>
60+
<li><a href="/2020/" target="_blank">2020</a></li>
61+
<li><a href="/2019/" target="_blank">2019</a></li>
62+
<li><a href="/2018/" target="_blank">2018</a></li>
63+
<li><a href="/2017/" target="_blank">2017</a></li>
64+
<li><a href="/2016/" target="_blank">2016</a></li>
65+
<li><a href="/2015/" target="_blank">2015</a></li>
66+
<li><a href="/2014/" target="_blank">2014</a></li>
67+
<li><a href="/2013/" target="_blank">2013</a></li>
68+
<li><a href="/2012/" target="_blank">2012</a></li>
69+
<li><a href="/2011/" target="_blank">2011</a></li>
70+
</ul>
71+
</nav>
72+
</aside>
73+
<article>
74+
{{ content }}
75+
</article>
76+
</main>
77+
78+
<footer>
79+
<aside>
80+
Last update: October 16th, 2023
81+
</aside>
82+
<article>
83+
<p>
84+
© Large Data Analysis and Visualization (LDAV at IEEE VIS 2023)
85+
</p>
86+
</article>
87+
</footer>
88+
89+
</body>
90+
91+
</html>

_pages/call-for-papers.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
---
2+
layout: default
3+
title: Call for Papers
4+
---
5+
6+
# Call for Papers
7+
8+
9+
10+
Data scales are increasing throughout scientific, business, and research contexts. Large-scale scientific simulations, observation technologies, sensor networks, and experiments are generating enormous datasets, with some projects approaching the multiple exabyte range in the near term.
11+
12+
Gaining insight from massive data is critical for disciplines such as climate science, nuclear physics, security, materials design, transportation, urban planning, and so on. Business-critical decisions are made based on massive data in domains like social media, machine learning, software telemetry, and business intelligence. The tools and approaches needed to search, analyze, and visualize data at extreme scales can be fully realized only from end-to-end solutions, and with collective, interdisciplinary efforts.
13+
14+
The 14th IEEE Large Scale Data Analysis and Visualization (LDAV) symposium, to be held in conjunction with IEEE VIS 2024, is specifically targeting methodological innovation, algorithmic foundations, and possible end-to-end solutions. The LDAV symposium will bring together domain experts, data analysts, visualization researchers, and users to foster common ground for solving both near- and long-term problems.
15+
16+
## Scope
17+
18+
We are looking for both original research contributions and position papers on a broad-range of topics related to collection, analysis, manipulation, and visualization of large-scale data. We are particularly interested in innovative approaches that combine visualization and visual analytics.
19+
20+
LDAV welcomes papers on techniques and algorithms, systems, application and design studies, empirical studies, state of the practice, and position statements. More descriptions on these paper types can be found <a href="paper-types.html">here</a>.
21+
22+
Representative topics include:
23+
* Distributed, parallel, and multi-threaded computation
24+
* Streaming methods
25+
* Innovative software solutions
26+
* Advanced hardware and GPU-based approaches
27+
* Hierarchical data storage, retrieval, processing, and rendering
28+
* Sampling, approximate query processing, and progressive computation
29+
* Collection, management, and curation of massive datasets
30+
* Scalable visualization and exploration methods
31+
* Ensemble data visualization and analysis
32+
* In-situ data analysis
33+
* Best practices for large data visualization
34+
* End-to-end system solutions in a large data context
35+
* Industry solutions for big data analysis and visualization
36+
* Collaboration or/and co-design of large data analysis with domain experts
37+
* Topics in cognitive issues specific to manipulating and understanding large data
38+
* Application case studies
39+
* New challenges in visualizing experimental, observational, or simulation data
40+
41+
As part of the review criteria, reviewers will be asked to assess whether the contribution is in scope for LDAV, i.e., whether it considers "large data". Therefore, we strongly encourage you to clearly identify the "large data" aspect you address.
42+
43+
For LDAV, we define large data to be data of size and complexity that require innovation to be processed and understood. With respect to size, the techniques for handling this data require either using atypical hardware or specialized techniques that run on typical hardware. Examples of atypical hardware include supercomputers or novel hardware (such as a just-released GPU, an understudied device like a FPGA, or a high-resolution display), with corresponding techniques including, for example, efficient parallelization. There are many examples of specialized techniques that enable typical hardware to operate effectively on large data; canonical examples include multi-resolution and streaming techniques. With respect to complexity, techniques in scope for LDAV should be illuminating data sets that are considerably larger than typical for a given task, for example, but not restricted to: rendering, layout, analysis, etc. Finally, data may be large relative to the resources available, and such examples are welcomed at LDAV. For example, novel techniques may be needed to visualize or analyze data on a Raspberry Pi or sensor network.
44+
45+
## Submission
46+
47+
LDAV is accepting both full papers and short papers. The manuscripts
48+
should be formatted according to
49+
[guidelines from IEEE VGTC](http://vgtc.org/publications/conference).
50+
Submission of an abstract is required prior to submission of a full or short paper.
51+
52+
Submission site note: Go to the
53+
[submission site](https://new.precisionconference.com/vgtc)
54+
(<https://new.precisionconference.com/vgtc>), log in, go to 'Submissions',
55+
and select Society 'VGTC', Conference 'LDAV 2024', and Track 'LDAV 2024 Papers'.
56+
57+
### Full Papers
58+
Full papers should have a maximum length of 9 pages with up to two (2) additional pages allowed for only references (maximum total of 11 pages). Full papers may make contributions in techniques, systems, applications, evaluations, or theory. The contributions of full papers are reviewed based on their novelty, contribution, replicability, and evaluation.
59+
60+
### Short Papers
61+
Short papers are a venue to report smaller contributions than full papers and should have a length of 4-5 pages in total. Position papers and showcases of interesting application of visualization are good topics for short papers. Technique, system, application, evaluation, or theory papers that have a smaller contribution than a full paper can also be submitted as a short paper.
62+
63+
64+
## Proceedings
65+
The proceedings of the symposium will be published together with the VIS proceedings and via the IEEE Xplore Digital Library.
66+
67+
## Best Paper
68+
The LDAV Program Committee will present a Best Paper award to the authors whose submission is deemed the strongest according to the reviewing criteria. This award will be announced in conjunction with VIS 2024.
69+
70+
The Best Paper for IEEE LDAV will be published directly in IEEE Transactions on Visualization and Computer Graphics (TVCG). Further, other excellent papers will be encouraged to submit journal versions of their work to TVCG (at least 30% new scientific/technical content), with reviewer continuity.
71+
72+
73+
## Important Dates
74+
75+
<!-- Please note: all deadlines are firm and no extensions will be granted. -->
76+
77+
Abstract Deadline
78+
: June 17, 2024, 11:59 PM (AOE)
79+
80+
Paper Submission
81+
: June 21, 2024, 11:59 PM (AOE)
82+
83+
Author Notification
84+
: July 25, 2024
85+
86+
Camera-Ready Deadline
87+
: August 8, 2024

_pages/call-for-posters.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
layout: default
3+
title: Call for Posters
4+
---
5+
6+
# Call for Posters
7+
8+
9+
10+
We invite you to submit unpublished work to the IEEE LDAV 2024 Poster Program. It is a venue designed to highlight ongoing research and late breaking topics that have produced promising preliminary results. The poster program will be a great opportunity for the authors to interact with the symposium attendees and solicit feedback.
11+
12+
In addition to the topics listed under [Call for Papers](https://ldav.org/2024/call-for-papers.html), we also welcome submissions that:
13+
14+
* showcase successful stories of applying visualization to large-scale data intensive applications, and
15+
* highlights of recent visualization work presented or published in another venue.
16+
17+
Interested authors should submit a two-page summary that describes the underlying problem, the proposed method, and preliminary results. Accepted summaries will be included in the symposium proceedings. The format of the summary will be the same as the format used for the regular paper submission. Poster authors are encouraged, but not required, to include a draft or sketch of the poster layout and content in their submission. This would help reviewers and show that the poster format is used effectively. The draft poster should be in PDF format. The authors should indicate if they would like the poster to be accompanied by an on-site demonstration and/or videos. Such demo/video presentations have to be self-organized.
18+
19+
## Poster 2-Page Summary Submission Instructions
20+
21+
Submitted summaries may not exceed the maximum of two pages in length including references. The summary should be formatted according to guidelines available on the [VGTC Website](http://vgtc.org/publications/conference]IEEE).
22+
23+
Submission Site: Go to the [submission site](https://new.precisionconference.com/~vgtc), log in, go to ‘Submissions’, and select
24+
25+
* Society: ‘VGTC’
26+
* Conference/Journal: ‘VIS 2024’
27+
* Track: ‘VIS 2024 LDAV Posters’.
28+
29+
## Layout and Dimensions of the Posters
30+
31+
The dimensions of the posters should not exceed the A0 portrait space (841mm x 1189mm or 33.1” x 46.8”). The poster authors can determine the layout by themselves, but please be sure to follow the dimensions described above.
32+
33+
## Best Poster Award
34+
35+
The LDAV Program Committee will award the Best Poster Award to the authors whose submission is deemed the strongest according to the reviewing criteria. This award will be announced at the event.
36+
37+
## Plagiarism
38+
39+
All submissions must be either: 1) original work that has not been presented previously at any workshop, symposium, or conference, or published previously in any archived conference proceeding, magazine, or journal; or 2) a summary that highlights work presented or published in a related venue with a clear statement of attribution to the original work.
40+
41+
At the time of submission, it is required by the authors to state explicitly in the submission form that the submitted work is the work by the authors themselves, or is a summary of previously presented/published work with clear attribution. Plagiarism in any form is unacceptable and will lead to a removal of the submission from the review process. For more information, please see the [IEEE plagiarism FAQ](https://www.ieee.org/publications/rights/plagiarism/plagiarism.html) and the [IEEE Publication Services and Products Board Operations Manual](https://pspb.ieee.org/images/files/files/opsmanual.pdf).
42+
43+
Accepted posters will receive links with instructions to upload video previews and representative images.
44+
45+
## Important Dates
46+
47+
TBD
48+
<!-- Two-page Poster Paper Submission -->
49+
<!-- : August 17, 2024, 11:59 PM (AOE) -->
50+
51+
<!-- Author Notification -->
52+
<!-- : August 18, 2024 -->
53+
54+
<!-- Camera-Ready Deadline -->
55+
<!-- : August 21, 2024 -->
56+
57+
<!-- Video Preview deadline -->
58+
<!-- : September 1, 2024 -->
59+

_pages/error.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
# You don't need to edit this file, it's empty on purpose.
3+
# Edit theme's home layout instead if you wanna make some changes
4+
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
5+
layout: default
6+
title: Home
7+
---
8+
9+
Error 404: Resource not found
10+
11+
The requested resource could not be found but may be available
12+
again in the future.

0 commit comments

Comments
 (0)