Visualize Time Enabled Data using ArcGIS Qt (C++) and Toolkit
Gela Malek Pour gmalekpour@esri.com Visualize Time Enabled Data using ArcGIS Qt (C++) and ToolkitAbout Esri • We build mapping technology that our customers use to solve the world’s most complex challenges offer solutions to apply location-based analytics to business practices - Visualize and analyze data more effectively - Collaborate and share maps, apps and reports easily • Headquartered in Southern worldPurpose of this talk • Showcase a quick way to create a desktop app to visualize time enabled data • Setup the development environment using Esri templates • Use the ArcGIS toolkit to use already0 码力 | 10 页 | 734.09 KB | 5 月前3Using the Microsoft Graph API to get Office 365 data in your mobile apps
Using the Microsoft Graph API to get Office 365 data in your mobile apps Alex Ziskind Technical Director @digitalix www.nuvious.com Hi, I’m Alex From + 750 Million 50 Million per month Problems0 码力 | 15 页 | 7.00 MB | 1 年前3唐刚 - Use Rust to Develop the Decentralized Open Data Application - RustChinaConf2023
第三届中国 Rust 开发者大会 Use Rust to Develop the Decentralized Open Data Application Mike Tang daogangtang@gmail.com @daogangtang 2023-06-08 ➔ 裁员 ➔ 互联网格局定型 ➔ 平台倒闭,数据丢失 这是一个什么时代? 互联网的终局 创业 -> 种子 dataset, data will increase quickly on any dimension. ➔ Multiple dimensions Dataset Models ➔ What is open data? Build an internet platform, but open its data to everyone. ➔ Why we need open data? The The business of the closed data model has been at the end. A New Proposal: Open Data Application The Road to Open Web ➔ From the user side, it looks like just the traditional Internet app ➔ But everyone0 码力 | 30 页 | 2.53 MB | 1 年前3THE FIRST EXPLORATION OF PROJECT SPARROW
ware https://semiwiki.com/wikis/industry-wikis/eda-open-source-tools-wiki/ https://fossi-foundation.org/ https://ieeexplore.ieee.org/document/9398963 https://ieeexplore.ieee.org/document/9398960 1.4.1 Ecosystem I. Background https://community.riscv.org/events/details/risc-v-foundation-bay-area-risc-v-group-presents-2021-risc- v-ecosystem-updates/ RECEIVE_DATA and writing to TRANSMIT_DATA were implemented in Rust: III. Sparrow Development Take a look at how the reading from RECEIVE_DATA and writing to TRANSMIT_DATA were0 码力 | 68 页 | 13.14 MB | 1 年前3Learning by Contributing to Rust Compiler - 陈于康
about performance and dev experience • A lot of fun! A lot of open-source experience • 2023 Rust Foundation Project Grants • A member of rustc compiler team contributors What I’ve earned • Rust has almost0 码力 | 23 页 | 3.28 MB | 1 年前3新一代分布式高性能图数据库的构建 - 沈游人
Cypher 贴合 ISO GQL Standard • Incorporate by reference specifications from SQL/Framework and SQL/Foundation • Capabilities needed by both SQL/PGQ (Property Graph Queries in SQL) and the GQL standard •0 码力 | 38 页 | 24.68 MB | 1 年前3Making Libraries Consumable for Non-C++ Developers
isn’t being declared? struct data_t { int a; int b; }; /* Get data from device ‘dev’. */ data_t get_data_from(size_t dev); What defines how dev is passed or data_t is returned? Calling conventions… being used here? push ... call data_t get_data_from(unsigned int) add esp, 4 add eax, edx Caller cleanup (cdecl) push ... call data_t get_data_from(unsigned int) add eax, edx cleanup (stdcall) data_t d = get_data_from(dev); return d.a + d.b;What isn’t being declared? struct data_t { int a; int b; }; /* Get data from device ‘dev’. */ data_t get_data_from(size_t dev);0 码力 | 29 页 | 1.21 MB | 5 月前3C++20: An (Almost) Complete Overview
Why ranges? Provide nicer and easier to read syntax: vector data { 11, 22, 33 }; sort(begin(data), end(data)); ranges::sort(data); Eliminate mismatching begin/end iterators Allows “range adaptors” chained using pipes |13 Ranges Example of chaining views: vector data { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; auto result { data | views::filter([](const auto& value) { return value % 2 == 0; })/* Initializers Designated initialization of aggregates E.g.: struct Data { int anInt { 0 }; std::string aString; }; Data d { .aString = "Hello" };48 Spaceship Operator <=> Official name:0 码力 | 85 页 | 512.18 KB | 5 月前3C++20's
int for each? While you could just represent these values with unsigned ints or the underlying data, these new calendrical types also provide valuable abstraction. To use weekdays, months, weekday_indexeds eapSecondInformation • For pre-2018 leap seconds, we maintain a static constexpr table to pull data from. • Note that we don’t currently have a way to detect upcoming leap seconds on older Windows 3:00 UTC America/ New York43 tzdb • This is a type that stores data from the time zone database. • Specifically, it contains data members: • string version; • vector0 码力 | 55 页 | 8.67 MB | 5 月前3C++23: An Overview of Almost All New and Updated Features
void g() const &; void h() &&; Those can be rewritten as: void f(this Data&); void g(this const Data&); void h(this Data&&);9 Explicit Object Parameters Classes often have const and non-const accessing multidimensional data: Function call: data(x, y, z) Multiple levels of array indexing: data[x][y][z] C++23 Multidimensional subscript operator: data[x, y, z] E.g.: T& operator[](size_t corresponding to std::size_t22 Literal Suffix for size_t Use case: std::vector data{ 11, 22, 33 }; for (auto i = 0, count = data.size(); i < count; ++i) { /* ... */ } Doesn’t compile: i is deduced as int0 码力 | 105 页 | 759.96 KB | 5 月前3
共 40 条
- 1
- 2
- 3
- 4
相关搜索词
VisualizeTimeEnabledDatausingArcGISQtC++andToolkitalexziskindpptx唐刚UseRusttoDeveloptheDecentralizedOpenApplicationRustChinaConf2023李枫2023RustChinaConf__SparrowFengLi20230614aofficialtemplate陈于final游人RustCCAtlasGraphMakingLibrariesConsumableforNonDevelopers20AnAlmostCompleteOverviewChrono23ofAllNewUpdatedFeatures