Skip to main content

Posts

Showing posts from June, 2025

Photogrammetry

Photogrammetry is the science of taking measurements from photographs —especially to create maps, models, or 3D images of objects, land, or buildings. Imagine you take two pictures of a mountain from slightly different angles. Photogrammetry uses those photos to figure out the shape, size, and position of the mountain—just like our eyes do when we see in 3D! Concepts and Terminologies 1. Photograph A picture captured by a camera , either from the ground (terrestrial) or from above (aerial or drone). 2. Stereo Pair Two overlapping photos taken from different angles. When seen together, they help create a 3D effect —just like how two human eyes work. 3. Overlap To get a 3D model, photos must overlap each other: Forward overlap : Between two photos in a flight line (usually 60–70%) Side overlap : Between adjacent flight lines (usually 30–40%) 4. Scale The ratio of the photo size to real-world size. Example: A 1:10,000 scale photo means 1 cm on the photo...

Raster Data Structure

Raster Data Raster data is like a digital photo made up of small squares called cells or pixels . Each cell shows something about that spot — like how high it is (elevation), how hot it is (temperature), or what kind of land it is (forest, water, etc.). Think of it like a graph paper where each box is colored to show what's there. Key Points What's in the cell? Each cell stores information — for example, "water" or "forest." Where is the cell? The cell's location comes from its place in the grid (like row 3, column 5). We don't need to store its exact coordinates. How Do We Decide a Cell's Value? Sometimes, one cell covers more than one thing (like part forest and part water). To choose one value , we can: Center Point: Use whatever feature is in the middle. Most Area: Use the feature that takes up the most space in the cell. Most Important: Use the most important feature (like a road or well), even if it...

GIS Data Journey

Every GIS analyst or geographer knows that behind every meaningful map lies a powerful story — and it all begins with raw spatial data . 1️⃣ Raw Geospatial Data Unstructured, scattered, and often layered with noise — from satellite imagery, GPS points, sensor feeds, or field surveys. Yet, this spatial data is the raw geography of the real world, waiting to be explored and interpreted. 2️⃣ Data Cleaning This is where geographic precision begins. Removing positional errors, correcting attribute inaccuracies, aligning projections — clean spatial data ensures accuracy in mapping and analysis. 3️⃣ Data Structuring Maps don't just happen. Behind every cartographic product is structured geospatial information: attribute tables, spatial relationships (topology), and layers that form the backbone of GIS. This step turns raw data into meaningful geographic databases. 4️⃣ Spatial Visualization Now, we map. Using GIS tools, spatial patterns emerge — land use maps, ch...

Logical Data Model in GIS

In GIS, a logical data model defines how data is structured and interrelated—independent of how it is physically stored or implemented. It serves as a blueprint for designing databases, focusing on the organization of entities, their attributes, and relationships, without tying them to a specific database technology. Key Features Abstraction : The logical model operates at an abstract level, emphasizing the conceptual structure of data rather than the technical details of storage or implementation. Entity-Attribute Relationships : It identifies key entities (objects or concepts) and their attributes (properties), as well as the logical relationships between them. Business Rules : Business logic is embedded in the model to enforce rules, constraints, and conditions that ensure data consistency and accuracy. Technology Independence : The logical model is platform-agnostic—it is not tied to any specific database system or storage format. Visual Representat...