ArcGIS Pro SDK EXTINDERE SI PARTICULARIZAREA ARCGIS PRO

Size: px
Start display at page:

Download "ArcGIS Pro SDK EXTINDERE SI PARTICULARIZAREA ARCGIS PRO"

Transcription

1 ArcGIS Pro SDK EXTINDERE SI PARTICULARIZAREA ARCGIS PRO

2 ArcGIS Pro SDK: De ce? Dezvoltarea de fluxuri de lucru particularizate: Metode speciale de afisare cartografica Fluxuri de editare particularizata a datelor spatiale Fluxuri de analiza dedicate si multe altele

3 Extinderea ArcGIS Pro vs ArcGIS Desktop ArcGIS Desktop extinderea functionalitatilor se face prin: Crearea de extensii; Crearea de Add-On uri; ArcGIS Pro extinderea functionalitatilor se face prin: Crearea de Add-On uri;

4 Cerinte ArcGIS Pro SDK Sistem de operare Minim Windows 7 SP1 (64 bit).net Framework IDEs Visual Studio 2015 (Professional, Enterprise, and Community Editions) Visual Studio 2013 (Professional, Premium, Ultimate, and Community Editions)

5 ArcGIS Pro SDK pentru Visual Studio Ofera templateuri privind: framework-ul Add-In (ArcGIS Pro Module Add-in); Butoane si liste; Ferestre ancorate in ArcGIS Pro Instrumente si menu-uri; Sketch de editare; Integrat cu MSDN

6 Biblioteci cu functionalitati ArcGIS Pro ArcGIS.Desktop.Core.dll Ofera functionalitati administrarea proiectului, accesul la evenimente, executia instrumentelor de geoprocesare; ArcGIS.Desktop.Catalog.dll Accesul la continutul proiectelor: elementele hartii, elemente layout-ului, folder, elemntele folderului etc; ArcGIS.Desktop.Layouts.dll Functionalitati pentru manipularea elementelor layout-ului, exportul in diverse formate de imagine etc; ArcGIS.Desktop.Mapping.dll Ofera functionalitati pentru crearea hartilor, layerelor, etichetelor, efectuarii de interogari, vizualizarea 2D si 3D, stiluri si simboluri etc; ArcGIS.Desktop.Geoprocessing.dll Ofera acces la istoricul elementelor stocate in proiect; ArcGIS.Desktop.Editing.dll Ofera acces la mediul de editare si functionalitatile de editare ArcGIS Pro si permite particularizare instrumentelor de editare si crearea de instrumente particularizate de editare;

7 Instrumente ArcGIS Pro SDK pentru VS Instrumente ArcGIS Pro SDK pentru Visual Studio: ArcGIS Pro Fix Reference Este un instrument cu ajutorul caruia puteti reface referintele catre assemby-urile ArcGIS Pro; Referintele catre assembly-uri se pot pierde atunci cand downloadati un exemplu sau copiati codul de pe un alt calculator. Assembly-urile de pe calculatorul de lucru pot avea alte adrese decat cele pe calculatorul de origine. ArcGIS Pro Generate DAML Ids Face conversia Ids (de tip string) din DAML in proprietati de tip string. Aceasta conversie va da posibilitatea sa folositi InteliSense din Visual Studio;

8 .NET Add-ins pentru ArcGIS Pro Framework declarativ pentru crearea de particularizari; Un singur fisier arhivat (.esriaddinx) Usor de partajat Instalarea se face intr-un folder comun pentru toate Add-In-urie Add-In alcatuit din: Un fisier xml pentru configurare (Config.daml) Fisiere cu functionalitati particularizate

9 ArcGIS Pro SDK CUSTOMIZAREA INTERFETEI

10 <DAML> - Desktop Application Markup Language Profil XML conceput de Esri pentru dezvoltarea de aplicatii desktop XML (Extensible Markup Language) pentru interfete grafice utilizator; Utilizat pentru controlul elementelor de interfata (UI), in ArcGIS Pro, pe roboane sau zonele de ancorare; Utilizat pentru a controla Add-In-ul la incarcare; <insertmodule id="acme_mod"> <controls> <button id="example1" classname="acme_mod:onclick" caption="test"/> </controls> </insertmodule>

11 <DAML> utilizarea grupurilor <groups> <!-- Comentati grupul daca doriti ca butonul sa nu fie adaugat pe grup --> <group id="daml_group1" caption="working with DAML" appearsonaddintab="true"> <!-- Grup care gazduieste butoane --> <button refid="daml_button1" size="large" /> <button refid="daml_button2" size="large" /> </group> <!-- <group id="daml_group1" caption="working with DAML 2" appearsonaddintab="true"> <button refid="daml_button1" size="large" /> <button refid="daml_button2" size="large" /> </group> --> </groups> <controls> <!--Adaugati controale aicie --> <button id="daml_button1" caption="daml 1" classname="button1" loadonclick="true" smallimage="images\genericbuttonblue16.png" largeimage="images\genericbuttonblue32.png" condition="esri_mapping_mappane"> <tooltip heading="tooltip Heading">Tooltip text<disabledtext /></tooltip> </button> <button id="daml_button2" caption="daml 2" classname="button2" loadonclick="true" smallimage="images\genericbuttonblue16.png" largeimage="images\genericbuttonblue32.png" condition="esri_mapping_mappane"> <tooltip heading="tooltip Heading">Tooltip text<disabledtext /></tooltip> </button> </controls> Un singur buton pe grup Un grup / doua butoane Doua grupuri cu cate doua butoane

12 <DAML> utilizarea taburilor <tabs> <tab id="daml_tab1" caption="working with DAML"> <group refid="daml_group1"/> </tab> </tabs> <groups> <!-- Comentati grupul daca doriti ca butonul sa nu fie adaugat pe grup--> <group id="daml_group1" caption="working with DAML 1" appearsonaddintab="true"> <!--Grup care gazduieste butoane--> <button refid="daml_button1" size="large" /> <button refid="daml_button2" size="large" /> </group> </groups> appearsonaddintab= false

13 Conditions and State State: Este un element DAML Boolean Condition: Este o expresie DAML alcatuita din una sau mai multe stari <condition name="asimplecondition"> <state name="somestate"/> </condition> <insertdockview id="mydockview" condition="asimplecondition"/> Comportamentul interfetei (elementelor de interfata) este dat de context Visibilitatea tab-urilor de pe riboane Activare/dezactivare Butoane, Tool-uri Vizibilitatea panel-urilor ancorabile Pagini de proprietati

14 <DAML> utilizarea conditiilor <conditions> <insertcondition id="conditia1"> <state id="esriro_daml1"/> 1 </insertcondition> </conditions> <button id="daml_button1" caption="daml 1" classname="button1" condition="conditia1"> <tooltip heading="tooltip Heading">Tooltip text<disabledtext /></tooltip> </button> 2 protected override void OnClick() //evenimentul de pe butonul 2 FrameworkApplication.State.Activate("esriro_DAML1"); 3

15 ArcGIS Pro SDK OPERAREA CU DATELE SPATIALE

16 1. Accesul la bazele de date spatiale; 2. Accesul la featureclass-uri; 3. Accesul la feature; 4. Adaugarea de attach-uri; 5. Accesul la Map-ul curent; 6. Interogarea atribut a datelor spatiale

