Austingisbox.hashnode.dev·Dec 3, 2024Imagery slicing in GIS: key technology to improve performance and efficiencyIn the digital era, the integration of geographic information systems (GIS) and virtual reality (VR) technology is leading a new technological revolution. Especially when processing large-scale geographical data, image slicing technology has become a...DiscussGIS
Austingisbox.hashnode.dev·Nov 27, 2024GISBox terrain tiling: efficient processing and display of large terrain dataTerrain tiling is a technique that divides large terrain datasets into smaller chunks (slices) for efficient transmission, rendering, and display. This technology is widely used in Geographic Information Systems (GIS), 3D geographic visualization, an...DiscussGIS
Austingisbox.hashnode.dev·Nov 26, 2024GISBox: GIS Image Tiling and Distribution for Professional Map ServicesGIS imagery tiling refers to the process of dividing large-scale geographic image data into multiple smaller pieces to facilitate more efficient storage, processing, and display. This technology is widely used in map services, Geographic Information ...Discussdata distribution
Charles De Barroscharlesdebarros.hashnode.dev·Apr 23, 2024Back to Basics - Python #03Better than sliced bread String slicing allows us to extract specific portions of a string by specifying a start and an end indices. We can even skip characters! How about that! For beginners, slicing things using a programming language can be a conf...DiscussBack to BasicsPython
CodingSplashcodingsplash.hashnode.dev·Sep 26, 2023Day10 - String SlicingLength of a String: We can find length of a string using len() function. Example 01: names = "Python, Java" print(len(names)) #output = 12 Example 02: fruit = "Mango" len1 = len(fruit) print("Mango is a", len1, "letter word.") #output: Mango is a 5 ...Discuss100DaysofPython2Articles1Week
Siddharth Rairaisid369.hashnode.dev·Oct 11, 2022Slicing in detail!As discussed in my previous article, slicing is extracting element/elements from the iterable based on the index/indices value. This article focuses more on different examples of slicing. Python follows the below syntax for slicing. variable_name[st...Discuss·42 readsPython
Siddharth Rairaisid369.hashnode.dev·Oct 10, 2022Indexing and Slicing in PythonIndexing is simply referring to an element present in an iterable based on its position. While slicing is extracting element/elements from the iterable based on the index/indices value. Let's follow the below example for better understanding. Suppose...Discuss·63 readsPython