Software Engineering

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/14

flashcard set

Earn XP

Description and Tags

Coding to GIS Learnings.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

15 Terms

1
New cards

What is a ‘Vector Database’?

A specialized database designed for storing, indexing, and efficiently searching large collections of data represented as vectors (numerical representations).

This allows for quick similarity searches and retrieval of relevant data points, crucial for applications like machine learning, recommendation systems, and semantic search.

2
New cards

What is a “.xml” file?

An XML (Extensible Markup Language) file is a text-based document, often using the .xml extension, designed to store and transport data, allowing for the definition of custom tags and structures, and is both human and machine-readable.

3
New cards

What is a “.kml” file?

A KML (Keyhole Markup Language) file is an XML-based format used for representing geographic data for applications such as Google Earth. It allows users to visualize maps, placemarks, and geospatial data in a structured format.

4
New cards

What is a “WMS”?

Web Map Service: A standard protocol developed by the Open Geospatial Consortium in 1999 for serving georeferenced map images over the Internet.

Warehouse Management System: Software that helps companies manage and control their warehouse operations, from receiving goods to shipping orders, optimizing inventory, and streamlining processes. 

5
New cards

For HTML, what do the following elements mean?

1. <DOCTYPE html>

  1. <html>

  2. <head>

  3. <body>

  4. <h1>

  5. <p>

  1. <!DOCTYPE html>: defines that this document is an HTML5 document

  2. <html>: the root element of an HTML page

  3. <head>: contains meta information about the HTML page

  4. <title>: title for the HTML page (which is shown in the browser's title bar or in the page's tab)

  5. <body>: the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.

  6. <h1>: a large heading

  7. <p>: a paragraph

6
New cards

Can some HTML elements not have an end tag?

Usually they do but some do not. For example, <br> element which is an “Empty Element” so it does not have an end tag.

7
New cards

What is the purpose of web browsers (Chrome, Edge, Firefox, etc)?

To read HTML documents and display them correctly.

8
New cards
<p>What is the order of a HTML structure (see image)?</p><p></p><p></p>

What is the order of a HTML structure (see image)?

knowt flashcard image
9
New cards
<p>What do all the HTML formats mean?</p>

What do all the HTML formats mean?

knowt flashcard image
10
New cards
<p>What do these HTML Quotations mean?</p>

What do these HTML Quotations mean?

knowt flashcard image
11
New cards
12
New cards

What is Geocoding?

The process of converting addresses, place names, or other location-based data (like city names or postal codes) into geographic coordinates—latitude and longitude—which can be used to place markers or points on a map.

13
New cards

What does JSON stand for and what is it?

JavaScript Object Notation

It is a lightweight data-interchange format that is easy for humans to read and write, and easy for machines to parse and generate.

14
New cards

What is MapBox GL JS

15
New cards

What does div mean in HTML code

Division