splatone 0.0.21 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.API_KEY.Flickr +1 -0
- package/README.md +91 -136
- package/browse.js +8 -0
- package/color.js +360 -4
- package/crawler.js +448 -131
- package/package.json +3 -2
- package/plugins/flickr/worker.js +6 -27
- package/public/out/.gitkeep +0 -0
- package/public/out/result.nzzxvl24mi420u0v.json +1 -0
- package/public/out/voronoi/.gitkeep +0 -0
- package/publication/README.md +18 -0
- package/publication/main.tex +85 -0
- package/publication/references.bib +6 -0
- package/views/index.ejs +686 -343
- package/.vscode/mcp.json +0 -12
- package/.vscode/settings.json +0 -7
- package/assets/icon_data_export.png +0 -0
- package/assets/icon_image_download.png +0 -0
- package/assets/screenshot_florida_hex_majorityr.png +0 -0
- package/assets/screenshot_massive_points_bulky.png +0 -0
- package/assets/screenshot_pie_tokyo.png +0 -0
- package/assets/screenshot_sea-mountain_bulky.png +0 -0
- package/assets/screenshot_venice_heat.png +0 -0
- package/assets/screenshot_venice_marker-cluster.png +0 -0
- package/assets/screenshot_venice_simple.png +0 -0
- package/assets/screenshot_voronoi_tokyo.png +0 -0
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Splatone Preprint (LaTeX Skeleton)
|
|
2
|
+
|
|
3
|
+
このディレクトリには、Splatone に関する preprint 論文の LaTeX スケルトンが含まれています。
|
|
4
|
+
|
|
5
|
+
## 構成
|
|
6
|
+
|
|
7
|
+
- `main.tex` : 論文本体(セクション構成のみ)
|
|
8
|
+
- `references.bib` : 文献データベース(例を1件だけ記載)
|
|
9
|
+
- `figures/` : 図表用のディレクトリ
|
|
10
|
+
|
|
11
|
+
## Overleaf で編集する手順
|
|
12
|
+
|
|
13
|
+
1. この `publication` ディレクトリを ZIP 形式で圧縮します。
|
|
14
|
+
2. Overleaf にログインし、`New Project` → `Upload Project` を選択します。
|
|
15
|
+
3. 作成した ZIP ファイルをアップロードします。
|
|
16
|
+
4. Overleaf 上で `main.tex` を開いて執筆を進めてください。
|
|
17
|
+
|
|
18
|
+
必要に応じて、クラスファイルや追加パッケージをこのディレクトリに追加し、再度 Overleaf にアップロードまたは Git 連携してください。
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
% !TeX program = pdflatex
|
|
2
|
+
% !TeX encoding = UTF-8
|
|
3
|
+
|
|
4
|
+
%==============================
|
|
5
|
+
% Splatone Preprint (Skeleton)
|
|
6
|
+
%==============================
|
|
7
|
+
|
|
8
|
+
\documentclass[11pt,a4paper]{article}
|
|
9
|
+
|
|
10
|
+
%--------- Packages ----------
|
|
11
|
+
\usepackage[T1]{fontenc}
|
|
12
|
+
\usepackage[utf8]{inputenc}
|
|
13
|
+
\usepackage{lmodern}
|
|
14
|
+
\usepackage{amsmath,amssymb,amsthm}
|
|
15
|
+
\usepackage{graphicx}
|
|
16
|
+
\usepackage{authblk}
|
|
17
|
+
\usepackage{url}
|
|
18
|
+
\usepackage{hyperref}
|
|
19
|
+
\usepackage{geometry}
|
|
20
|
+
\geometry{margin=25mm}
|
|
21
|
+
|
|
22
|
+
%--------- Meta data ----------
|
|
23
|
+
\title{Splatone: A Visual Analytics Tool for Geotagged Image Collections}
|
|
24
|
+
|
|
25
|
+
% TODO: 著者情報を埋めてください
|
|
26
|
+
\author[1]{First Author}
|
|
27
|
+
\author[1]{Second Author}
|
|
28
|
+
\affil[1]{Affiliation, Address\\
|
|
29
|
+
\texttt{email@example.com}}
|
|
30
|
+
|
|
31
|
+
\date{\today}
|
|
32
|
+
|
|
33
|
+
%--------- Document ----------
|
|
34
|
+
\begin{document}
|
|
35
|
+
|
|
36
|
+
\maketitle
|
|
37
|
+
|
|
38
|
+
\begin{abstract}
|
|
39
|
+
% このツール Splatone の概要を1段落で記述してください。
|
|
40
|
+
This paper presents Splatone, a tool for visual exploration
|
|
41
|
+
of large geotagged image collections using color-based spatial
|
|
42
|
+
visualizations.
|
|
43
|
+
\end{abstract}
|
|
44
|
+
|
|
45
|
+
\section{Introduction}
|
|
46
|
+
% ・問題設定: 位置情報付き画像の可視化・解析の課題
|
|
47
|
+
% ・Splatone の目的と貢献
|
|
48
|
+
% ・本論文の構成
|
|
49
|
+
|
|
50
|
+
\section{Related Work}
|
|
51
|
+
% 位置情報付き画像の可視化, カラーパレット生成, マップ・地理可視化などを整理
|
|
52
|
+
|
|
53
|
+
\section{System Overview}
|
|
54
|
+
\subsection{Data Model}
|
|
55
|
+
% 画像, メタデータ (位置, タグなど) の扱い
|
|
56
|
+
|
|
57
|
+
\subsection{Architecture}
|
|
58
|
+
% Crawler, Plugins, Visualization Pipeline など Splatone の構成概要
|
|
59
|
+
|
|
60
|
+
\section{Color-based Visualization}
|
|
61
|
+
\subsection{Palette Generation}
|
|
62
|
+
% `lib/paletteGenerator.js` でのパレット生成アルゴリズム概要
|
|
63
|
+
|
|
64
|
+
\subsection{Visual Encodings}
|
|
65
|
+
% voronoi, pie-charts, marker-cluster などのビジュアライザ概要
|
|
66
|
+
|
|
67
|
+
\section{Implementation}
|
|
68
|
+
% Node.js ベースの実装, プラグイン機構, Web UI など
|
|
69
|
+
|
|
70
|
+
\section{Use Cases}
|
|
71
|
+
% 例: Flickr 画像を用いた都市・景観の色分布解析など
|
|
72
|
+
|
|
73
|
+
\section{Discussion}
|
|
74
|
+
% 利点・限界・今後の展望
|
|
75
|
+
|
|
76
|
+
\section{Conclusion}
|
|
77
|
+
% 本ツールのまとめと今後の課題
|
|
78
|
+
|
|
79
|
+
\section*{Acknowledgements}
|
|
80
|
+
% 謝辞があれば記載
|
|
81
|
+
|
|
82
|
+
\bibliographystyle{plain}
|
|
83
|
+
\bibliography{references}
|
|
84
|
+
|
|
85
|
+
\end{document}
|