17 ArcGIS Pro SDK Accesul la datele spatiale

18 Proiect Visual Studio Adresa implicita pentru ArcGIS Pro Project (*.aprx): C:\UC2015\Data\Projects\Geodatabas e\geodatabase.aprx OpenDataButton.cs Accesul la date spatiale (baza de date locala) WatermainPaneViewModel.cs Interogarea atribut a datelor spatiale

19 Accesul la Geodatabase Controlul firelor de executie 1 <ArcGIS.Desktop.Framework.Threading.Tasks> <ArcGIS.Desktop.Mapping> Metoda <MetodaAccesDate> este adaugata ca proces la Framework-ul ArcGIS Pro QueuedTask.Run(() => MetodaAccesDate()); Cream un layer pe baza featureclass-ului <SamplePoints> si-l adaugam la map: LayerFactory.CreateFeatureLayer(new Uri(@"c:\UC2015\data\generic.gdb\SamplePoints"), MapView.Active.Map); Framework-ul ArcGIS Pro ofera obiecte predefinite, clase statice: LayerFactory; MapView etc

20 Accesul la Geodatabase 2 <ArcGIS.Core.Data> Geodatabase locala Geodatabase geodatabase = new Geodatabase(<String path>); Enterprise Geodatabase ConnectionProperties cnp = new ConnectionProperties(); cnp.database = egdb"; cnp.dbms = EnterpriseDatabaseType.Oracle; cnp.instance = " "; cnp.user = "sde"; cnp.password = "***"; Geodatabase geodatabase = new Geodatabase(cnp);

