All Projects → Mario343214420 → Big-Data-Demo

Mario343214420 / Big-Data-Demo

Licence: MIT license
基于Vue、three.js、echarts,数据可视化展示项目,包含三维模型导入交互、三维模型标注等功能

Programming Languages

Vue
7211 projects
javascript
184084 projects - #8 most used programming language
stylus
462 projects

Projects that are alternatives of or similar to Big-Data-Demo

detect-gpu
Classifies GPUs based on their 3D rendering benchmark score allowing the developer to provide sensible default settings for graphically intensive applications.
Stars: ✭ 749 (+413.01%)
Mutual labels:  threejs
react-with-threejs-example
An example project integrating React with three.js
Stars: ✭ 27 (-81.51%)
Mutual labels:  threejs
talaria
TalariaDB is a distributed, highly available, and low latency time-series database for Presto
Stars: ✭ 148 (+1.37%)
Mutual labels:  big-data
frontend-park
哈喽大家好~我是荣顶!这是一个有趣的前端趣味知识公园~该项目是我平时捣鼓前端相关技术的一些案例集合。
Stars: ✭ 66 (-54.79%)
Mutual labels:  threejs
arrow-datafusion
Apache Arrow DataFusion SQL Query Engine
Stars: ✭ 2,360 (+1516.44%)
Mutual labels:  big-data
xcast
A High-Performance Data Science Toolkit for the Earth Sciences
Stars: ✭ 28 (-80.82%)
Mutual labels:  big-data
cuber
优美而强大的网页魔方
Stars: ✭ 32 (-78.08%)
Mutual labels:  threejs
gamedex
👾 The code for my game dev + computer graphics experiments on YouTube.
Stars: ✭ 165 (+13.01%)
Mutual labels:  threejs
racing-game-cljs
A 3D racing game built with ClojureScript, React and ThreeJS
Stars: ✭ 209 (+43.15%)
Mutual labels:  threejs
codrops-texture-projection
Article about Texture Projection in Three.js
Stars: ✭ 75 (-48.63%)
Mutual labels:  threejs
three-vue-pattern
A biofeedback visualization made with Three.js, Vue, and LUIS (cognitive services), made with Brian Holt
Stars: ✭ 97 (-33.56%)
Mutual labels:  threejs
DepthKit-A-Frame
🎥 An A-Frame component for rendering DepthKit volumetric videos in WebVR
Stars: ✭ 34 (-76.71%)
Mutual labels:  threejs
meetups-archivos
Ppts, códigos y videos de las meetups, data science days, videollamadas y workshops. Data Science Research es una organización sin fines de lucro que busca difundir, descentralizar y difundir los conocimientos en Ciencia de Datos e Inteligencia Artificial en el Perú, dando oportunidades a nuevos talentos mediante MeetUps, Workshops y Semilleros …
Stars: ✭ 60 (-58.9%)
Mutual labels:  big-data
building-editor
3D model editor for building/architecture
Stars: ✭ 24 (-83.56%)
Mutual labels:  threejs
three-strip
Generate strip geometry for three.js. Supports taper, twist, dasharray and uvgen.
Stars: ✭ 15 (-89.73%)
Mutual labels:  threejs
SGDLibrary
MATLAB/Octave library for stochastic optimization algorithms: Version 1.0.20
Stars: ✭ 165 (+13.01%)
Mutual labels:  big-data
bigquery-kafka-connect
☁️ nodejs kafka connect connector for Google BigQuery
Stars: ✭ 17 (-88.36%)
Mutual labels:  big-data
home
Community for parametric furniture designs.
Stars: ✭ 44 (-69.86%)
Mutual labels:  threejs
Movies-Analytics-in-Spark-and-Scala
Data cleaning, pre-processing, and Analytics on a million movies using Spark and Scala.
Stars: ✭ 47 (-67.81%)
Mutual labels:  big-data
icosa-viewer
3D Viewer component for Tilt Brush / Open Brush, Google Blocks files and their derivatives
Stars: ✭ 24 (-83.56%)
Mutual labels:  threejs

大数据展示项目

如果对您有用,烦请点个star,万分感谢。

fork的大佬们,顺手点个赞,谢谢。

最新版:

项目展示

image

image

初版:

image

升级版:

image

修改:在vue3基础上,进行改写,应用vite在ts_version_base分支上,开发基础套用框架。

新方向:webgl应用组件开发,引入shader贴图渲染。

预览 v1.0.0 版本(可预览)

预览 v1.0.1 版本(可预览)

预览 v1.0.2 版本(可预览)

预览 v1.0.3 版本(可预览)