21 Accesul la continutul geodatabase 2 <ArcGIS.Core.Data> Accesul la Feature Class-uri: FeatureClass pointfeatureclass = geodatabase.opendataset<featureclass>( <Denumire Feature Class>") Accesul la Feature-uri: 3 RowCursor features = pointfeatureclass.search() while (features.movenext()) Feature currentfeature = features.current as Feature;

22 Interogarea tabelelor 3 Metoda Search de pe obiectul de tip FeatureClass poate accepta <null> sau un obiect de tip QueryFilter: var queryfilter = new QueryFilter WhereClause = "SCORE = 0", PrefixClause = "DISTINCT", PostfixClause = "ORDER BY FACILITYID", SubFields = "FACILITYID,REMLIF,SCORE,MATERIAL" ;

23 Adaugarea de attache-uri 4 <ArcGIS.Core.Data> Feature currentfeature = features.current as Feature; Attachment pictureattachment = new Attachment(<string name>, <string type>, <MemoryStream pict>) currentfeature.addattachment(pictureattachment );

24 ArcGIS Pro SDK Interogarea bazei de date

25 Interogare featureclass/table var queryfilter = new QueryFilter WhereClause = "SCORE = 0", PrefixClause = "DISTINCT", PostfixClause = "ORDER BY FACILITYID", SubFields = "FACILITYID,REMLIF,SCORE,MATERIAL" ; using (RowCursor rowcursor = table.search(queryfilter, false)) while (rowcursor.movenext()) using (Row current = rowcursor.current) //parcurgeti randurile featureclass-urilor

26 Clase/obiecte de interogare 1 Dictionary<string, List<WatermainQuery>> querymap = new Dictionary<string, List<WatermainQuery>> "Water Mains Life Expectancy", new List<WatermainQuery> new UnkownMaterialQueryName = "Unknown Material", new ExcellentCastIronQueryName = "Iron in excellent condition" ; Unde: internal abstract class WatermainQuery public abstract List<WaterMainData> Execute(Table table); public string Name get; set; protected List<WaterMainData> PopulateWatermainData(Table table, QueryFilter queryfilter)

27 Clase/obiecte de interogare 1 Clase copil (subclase reprezentand tipul de material) mosteneste clasa WatermainQuery internal class UnkownMaterialQuery : WatermainQuery public override List<WaterMainData> Execute(Table table) var queryfilter = new QueryFilter WhereClause = "SCORE = 0", PrefixClause = "DISTINCT", PostfixClause = "ORDER BY FACILITYID", SubFields = "FACILITYID,REMLIF,SCORE,MATERIAL" ; return base.populatewatermaindata(table, queryfilter);

28 Clase/obiecte de interogare 1 Clase copil (subclase reprezentand tipul de material) mosteneste clasa WatermainQuery internal class ExcellentCastIronQuery : WatermainQuery public override List<WaterMainData> Execute(Table table) var queryfilter = new QueryFilter WhereClause = "SCORE = 1 AND MATERIAL = 'CAS'", PrefixClause = "DISTINCT", PostfixClause = "ORDER BY REMLIF", SubFields = "FACILITYID,REMLIF,SCORE,MATERIAL" ; return base.populatewatermaindata(table, queryfilter);

29 Incarcarea layerelor Dockpane OnActivate 2 Evenimentul OnActivate: protected override void OnActivate(bool isactive) if (isactive) if (_selectedlayer == null) UpdateLayers(); private void UpdateLayers() Layers = new ObservableCollection<string>(MapView.Active.Map.GetLayersAsFlattenedList().OfType<FeatureLayer>().Select(layer => layer.name));

30 Incarcarea layerelor - DAML 2 Incarcarea layerelor in ComboBox <ComboBox Grid.Column="1" Grid.Row="0" Margin="5" ItemsSource="Binding Layers" x:name="layerscombobox" SelectedItem="Binding SelectedLayer" /> public ObservableCollection<string> Layers get return _layers; set /*2. incarcati layerele din Map*/ SetProperty(ref _layers, value, () => Layers);

31 Interfata DAML 2 Actualizarea criteriilor de interogare <ComboBox Grid.Column="1" Grid.Row="0" Margin="5" ItemsSource="Binding Layers" x:name="layerscombobox" SelectedItem="Binding SelectedLayer" /> public string SelectedLayer get return _selectedlayername; set //... //la selctarea layer-ului se vor actualzia criteriile de interogare if (!String.IsNullOrEmpty(_selectedLayerName)) UpdateQueries(_selectedLayer);

32 Interfata DAML 2 UpdateQueries public void UpdateQueries(FeatureLayer selectedlayer) //... using (Table table = selectedlayer.gettable()) if (querymap.containskey(selectedlayer.name)) Queries = new ObservableCollection<string>(queryMap[selectedLayer.Name].Select(query => query.name)); else Queries = new ObservableCollection<string>();

33 Interfata DAML 3 RetrieveData <DataGrid Grid.Row="2" Grid.ColumnSpan="2" ItemsSource="Binding FeatureData" /> public void RetrieveData(FeatureLayer selectedlayer) //... QueuedTask.Run(() => using (Table table = selectedlayer.gettable()) if (querymap.containskey(selectedlayer.name)) FeatureData = new ObservableCollection<WaterMainData>(queryMap[selectedLayer.Name].First(query => query.name.equals(selectedquery)).execute(table)); else FeatureData = new ObservableCollection<WaterMainData>(); );

34 Instrumente ArcGIS Pro utile in ArcGIS Pro SDK dezvoltare ArcGIS Monitor (ArcMon) Application counters Task list Thread information Ctrl + Alt + M

35 Concluzii ArcGIS Pro SDK: Foarte usor de adoptat pentru programatorii familiarizati cu.net Productivitate si performante mult sporite fata de ArcObjects SDK Construit pe tehnologia ArcGIS Runtime for.net Functioneaza si profita din plin pe cele mai noi versiuni de.net Framework

36 Cod Interogare ArcGIS Pro SDK

Pentru clasa a X-a Ştiinţele naturii-sem II

Pentru clasa a X-a Ştiinţele naturii-sem II Pentru clasa a X-a Ştiinţele naturii-sem II Reprezentarea algoritmilor. Pseudocod. Principiile programării structurate. Structuri de bază: structura liniară structura alternativă structura repetitivă Algoritmi

More information

Sisteme cu logica fuzzy

Sisteme cu logica fuzzy Sisteme cu logica fuzzy 1/15 Sisteme cu logica fuzzy Mamdani Fie un sistem cu logică fuzzy Mamdani două intrări x şi y ieşire z x y SLF Structura z 2/15 Sisteme cu logica fuzzy Mamdani Baza de reguli R

More information

Lecture 2. Introduction to ESRI s ArcGIS Desktop and ArcMap

Lecture 2. Introduction to ESRI s ArcGIS Desktop and ArcMap Lecture 2 Introduction to ESRI s ArcGIS Desktop and ArcMap Outline ESRI What is ArcGIS? ArcGIS Desktop ArcMap Overview Views Layers Attribute Tables Help! Scale Tips and Tricks ESRI Environmental Systems

More information

Liste. Stive. Cozi SD 2017/2018

Liste. Stive. Cozi SD 2017/2018 Liste. Stive. Cozi SD 2017/2018 Conţinut Tipurile abstracte LLin, LLinOrd, Stiva, Coada Liste liniare Implementarea cu tablouri Implementarea cu liste simplu înlănțuite Liste liniare ordonate Stive Cozi

More information

Modelling the Steady State Characteristic of ph Neutralization Process: a Neuro-Fuzzy Approach

Modelling the Steady State Characteristic of ph Neutralization Process: a Neuro-Fuzzy Approach BULETINUL Universităţii Petrol Gaze din Ploieşti Vol. LXVII No. 2/2015 79 84 Seria Tehnică Modelling the Steady State Characteristic of ph Neutralization Process: a Neuro-Fuzzy Approach Gabriel Rădulescu

More information

COMPARATIVE DISCUSSION ABOUT THE DETERMINING METHODS OF THE STRESSES IN PLANE SLABS

COMPARATIVE DISCUSSION ABOUT THE DETERMINING METHODS OF THE STRESSES IN PLANE SLABS 74 COMPARATIVE DISCUSSION ABOUT THE DETERMINING METHODS OF THE STRESSES IN PLANE SLABS Codrin PRECUPANU 3, Dan PRECUPANU,, Ștefan OPREA Correspondent Member of Technical Sciences Academy Gh. Asachi Technical

More information

Soluţii juniori., unde 1, 2

Soluţii juniori., unde 1, 2 Soluţii juniori Problema 1 Se consideră suma S x1x x3x4... x015 x016 Este posibil să avem S 016? Răspuns: Da., unde 1,,..., 016 3, 3 Termenii sumei sunt de forma 3 3 1, x x x. 3 5 6 sau Cristian Lazăr

More information

ANOVA IN THE EDUCATIONAL PROCESS

ANOVA IN THE EDUCATIONAL PROCESS U.P.B. Sci. Bull., Series C, Vol. 70, No. 3, 008 ISSN 454-34 ANOVA IN THE EDUCATIONAL PROCESS Mihaela Florentina MATEI Analiza dispersiei, ANOVA, reprezintă una din metodele statistice, dintre cele mai

More information

O V E R V I E W. This study suggests grouping of numbers that do not divide the number

O V E R V I E W. This study suggests grouping of numbers that do not divide the number MSCN(2010) : 11A99 Author : Barar Stelian Liviu Adress : Israel e-mail : stelibarar@yahoo.com O V E R V I E W This study suggests grouping of numbers that do not divide the number 3 and/or 5 in eight collumns.

More information

Using the File Geodatabase API. Lance Shipman David Sousa

Using the File Geodatabase API. Lance Shipman David Sousa Using the File Geodatabase API Lance Shipman David Sousa Overview File Geodatabase API - Introduction - Supported Tasks - API Overview - What s not supported - Updates - Demo File Geodatabase API Provide

More information

Constantin Radu Gogu PROBLEME ACTUALE ALE GESTIONĂRII ŞI EXPLOATĂRII RESURSELOR DE APĂ SUBTERANĂ. Universitatea Tehnica de Constructii Bucuresti

Constantin Radu Gogu PROBLEME ACTUALE ALE GESTIONĂRII ŞI EXPLOATĂRII RESURSELOR DE APĂ SUBTERANĂ. Universitatea Tehnica de Constructii Bucuresti Platforma informatica pentru integrarea informatiei hidrogeologice de detaliu pentru mediile sedimentare in vederea obtinerii unui model hidrogeologic 3D Constantin Radu Gogu PROBLEME ACTUALE ALE GESTIONĂRII

More information

The File Geodatabase API. Dave Sousa, Lance Shipman

The File Geodatabase API. Dave Sousa, Lance Shipman The File Geodatabase API Dave Sousa, Lance Shipman Overview Introduction Supported Tasks API Overview What s not supported Updates Demo Introduction Example Video: City Engine Provide a non-arcobjects

More information

Gradul de comutativitate al grupurilor finite 1

Gradul de comutativitate al grupurilor finite 1 Gradul de comutativitate al grupurilor finite Marius TĂRNĂUCEANU Abstract The commutativity degree of a group is one of the most important probabilistic aspects of finite group theory In this survey we

More information

ArcGIS Runtime: Migrating from ArcGIS Engine. Rex Hansen

ArcGIS Runtime: Migrating from ArcGIS Engine. Rex Hansen ArcGIS Runtime: Migrating from ArcGIS Engine Rex Hansen Thank You to Our Sponsors Migrating from ArcGIS Engine to ArcGIS Runtime ArcGIS Runtime API: new and evolved workflows on all platforms Windows Linux

More information

Reactoare chimice cu curgere piston (ideala) cu amestecare completa de tip batch (autoclava)

Reactoare chimice cu curgere piston (ideala) cu amestecare completa de tip batch (autoclava) Reactoare chimice cu curgere piston (ideala) cu amestecare completa de tip batch (autoclava) Reactorul cu curgere ideala Toate particulele se deplaseaza intr-o directie de-a lungul reactorului, precum

More information

ON THE QUATERNARY QUADRATIC DIOPHANTINE EQUATIONS (II) NICOLAE BRATU 1 ADINA CRETAN 2

ON THE QUATERNARY QUADRATIC DIOPHANTINE EQUATIONS (II) NICOLAE BRATU 1 ADINA CRETAN 2 ON THE QUATERNARY QUADRATIC DIOPHANTINE EQUATIONS (II) NICOLAE BRATU 1 ADINA CRETAN ABSTRACT This paper has been updated and completed thanks to suggestions and critics coming from Dr. Mike Hirschhorn,

More information

Figura 7.12 Multiscopul: schema bloc simplificată a părţii specifice osciloscopului hibrid. U Y CS S/T-H ADC MD DAC TC

Figura 7.12 Multiscopul: schema bloc simplificată a părţii specifice osciloscopului hibrid. U Y CS S/T-H ADC MD DAC TC 7-7 7.3.3 OSCILOSCOPUL HIBRID CE GP-IB ADC Frecvenţmetru Fazmetru Generator de caractere X Y Z Elemente de comandă şi reglaj Figura 7.1 Multiscopul: schema bloc simplificată a părţii specifice osciloscopului

More information

Divizibilitate în mulțimea numerelor naturale/întregi

Divizibilitate în mulțimea numerelor naturale/întregi Divizibilitate în mulțimea numerelor naturale/întregi Teorema îmărţirii cu rest în mulțimea numerelor naturale Fie a, b, b 0. Atunci există q, r astfel încât a=bq+r, cu 0 r < b. În lus, q şi r sunt unic

More information

Changes in Esri GIS, practical ways to be ready for the future

Changes in Esri GIS, practical ways to be ready for the future Changes in Esri GIS, practical ways to be ready for the future John Sharrard, Esri April 16, 2015 The only thing that is constant is change. Heraclitus, ca. 500 B.C. My story (of experiencing change) Changes

More information

4/68. Mini-comutatoare cu came. Prezentare generalã a sistemului. Întreruptoare Pornit-Oprit TM. Comutatoare de comandã TM.

4/68. Mini-comutatoare cu came. Prezentare generalã a sistemului. Întreruptoare Pornit-Oprit TM. Comutatoare de comandã TM. / Mini-comutatoare cu came Prezentare generalã a sistemului Întreruptoare Pornit-Oprit Comutatoare de comandã HA ND AU TO HPL-de-DE O Mini-comutatoare cu came / Montaj pe ușã (.../E) Frontal IP Montaj

More information

GENERATOARE DE SEMNAL DIGITALE

GENERATOARE DE SEMNAL DIGITALE Technical University of Iasi, Romania Faculty of Electronics and Telecommunications Signals, Circuits and Systems laboratory Prof. Victor Grigoras Cuprins Clasificarea generatoarelor Filtre reursive la

More information

Introduction to ArcGIS Server - Creating and Using GIS Services. Mark Ho Instructor Washington, DC

Introduction to ArcGIS Server - Creating and Using GIS Services. Mark Ho Instructor Washington, DC Introduction to ArcGIS Server - Creating and Using GIS Services Mark Ho Instructor Washington, DC Technical Workshop Road Map Product overview Building server applications GIS services Developer Help resources

More information

STANDARDIZAREA DATELOR SPATIALE

STANDARDIZAREA DATELOR SPATIALE UNIVERSITATEA DE VEST DIN TIMISOARA Şcoala Masterală a Facultăţii de Chimie, Biologie şi Geografie Departamentul de Geografie STANDARDIZAREA DATELOR SPATIALE Master Sisteme informatice geografice Dr. Cristina

More information

Environmental Systems Research Institute

Environmental Systems Research Institute Introduction to ArcGIS ESRI Environmental Systems Research Institute Redlands, California 2 ESRI GIS Development Arc/Info (coverage model) Versions 1-7 from 1980 1999 Arc Macro Language (AML) ArcView (shapefile

More information

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation.

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation. ST-Links SpatialKit For ArcMap Version 3.0.x ArcMap Extension for Directly Connecting to Spatial Databases ST-Links Corporation www.st-links.com 2012 Contents Introduction... 3 Installation... 3 Database

More information

Teorema Reziduurilor şi Bucuria Integralelor Reale Prezentare de Alexandru Negrescu

Teorema Reziduurilor şi Bucuria Integralelor Reale Prezentare de Alexandru Negrescu Teorema Reiduurilor şi Bucuria Integralelor Reale Preentare de Alexandru Negrescu Integrale cu funcţii raţionale ce depind de sint şi cost u notaţia e it, avem: cost sint i ( + ( dt d i, iar integrarea

More information

GIDD PENTRU CALCULUL CONSUMULUI DE CA.LOURA AL CONSTRUCTIILOR DOTATE CU ' A SISTEME PASIVE DE INCALZIRE SO LARA INDICATIV GP

GIDD PENTRU CALCULUL CONSUMULUI DE CA.LOURA AL CONSTRUCTIILOR DOTATE CU ' A SISTEME PASIVE DE INCALZIRE SO LARA INDICATIV GP , GIDD PENTRU CALCULUL CONSUMULUI DE CA.LOURA AL CONSTRUCTIILOR DOTATE CU ' A SISTEME PASIVE DE INCALZIRE SO LARA INDICATIV GP 017-96 95 Ghid pentru calculul consumului de caldura al cladirilor dotate

More information

ArcGIS Pro Q&A Session. NWGIS Conference, October 11, 2017 With John Sharrard, Esri GIS Solutions Engineer

ArcGIS Pro Q&A Session. NWGIS Conference, October 11, 2017 With John Sharrard, Esri GIS Solutions Engineer ArcGIS Pro Q&A Session NWGIS Conference, October 11, 2017 With John Sharrard, Esri GIS Solutions Engineer jsharrard@esri.com ArcGIS Desktop The applications ArcGIS Pro ArcMap ArcCatalog ArcScene ArcGlobe

More information

Utilizarea limbajului SQL pentru cereri OLAP. Mihaela Muntean 2015

Utilizarea limbajului SQL pentru cereri OLAP. Mihaela Muntean 2015 Utilizarea limbajului SQL pentru cereri OLAP Mihaela Muntean 2015 Cuprins Implementarea operatiilor OLAP de baza in SQL -traditional: Rollup Slice Dice Pivotare SQL-2008 Optiunea ROLLUP Optiunea CUBE,

More information

DEZVOLTAREA REGIONALĂ PRIN TURISM

DEZVOLTAREA REGIONALĂ PRIN TURISM DEZVOLTAREA REGIONALĂ PRIN TURISM REGIONAL DEVELOPMENT THROUGH TOURISM Andreea POPA Ph.D. Student, Bucharest Academy of Economic Studies E-mail: popa_andreea22@yahoo.com Oleg MARGINA Ph.D. Student, Bucharest

More information

Performing Map Cartography. using Esri Production Mapping

Performing Map Cartography. using Esri Production Mapping AGENDA Performing Map Cartography Presentation Title using Esri Production Mapping Name of Speaker Company Name Kannan Jayaraman Agenda Introduction What s New in ArcGIS 10.1 ESRI Production Mapping Mapping

More information

Introducing ArcGIS Engine

Introducing ArcGIS Engine 1 Introducing ArcGIS Engine ESRI ArcGIS Engine is a platform for building custom standalone geographic information system (GIS) applications that support multiple application programming interfaces (APIs),

More information

Map Application Progression

Map Application Progression Map Application Progression Application Migration with Latest ArcGIS by Dean Chiang California Department of Fish and Wildlife What we do at CDFW Hunting and fishing licensing and regulation Conservation

More information

Migrating to ArcGIS Runtime 100.0

Migrating to ArcGIS Runtime 100.0 Migrating to ArcGIS Runtime 100.0 Eric Bader Mike Branscomb @ArcGISRuntime Migrating to ArcGIS Runtime 100.0 ArcGIS Runtime 10.2.x ArcGIS Engine ArcGIS Runtime SDK for Windows Mobile ArcGIS Explorer SDK

More information

Tutorial. Getting started. Sample to Insight. March 31, 2016

Tutorial. Getting started. Sample to Insight. March 31, 2016 Getting started March 31, 2016 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com Getting started

More information

AN APPROACH TO THE NONLINEAR LOCAL PROBLEMS IN MECHANICAL STRUCTURES

AN APPROACH TO THE NONLINEAR LOCAL PROBLEMS IN MECHANICAL STRUCTURES U.P.B. Sci. Bull., Series D, Vol. 74, Iss. 3, 2012 ISSN 1454-2358 AN APPROACH TO THE NONLINEAR LOCAL PROBLEMS IN MECHANICAL STRUCTURES Marius-Alexandru GROZEA 1, Anton HADĂR 2 Acest articol prezintă o

More information

2.1-PORNIREA, REPORNIREA SI OPRIREA CALCULATORULUI 2.2.-VIZUALIZAREA INFORMAŢIILOR DESPRE RESURSELE HARDWARE SI SOFTWARE

2.1-PORNIREA, REPORNIREA SI OPRIREA CALCULATORULUI 2.2.-VIZUALIZAREA INFORMAŢIILOR DESPRE RESURSELE HARDWARE SI SOFTWARE 2.1-PORNIREA, REPORNIREA SI OPRIREA CALCULATORULUI 2.2.-VIZUALIZAREA INFORMAŢIILOR DESPRE RESURSELE HARDWARE SI SOFTWARE 2.3.-DESCRIEREA ŞI PERSONALIZAREA INTERFEŢEI SISTEMULUI DE OPERARE DESCRIEREA SI

More information

Road Ahead: Linear Referencing and UPDM

Road Ahead: Linear Referencing and UPDM Road Ahead: Linear Referencing and UPDM Esri European Petroleum GIS Conference November 7, 2014 Congress Centre, London Your Work Making a Difference ArcGIS Is Evolving Your GIS Is Becoming Part of an

More information

INTRODUCTION TO ARCGIS Version 10.*

INTRODUCTION TO ARCGIS Version 10.* Week 3 INTRODUCTION TO ARCGIS Version 10.* topics of the week Overview of ArcGIS Using ArcCatalog Overview of ArcGIS Desktop ArcGIS Overview Scalable desktop applications ArcView ArcEditor ArcInfo ArcGIS

More information

SOI prin smart-cut. Caracterizarea TEM-HRTEM a defectelor structuale induse in Si prin hidrogenare in plasma.

SOI prin smart-cut. Caracterizarea TEM-HRTEM a defectelor structuale induse in Si prin hidrogenare in plasma. SOI prin smart-cut. Caracterizarea TEM-HRTEM a defectelor structuale induse in Si prin hidrogenare in plasma. Dr. Corneliu GHICA, Dr. Leona NISTOR Proiect IDEI, Contract Nr. 233/2007 1. C. Ghica, L. C.

More information

STRUCTURAL INTENSITY METHOD APPLIED TO STUDY OF VIBRATIONS DAMPING / METODA INTENSIMETRIEI STUCTURALE APLICATĂ LA STUDIUL AMORTIZĂRII VIBRAŢIILOR

STRUCTURAL INTENSITY METHOD APPLIED TO STUDY OF VIBRATIONS DAMPING / METODA INTENSIMETRIEI STUCTURALE APLICATĂ LA STUDIUL AMORTIZĂRII VIBRAŢIILOR Vol.48, No. / 06 STRUCTURAL INTENSITY METHOD APPLIED TO STUDY OF VIBRATIONS DAMPING / METODA INTENSIMETRIEI STUCTURALE APLICATĂ LA STUDIUL AMORTIZĂRII VIBRAŢIILOR Assoc. Prof. Ph.D. Eng. Carp-Ciocârdia

More information

Esri EADA10. ArcGIS Desktop Associate. Download Full Version :

Esri EADA10. ArcGIS Desktop Associate. Download Full Version : Esri EADA10 ArcGIS Desktop Associate Download Full Version : http://killexams.com/pass4sure/exam-detail/eada10 Question: 85 Which format is appropriate for exporting map documents that require vector layers

More information

ArcGIS Runtime: Migrating Your Apps from ArcGIS Engine. Eric Bader Lucas Danzinger Mike Branscomb

ArcGIS Runtime: Migrating Your Apps from ArcGIS Engine. Eric Bader Lucas Danzinger Mike Branscomb ArcGIS Runtime: Migrating Your Apps from ArcGIS Engine Eric Bader Lucas Danzinger Mike Branscomb Migrating to ArcGIS Runtime ArcGIS Engine ArcGIS Runtime AppStudio for ArcGIS Apps: Collector, Workforce,

More information

"IIITO-TEC 'NIKI" & EQUIPME

IIITO-TEC 'NIKI & EQUIPME LIGHTING "IIITO-TEC 'NIKI" & EQUIPME T FOR CITIES 6 MAKEDONOMAHON STR.,ZIPCaDE:67009,KALO ORI,THESSALONIKI, GREECE TEL / FAX: 0030 2310761824/751626,8 mall: hito@otenet.qi' Webslte:www.hlto..techkl.gr

More information

The File Geodatabase API. Craig Gillgrass Lance Shipman

The File Geodatabase API. Craig Gillgrass Lance Shipman The File Geodatabase API Craig Gillgrass Lance Shipman Schedule Cell phones and pagers Please complete the session survey we take your feedback very seriously! Overview File Geodatabase API - Introduction

More information

VINDECAREA BOLILOR INCURABILE PRIN METODE NATURALE BY MIKHAIL TOMBAK

VINDECAREA BOLILOR INCURABILE PRIN METODE NATURALE BY MIKHAIL TOMBAK VINDECAREA BOLILOR INCURABILE PRIN METODE NATURALE BY MIKHAIL TOMBAK DOWNLOAD EBOOK : VINDECAREA BOLILOR INCURABILE PRIN METODE Click link bellow and free register to download ebook: VINDECAREA BOLILOR

More information

How to create a new geodatabase using the extract data wizard. 1. How to Extract the Schema to create a Geodatabase using an existing design.

How to create a new geodatabase using the extract data wizard. 1. How to Extract the Schema to create a Geodatabase using an existing design. How to create a new geodatabase using the extract data wizard The Extract Data Wizard can be used to create a new database based on an existing geodatabase. This tool may be used in the following cases:

More information

Lecture 2. A Review: Geographic Information Systems & ArcGIS Basics

Lecture 2. A Review: Geographic Information Systems & ArcGIS Basics Lecture 2 A Review: Geographic Information Systems & ArcGIS Basics GIS Overview Types of Maps Symbolization & Classification Map Elements GIS Data Models Coordinate Systems and Projections Scale Geodatabases

More information

Agenda. 09:00 10:30 Sesiuni workshop partea I. 10:30 10:45 Coffee break. 10:45 12:00 Sesiuni workshop partea II

Agenda. 09:00 10:30 Sesiuni workshop partea I. 10:30 10:45 Coffee break. 10:45 12:00 Sesiuni workshop partea II Workshop Educatie Agenda 09:00 10:30 Sesiuni workshop partea I 10:30 10:45 Coffee break 10:45 12:00 Sesiuni workshop partea II 12:00 13:30 Pauza 12:20 13:20 Prezentare Partneri (sala Pache Protopopescu)

More information

SPATIAL MODELING GIS Analysis Winter 2016

SPATIAL MODELING GIS Analysis Winter 2016 SPATIAL MODELING GIS Analysis Winter 2016 Spatial Models Spatial Modeling attempts to represent how the world works All models are wrong, but some are useful (G.E. Box, quoted in course textbook pg. 379)

More information

Introduction to ArcGIS 10.2

Introduction to ArcGIS 10.2 Introduction to ArcGIS 10.2 Francisco Olivera, Ph.D., P.E. Srikanth Koka Lauren Walker Aishwarya Vijaykumar Keri Clary Department of Civil Engineering April 21, 2014 Contents Brief Overview of ArcGIS 10.2...

More information

ELECTRONIC TECHNIQUES IN TIMING MEASUREMENTS FOR NUCLEAR STRUCTURE

ELECTRONIC TECHNIQUES IN TIMING MEASUREMENTS FOR NUCLEAR STRUCTURE U.P.B. Sci. Bull., Series A, Vol. 70, Iss. 4, 2008 ISSN 1223-7027 ELECTRONIC TECHNIQUES IN TIMING MEASUREMENTS FOR NUCLEAR STRUCTURE Dan Gabriel GHIŢĂ 1 Prezenta lucrare descrie în detaliu două metode

More information

Troubleshooting Replication and Geodata Services. Liz Parrish & Ben Lin

Troubleshooting Replication and Geodata Services. Liz Parrish & Ben Lin Troubleshooting Replication and Geodata Services Liz Parrish & Ben Lin AGENDA: Troubleshooting Replication and Geodata Services Overview Demo Troubleshooting Q & A Overview of Replication Liz Parrish What

More information

ArcGIS Pro: Essential Workflows STUDENT EDITION

ArcGIS Pro: Essential Workflows STUDENT EDITION ArcGIS Pro: Essential Workflows STUDENT EDITION Copyright 2018 Esri All rights reserved. Course version 6.0. Version release date August 2018. Printed in the United States of America. The information contained

More information

GENERALIZATION IN THE NEW GENERATION OF GIS. Dan Lee ESRI, Inc. 380 New York Street Redlands, CA USA Fax:

GENERALIZATION IN THE NEW GENERATION OF GIS. Dan Lee ESRI, Inc. 380 New York Street Redlands, CA USA Fax: GENERALIZATION IN THE NEW GENERATION OF GIS Dan Lee ESRI, Inc. 380 New York Street Redlands, CA 92373 USA dlee@esri.com Fax: 909-793-5953 Abstract In the research and development of automated map generalization,

More information

Arhitectura sistemelor de calcul

Arhitectura sistemelor de calcul Arhitectura sistemelor de calcul - Prelegerea 1 - Evoluția sistemelor de calcul Ruxandra F. Olimid Facultatea de Matematică şi Informatică Universitatea din Bucureşti Cuprins 1. Istoricul evolutiei calculatoarelor

More information

Map image from the Atlas of Oregon (2nd. Ed.), Copyright 2001 University of Oregon Press

Map image from the Atlas of Oregon (2nd. Ed.), Copyright 2001 University of Oregon Press Map Layout and Cartographic Design with ArcGIS Desktop Matthew Baker ESRI Educational Services Redlands, CA Education UC 2008 1 Seminar overview General map design principles Working with map elements

More information

FATIGUE LIFE PREDICTION OF A CRACKED LAP SPLICE SPECIMEN USING FRACTURE MECHANICS PARAMETERS

FATIGUE LIFE PREDICTION OF A CRACKED LAP SPLICE SPECIMEN USING FRACTURE MECHANICS PARAMETERS U.P.B. Sci. Bull., Series D, Vol. 71, Iss. 3, 2009 ISSN 1454-2358 FATIGUE LIFE PREDICTION OF A CRACKED LAP SPLICE SPECIMEN USING FRACTURE MECHANICS PARAMETERS Pedro M.G.P. Moreira 1, Paulo F.P. de Matos

More information

Geog 469 GIS Workshop. Managing Enterprise GIS Geodatabases

Geog 469 GIS Workshop. Managing Enterprise GIS Geodatabases Geog 469 GIS Workshop Managing Enterprise GIS Geodatabases Outline 1. Why is a geodatabase important for GIS? 2. What is the architecture of a geodatabase? 3. How can we compare and contrast three types

More information

Downloading GPS Waypoints

Downloading GPS Waypoints Downloading Data with DNR- GPS & Importing to ArcMap and Google Earth Written by Patrick Florance & Carolyn Talmadge, updated on 4/10/17 DOWNLOADING GPS WAYPOINTS... 1 VIEWING YOUR POINTS IN GOOGLE EARTH...

More information

MODELING THE BEHAVIOR AT LAUNCHING FOR A SATELLITE S SUBASSEMBLY

MODELING THE BEHAVIOR AT LAUNCHING FOR A SATELLITE S SUBASSEMBLY Annals of the Academy of Romanian Scientists Series on Engineering Sciences ISSN 2066 8570 Volume 6, Number 2/2014 47 MODELING THE BEHAVIOR AT LAUNCHING FOR A SATELLITE S SUBASSEMBLY Sorin DRĂGHICI 1,

More information

Network Analysis with ArcGIS Online. Deelesh Mandloi Dmitry Kudinov

Network Analysis with ArcGIS Online. Deelesh Mandloi Dmitry Kudinov Deelesh Mandloi Dmitry Kudinov Introductions Who are we? - Network Analyst Product Engineers Who are you? - Network Analyst users? - ArcGIS Online users? - Trying to figure out what is ArcGIS Online? Slides

More information

18-Dec-12 PHYS Simple Pendulum. To investigate the fundamental physical properties of a simple pendulum.

18-Dec-12 PHYS Simple Pendulum. To investigate the fundamental physical properties of a simple pendulum. Objective Simple Pendulum To investigate the fundamental physical properties of a simple pendulum. Equipment Needed Simple Pendulum Apparatus with Meter Scale and Protractor Bobs 4 (Aluminum, Brass, Lead,

More information

This paper outlines the steps we took to process the repository file into a Geodatabase Utility Data Model for Bloomfield Township s analysis.

This paper outlines the steps we took to process the repository file into a Geodatabase Utility Data Model for Bloomfield Township s analysis. Title of Paper Importing CAD Drawings into a Utility Data Model Authors Names Kevin G. Broecker & James R. Miller Abstract This presentation covers the process needed to integrate data from a CAD drawing

More information

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE)

(THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) PART 2: Analysis in ArcGIS (THIS IS AN OPTIONAL BUT WORTHWHILE EXERCISE) Step 1: Start ArcCatalog and open a geodatabase If you have a shortcut icon for ArcCatalog on your desktop, double-click it to start

More information

Task 1: Open ArcMap and activate the Spatial Analyst extension.

Task 1: Open ArcMap and activate the Spatial Analyst extension. Exercise 10 Spatial Analyst The following steps describe the general process that you will follow to complete the exercise. Specific steps will be provided later in the step-by-step instructions component

More information

Leveraging the OGC Capabilities of ArcGIS Server

Leveraging the OGC Capabilities of ArcGIS Server Leveraging the OGC Capabilities of ArcGIS Server Satish Sankaran Interoperability and Standards Team Yingqi Tang Server Team Jessica Parteno Geodatabase Team ArcGIS Server is Open & Interoperable Using

More information

Today: GEOL 452/552 - GIS for Geoscientists I. Lecture 3 - Chapter 1. GIS vector Data (review) Let s annotate this layer (draw on paper)

Today: GEOL 452/552 - GIS for Geoscientists I. Lecture 3 - Chapter 1. GIS vector Data (review) Let s annotate this layer (draw on paper) Today: GEOL 452/552 - GIS for Geoscientists I Lecture 3 - Chapter 1 GIS vector data - review raster data history: ArcView/ArcINFO - ArcGIS types of GIS data files Lab: finish Ch. 1 tutorial and HW1 Please

More information

EEOS 381 -Spatial Databases and GIS Applications

EEOS 381 -Spatial Databases and GIS Applications EEOS 381 -Spatial Databases and GIS Applications Lecture 5 Geodatabases What is a Geodatabase? Geographic Database ESRI-coined term A standard RDBMS that stores and manages geographic data A modern object-relational

More information

array a[0..n-1] a[0] = v0,..., a[n-1] = vn-1

array a[0..n-1] a[0] = v0,..., a[n-1] = vn-1 Curs 5 - Agenda sortare interna buble sort sortare prin insertie sortare pri selectie naiva sistematica ( heap sort ) sortare prin interclasare ( merge sort ) sortare rapida ( quick sort ) cautare in liste

More information

Task 1: Start ArcMap and add the county boundary data from your downloaded dataset to the data frame.

Task 1: Start ArcMap and add the county boundary data from your downloaded dataset to the data frame. Exercise 6 Coordinate Systems and Map Projections The following steps describe the general process that you will follow to complete the exercise. Specific steps will be provided later in the step-by-step

More information

ArcGIS Runtime: Migrating from ArcGIS Engine

ArcGIS Runtime: Migrating from ArcGIS Engine ArcGIS Runtime: Migrating from ArcGIS Engine Rex Hansen Mike Branscomb https://community.esri.com/community/developers/native-app-developers ArcGIS Runtime session tracks at DevSummit 2018 ArcGIS Runtime

More information

Introduction to ArcGIS Server Development

Introduction to ArcGIS Server Development Introduction to ArcGIS Server Development Kevin Deege,, Rob Burke, Kelly Hutchins, and Sathya Prasad ESRI Developer Summit 2008 1 Schedule Introduction to ArcGIS Server Rob and Kevin Questions Break 2:15

More information

Network Analysis Services in ArcGIS Enterprise. Deelesh Mandloi

Network Analysis Services in ArcGIS Enterprise. Deelesh Mandloi Network Analysis Services in ArcGIS Enterprise Deelesh Mandloi Slides from this demo theater http://esriurl.com/uc17nas Agenda Network Analyst concepts ArcGIS Enterprise publishing workflow - Geoprocessing

More information

THE METROLOGY OF OPTICAL FIBRE LOSSES

THE METROLOGY OF OPTICAL FIBRE LOSSES U. P. B. Sci. Bull., Series A, Vol. 7, Iss. 3, 009 ISSN 3-707 THE METROLOGY OF OPTICAL FIBRE LOSSES Sorin GHINOIU, Niculae N. PUŞCAŞ În aceastǎ lucrare sunt prezentate şi analizate din punct de vedere

More information

FINDING THE TRACES OF A GIVEN PLANE: ANALYTICALLY AND THROUGH GRAPHICAL CONSTRUCTIONS

FINDING THE TRACES OF A GIVEN PLANE: ANALYTICALLY AND THROUGH GRAPHICAL CONSTRUCTIONS BULETINUL INSTITUTULUI POLITEHNI DIN IŞI Publicat de Universitatea Tehnică Gheorghe sachi din Iaşi Tomul LVII (LXI), Fasc. 3, 20 Secţia ONSTRUŢII DE MŞINI FINDING THE TRES OF GIVEN PLNE: NLYTILLY ND THROUGH

More information

Programarea Dinamica. (si alte chestii adiacente) Andrei Olariu

Programarea Dinamica. (si alte chestii adiacente) Andrei Olariu Programarea Dinamica (si alte chestii adiacente) Andrei Olariu andrei@olariu.org Despre mine - Absolvent FMI UniBuc - Doctorand in prelucrarea limbajului natural, in special in mediul online (Twitter)

More information

Learning ArcGIS Geodatabase By Hussein Nasser

Learning ArcGIS Geodatabase By Hussein Nasser Learning ArcGIS Geodatabase By Hussein Nasser If searching for a ebook Learning ArcGIS Geodatabase by Hussein Nasser in pdf format, then you've come to correct site. We presented the complete option of

More information

These modules are covered with a brief information and practical in ArcGIS Software and open source software also like QGIS, ILWIS.

These modules are covered with a brief information and practical in ArcGIS Software and open source software also like QGIS, ILWIS. Online GIS Training and training modules covered are: 1. ArcGIS, Analysis, Fundamentals and Implementation 2. ArcGIS Web Data Sharing 3. ArcGIS for Desktop 4. ArcGIS for Server These modules are covered

More information

GIS Integration to Maximo

GIS Integration to Maximo GIS Integration to Maximo Tuesday 15 th January 2008 Mahmoud Jaafar Systems Director GISTEC Agenda Introduction Why AMS & GIS Integration? ESRI GIS Enabling Technology. Integrating GIS & Maximo. What do

More information

ArcGIS Online Routing and Network Analysis. Deelesh Mandloi Matt Crowder

ArcGIS Online Routing and Network Analysis. Deelesh Mandloi Matt Crowder ArcGIS Online Routing and Network Analysis Deelesh Mandloi Matt Crowder Introductions Who are we? - Members of the Network Analyst development team Who are you? - Network Analyst users? - ArcGIS Online

More information

ANALYTICAL AND GRAPHICAL SOLUTIONS TO PROBLEMS IN DESCRIPTIVE GEOMETRY INVOLVING PLANES AND LINES

ANALYTICAL AND GRAPHICAL SOLUTIONS TO PROBLEMS IN DESCRIPTIVE GEOMETRY INVOLVING PLANES AND LINES ULETINUL INSTITUTULUI POLITENI DIN IŞI Publicat de Uniersitatea Tenică George saci din Iaşi Tomul LVII (LXI) Fasc 3 0 Secţia ONSTRUŢII DE MŞINI NLYTIL ND GRPIL SOLUTIONS TO PROLEMS IN DESRIPTIVE GEOMETRY

More information

Using CAD data in ArcGIS

Using CAD data in ArcGIS Using CAD data in ArcGIS Phil Sanchez and Jeff Reinhart Esri UC 2014 Technical Workshop Agenda Overview of ArcGIS CAD Support Using CAD Datasets in ArcMap Georeferencing CAD data for ArcGIS Loading CAD

More information

GEOGRAPHIC INFORMATION SYSTEMS AND IT SOLUTIONS FOR THE ENVIRONMENT

GEOGRAPHIC INFORMATION SYSTEMS AND IT SOLUTIONS FOR THE ENVIRONMENT GEOGRAPHIC INFORMATION SYSTEMS AND IT SOLUTIONS FOR THE ENVIRONMENT Mission We focus on Solutions is a worldwide operating business offering Geographic Information Systems and IT solutions to assist environmental

More information

GIS Software. Evolution of GIS Software

GIS Software. Evolution of GIS Software GIS Software The geoprocessing engines of GIS Major functions Collect, store, mange, query, analyze and present Key terms Program collections of instructions to manipulate data Package integrated collection

More information

ATTENUATION OF THE ACOUSTIC SCREENS IN CLOSED SPACES

ATTENUATION OF THE ACOUSTIC SCREENS IN CLOSED SPACES U.P.B. Sci. Bull., Series D, Vol. 69, No. 3, 007 ISSN 15-358 ATTENUATION OF THE ACOUSTIC SCREENS IN CLOSED SPACES Ioan MAGHEŢI 1, Mariana SAVU Lucrarea prezintă calculul atenuării acustice a unui ecran

More information

Sisteme de Recunoastere a Formelor Lab 12 Clasificare cu Support Vector Machine

Sisteme de Recunoastere a Formelor Lab 12 Clasificare cu Support Vector Machine Sisteme de Recunoastere a Formelor Lab 12 Clasificare cu Support Vector Machine 1. Obiective In aceasta lucrare se va implementa clasificatorul SVM liniar si se va studia mecanismele de clasificare bazate

More information

An example of panel solution in the elastic-plastic regime

An example of panel solution in the elastic-plastic regime An example of panel solution in the elastic-plastic regime Piotr Mika May, 2014 2013-05-08 1. Example solution of the panel with ABAQUS program The purpose is to analyze the elastic-plastic panel. The

More information

Introduction to ArcMap

Introduction to ArcMap Introduction to ArcMap ArcMap ArcMap is a Map-centric GUI tool used to perform map-based tasks Mapping Create maps by working geographically and interactively Display and present Export or print Publish

More information

METODOLOGIE PRIVIND PROGRAMUL DE URMARIRE I in TIMP A COMPORTARII CONSTRUCTIILOR DIN PUNCT DE VEDERE AL CERINTELOR FUNCTIONALE

METODOLOGIE PRIVIND PROGRAMUL DE URMARIRE I in TIMP A COMPORTARII CONSTRUCTIILOR DIN PUNCT DE VEDERE AL CERINTELOR FUNCTIONALE METODOLOGIE PRIVIND PROGRAMUL DE URMARIRE I in TIMP A COMPORTARII CONSTRUCTIILOR DIN PUNCT DE VEDERE AL CERINTELOR FUNCTIONALE INDICATIV MP 031-03 i! 14 215 ROJ1:rou n21,100,rojirutrqq2r,1aflt JUR3T21HIM

More information

Web GIS Deployment for Administrators. Vanessa Ramirez Solution Engineer, Natural Resources, Esri

Web GIS Deployment for Administrators. Vanessa Ramirez Solution Engineer, Natural Resources, Esri Web GIS Deployment for Administrators Vanessa Ramirez Solution Engineer, Natural Resources, Esri Agenda Web GIS Concepts Web GIS Deployment Patterns Components of an On-Premises Web GIS Federation of Server

More information

Geodatabase Best Practices. Dave Crawford Erik Hoel

Geodatabase Best Practices. Dave Crawford Erik Hoel Geodatabase Best Practices Dave Crawford Erik Hoel Geodatabase best practices - outline Geodatabase creation Data ownership Data model Data configuration Geodatabase behaviors Data integrity and validation

More information

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3)

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3) TA name Lab section Date TA Initials (on completion) Name UW Student ID # Lab Partner(s) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3) 121 Textbook Reference: Knight, Chapter 13.1-3, 6. SYNOPSIS In

More information

O U T O F A H U N D R E D P E O P L E : T H O S E W H O A L W AY S K N O W B E T T E R ;

O U T O F A H U N D R E D P E O P L E : T H O S E W H O A L W AY S K N O W B E T T E R ; O U T O F A H U N D R E D P E O P L E : T H O S E W H O A L W AY S K N O W B E T T E R - 5 2 ; D O U B T I N G E V E R Y S T E P - A L L T H E R E S T ; G L A D T O L E N D A H A N D I F I T D O - E S

More information

POLAR CHARACTERISTIC OF ENERGETIC INTENSITY EMITTED BY AN ANISOTROPIC THERMAL SOURCE IRREGULARLY SHAPED

POLAR CHARACTERISTIC OF ENERGETIC INTENSITY EMITTED BY AN ANISOTROPIC THERMAL SOURCE IRREGULARLY SHAPED Annals of the Academ of Romanian Scientists Series on Science and Technolog of nformation SSN 066-856 Volume 1, Number 1/008 43 POLAR CHARACTERSTC OF ENERGETC NTENSTY EMTTED BY AN ANSOTROPC THERMAL SOURCE

More information

A PHENOMENOLOGICAL UNIVERSALITIES APPROACH TO THE ANALYSIS OF PERINATAL GROWTH DATA

A PHENOMENOLOGICAL UNIVERSALITIES APPROACH TO THE ANALYSIS OF PERINATAL GROWTH DATA U.P.B. Sci. Bull., Series A, Vol. 71, Iss. 4, 2009 ISSN 1223-7027 A PHENOMENOLOGICAL UNIVERSALITIES APPROACH TO THE ANALYSIS OF PERINATAL GROWTH DATA Pier Paolo DELSANTO 1, Antonio S. GLIOZZI 2, Dan A.

More information

THE INFLUENCE OF SOME CHARACTERISTICS OF RANITIDINE HYDROCHLORIDE ON THE FORMING AND PREPARATION OF THE TABLETS

THE INFLUENCE OF SOME CHARACTERISTICS OF RANITIDINE HYDROCHLORIDE ON THE FORMING AND PREPARATION OF THE TABLETS FARMACIA, 2012, Vol. 60, 4 517 THE INFLUENCE OF SOME CHARACTERISTICS OF RANITIDINE HYDROCHLORIDE ON THE FORMING AND PREPARATION OF THE TABLETS POSTOLACHE LILIANA* 1,2, ONUŢĂ ALEXANDRU-EVLAMPIE 2,3 1 Faculty

More information

Enabling ENVI. ArcGIS for Server

Enabling ENVI. ArcGIS for Server Enabling ENVI throughh ArcGIS for Server 1 Imagery: A Unique and Valuable Source of Data Imagery is not just a base map, but a layer of rich information that can address problems faced by GIS users. >

More information

Manual Limba Germana

Manual Limba Germana Manual Limba Germana If you are searched for the book Manual limba germana in pdf format, in that case you come on to loyal site. We furnish utter variation of this ebook in txt, doc, epub, DjVu, PDF formats.

More information

What s New in ArcGIS 10.1 for Desktop. Karen Li Date: October 31, 2012

What s New in ArcGIS 10.1 for Desktop. Karen Li Date: October 31, 2012 What s New in ArcGIS 10.1 for Desktop Karen Li kli@esri.ca Date: October 31, 2012 Agenda This session is designed to help you understand: 1) What s new in mapping 2) What s new in geoprocessing 3) What

More information