基于vue-cli编写开发

目录结构

整个项目的目录结构如下,具体包含内容后续会进行详细介绍和解释

├── public                     // 公共资源,第三方,不打包资源
├── src                        // 源代码
│   ├── api                    // 所有请求相关资源
│   ├── assets                 // 静态资源,会打包的资源
│   ├── common                 // 通用配置,工具,mixins
│   ├── components             // 全局公用组件
│   ├── mock                   // mock server 数据
│   ├── plugin                 // 自定义插件,注入指令,全局mixin
│   ├── router                 // 路由
│   ├── store                  // 全局 store 
│   ├── views                  // views 视图显示(错误页面,布局,登录)
│   ├── App.vue                // 入口页面
│   └── main.js                // 入口文件 加载组件 初始化等
├── .eslintrc.js               // eslint 配置项
├── .gitignore                 // git 忽略项
├── babel.config.js            // babel 配置项
├── vue.config.js              // vue-cli3集成配置项
└── package.json               // package.json

安装

# 克隆项目
git clone https://github.com/***.git

# 安装依赖
yarn install

# 本地开发 启动项目
yarn run serve
# OR vue ui 图形化界面启动
vue ui

Vue项目中的文件/文件夹命名规范

文件或文件夹的命名遵循以下原则:

  • index.js 或者 index.vue,统一使用小写字母开头的(kebab-case)命名规范
  • 属于组件或类的,统一使用大写字母开头的(PascalCase)命名规范
  • 其他非组件或类的,统一使用小写字母开头的(kebab-case)命名规范

文件夹命名规范

属于components文件夹下的子文件夹,使用大写字母开头的PascalBase风格

  1. 全局通用的组件放在 /src/components下
  2. 其他业务页面中的组件,放在各自页面下的 ./components文件夹下
  3. 每个components文件夹下最多只有一层文件夹,且文件夹名称为组件的名称,文件夹下必须有index.vue或index.js,其他.vue文件统一大写开头(Pascal case),components下的子文件夹名称统一大写开头(PascalCase)

其他文件夹统一使用kebab-case的风格

全局公共组件:/src/components示例

  - [components]
    - [Breadcrumb]
      - index.vue
    - [Hamburger]
      - index.vue
    - [SvgIcon]
      - index.vue

业务页面内部封装的组件:以 /src/views/layout/components示例

-[src]
  - [views]
    - [layout]
      - [components]
        - [Sidebar]
          - index.vue
          - Item.vue
          - SidebarItem.vue
        - AppMain.vue
        - index.js
        - Navbar.vue`

index.js 中导出组件方式如下:

export { default as AppMain } from './AppMain'
export { default as Navbar } from './Navbar'
export { default as Sidebar } from './Sidebar'
    看index.js中最后一行代码,不难发现,为什么components下的子文件夹要使用PascalCase命名:
    
    export { default as Sidebar } from './sidebar' // 使用kebab-case命名的文件夹
    export { default as Sidebar } from './Sidebar' // 使用 PascalCase命名的文件夹
    对于组件的导出/导入,我们一般都是使用大写字母开头的PascalCase风格,
    以区别于.vue组件内部的其他camelCase声明的变量,
    [Sidebar]作为【侧边栏组件】的一个整体被导出,文件夹的命名也采用PascalCase,
    有利于index.js中export时的前后统一,避免很多情况下不注意区分大小写

文件命名规范

*.js文件命名规范

  1. 属于类的.js文件,除index.js外,使用PascalBase风格
  2. 其他类型的.js文件,使用kebab-case风格
  3. 属于Api的,统一加上Api后缀

*.vue文件命名规范

  1. 除index.vue之外,其他.vue文件统一用PascalBase风格

总结一下:

文件夹:

  1. 属于components文件夹下的子文件夹,使用大写字母开头的PascalBase风格,且最多一层
  2. 其他文件夹统一使用kebab-case的风格
  3. 如组件包含私有的组件、指令、mixin等则需要设置一个和组件名相同的文件夹,并将组件设置为index.vue,私有组件放置于当前文件夹

文件:

  1. 除index.vue之外,其他.vue文件统一用PascalBase风格
  2. 属于类/组件的.js文件,除index.js外,使用PascalBase风格
  3. 其他类型的.js文件,使用kebab-case风格
  4. 属于Api的,统一加上Api后缀

style样式文件:

  1. 统一使用kebab-case风格命名
  2. 内部类也统一用-连字符

数据结构

系统概况 数据格式:

{
    "code": 0, 
    "data": {
        "label": "this is mock value"
    } 
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].