Creating polygon elevation contours?Creating DEM from contours in QGIS?Creating contours from partial data...
What if somebody invests in my application?
The One-Electron Universe postulate is true - what simple change can I make to change the whole universe?
Proof of Lemma: Every integer can be written as a product of primes
Is there an Impartial Brexit Deal comparison site?
Can I create an upright 7-foot × 5-foot wall with the Minor Illusion spell?
Is there an wasy way to program in Tikz something like the one in the image?
What will be the benefits of Brexit?
Installing PowerShell on 32-bit Kali OS fails
How to check participants in at events?
No idea how to draw this using tikz
Should a half Jewish man be discouraged from marrying a Jewess?
Does "Dominei" mean something?
Meta programming: Declare a new struct on the fly
How to prevent YouTube from showing already watched videos?
Who must act to prevent Brexit on March 29th?
Superhero words!
Indicating multiple different modes of speech (fantasy language or telepathy)
What is the opposite of 'gravitas'?
Why is delta-v is the most useful quantity for planning space travel?
Can the electrostatic force be infinite in magnitude?
Adding empty element to declared container without declaring type of element
How can I raise concerns with a new DM about XP splitting?
Why does this part of the Space Shuttle launch pad seem to be floating in air?
What does the "3am" section means in manpages?
Creating polygon elevation contours?
Creating DEM from contours in QGIS?Creating contours from partial data setCreating contours for specific elevationsHow to define disturbed/clipped contours elevation for Volume Polygon?Can i combine DXF, Google Earth Models, Shape Files and Rasters in QGIS?Can we create topographical map of private land using GPS elevation data?GPS point elevation vs Contours layer elevationMaking DEM from contours without elevation data?How to merge USGS contour data from files into state?Exporting Contours to DWG with Elevation Data
I'd like to create polygon shapefiles to communicate elevation information on regional maps. I find these draped over a hill shade layer provide one of the best base maps.
I can tell some cartographers are creating these by hand by digitizing vector features over raster maps, but others are clearly created automatically.
Currently, I am using the following procedure:
- Convert contour lines from a single part to multipart
- Polygonize multipart contour lines
- Join contour data to new polygonized contours
- classify based on elevation
- simplify as required
I'm having a couple of problems creating these layers (in QGIS):
- Creating polygons from closed contour lines (not line segments) is fine, but if the line has a start and end point, it is not a feature with an area that I can create a polygon from.
- Contour interval data is dropped during conversion, so I have to join the original contour lines to the new polygons to include this information.
I think I have ways around all these problems, but I'd like a quick and easy way to do these conversions since it's a procedure I plan to do for many locations.
Does anyone know of a script that may expedite this process, or a guide demonstrating the preferred way to achieve this result?
qgis contour basemap
add a comment |
I'd like to create polygon shapefiles to communicate elevation information on regional maps. I find these draped over a hill shade layer provide one of the best base maps.
I can tell some cartographers are creating these by hand by digitizing vector features over raster maps, but others are clearly created automatically.
Currently, I am using the following procedure:
- Convert contour lines from a single part to multipart
- Polygonize multipart contour lines
- Join contour data to new polygonized contours
- classify based on elevation
- simplify as required
I'm having a couple of problems creating these layers (in QGIS):
- Creating polygons from closed contour lines (not line segments) is fine, but if the line has a start and end point, it is not a feature with an area that I can create a polygon from.
- Contour interval data is dropped during conversion, so I have to join the original contour lines to the new polygons to include this information.
I think I have ways around all these problems, but I'd like a quick and easy way to do these conversions since it's a procedure I plan to do for many locations.
Does anyone know of a script that may expedite this process, or a guide demonstrating the preferred way to achieve this result?
qgis contour basemap
2
You are asking for "better" which is a bit subjective. What specific problem (time, reliability, visual appearance of result) are you trying to improve? Also looks like your examples aren't rendering. If you are just looking for quick regular contours, its usual to take a DEM and have the GIS generate the contours as a layer.
– BradHards
Sep 29 '17 at 23:11
Have you tried gdaldem in color-relief mode?
– user30184
Sep 30 '17 at 7:43
Are you certain that you need polygons? Why not color the DEM using discreet color maps?
– underdark♦
Sep 30 '17 at 12:06
A DEM classified by elevation achieves a similar effect, but doesn't look nearly as good. The screenshot of example 1 in my original post is zoomed in to a small corner of a map. If this was done with a raster, the map would be an eyesore.
– ryanoceros
Oct 1 '17 at 21:21
add a comment |
I'd like to create polygon shapefiles to communicate elevation information on regional maps. I find these draped over a hill shade layer provide one of the best base maps.
I can tell some cartographers are creating these by hand by digitizing vector features over raster maps, but others are clearly created automatically.
Currently, I am using the following procedure:
- Convert contour lines from a single part to multipart
- Polygonize multipart contour lines
- Join contour data to new polygonized contours
- classify based on elevation
- simplify as required
I'm having a couple of problems creating these layers (in QGIS):
- Creating polygons from closed contour lines (not line segments) is fine, but if the line has a start and end point, it is not a feature with an area that I can create a polygon from.
- Contour interval data is dropped during conversion, so I have to join the original contour lines to the new polygons to include this information.
I think I have ways around all these problems, but I'd like a quick and easy way to do these conversions since it's a procedure I plan to do for many locations.
Does anyone know of a script that may expedite this process, or a guide demonstrating the preferred way to achieve this result?
qgis contour basemap
I'd like to create polygon shapefiles to communicate elevation information on regional maps. I find these draped over a hill shade layer provide one of the best base maps.
I can tell some cartographers are creating these by hand by digitizing vector features over raster maps, but others are clearly created automatically.
Currently, I am using the following procedure:
- Convert contour lines from a single part to multipart
- Polygonize multipart contour lines
- Join contour data to new polygonized contours
- classify based on elevation
- simplify as required
I'm having a couple of problems creating these layers (in QGIS):
- Creating polygons from closed contour lines (not line segments) is fine, but if the line has a start and end point, it is not a feature with an area that I can create a polygon from.
- Contour interval data is dropped during conversion, so I have to join the original contour lines to the new polygons to include this information.
I think I have ways around all these problems, but I'd like a quick and easy way to do these conversions since it's a procedure I plan to do for many locations.
Does anyone know of a script that may expedite this process, or a guide demonstrating the preferred way to achieve this result?
qgis contour basemap
qgis contour basemap
edited 8 mins ago
Taras
2,3112727
2,3112727
asked Sep 29 '17 at 22:41
ryanocerosryanoceros
262
262
2
You are asking for "better" which is a bit subjective. What specific problem (time, reliability, visual appearance of result) are you trying to improve? Also looks like your examples aren't rendering. If you are just looking for quick regular contours, its usual to take a DEM and have the GIS generate the contours as a layer.
– BradHards
Sep 29 '17 at 23:11
Have you tried gdaldem in color-relief mode?
– user30184
Sep 30 '17 at 7:43
Are you certain that you need polygons? Why not color the DEM using discreet color maps?
– underdark♦
Sep 30 '17 at 12:06
A DEM classified by elevation achieves a similar effect, but doesn't look nearly as good. The screenshot of example 1 in my original post is zoomed in to a small corner of a map. If this was done with a raster, the map would be an eyesore.
– ryanoceros
Oct 1 '17 at 21:21
add a comment |
2
You are asking for "better" which is a bit subjective. What specific problem (time, reliability, visual appearance of result) are you trying to improve? Also looks like your examples aren't rendering. If you are just looking for quick regular contours, its usual to take a DEM and have the GIS generate the contours as a layer.
– BradHards
Sep 29 '17 at 23:11
Have you tried gdaldem in color-relief mode?
– user30184
Sep 30 '17 at 7:43
Are you certain that you need polygons? Why not color the DEM using discreet color maps?
– underdark♦
Sep 30 '17 at 12:06
A DEM classified by elevation achieves a similar effect, but doesn't look nearly as good. The screenshot of example 1 in my original post is zoomed in to a small corner of a map. If this was done with a raster, the map would be an eyesore.
– ryanoceros
Oct 1 '17 at 21:21
2
2
You are asking for "better" which is a bit subjective. What specific problem (time, reliability, visual appearance of result) are you trying to improve? Also looks like your examples aren't rendering. If you are just looking for quick regular contours, its usual to take a DEM and have the GIS generate the contours as a layer.
– BradHards
Sep 29 '17 at 23:11
You are asking for "better" which is a bit subjective. What specific problem (time, reliability, visual appearance of result) are you trying to improve? Also looks like your examples aren't rendering. If you are just looking for quick regular contours, its usual to take a DEM and have the GIS generate the contours as a layer.
– BradHards
Sep 29 '17 at 23:11
Have you tried gdaldem in color-relief mode?
– user30184
Sep 30 '17 at 7:43
Have you tried gdaldem in color-relief mode?
– user30184
Sep 30 '17 at 7:43
Are you certain that you need polygons? Why not color the DEM using discreet color maps?
– underdark♦
Sep 30 '17 at 12:06
Are you certain that you need polygons? Why not color the DEM using discreet color maps?
– underdark♦
Sep 30 '17 at 12:06
A DEM classified by elevation achieves a similar effect, but doesn't look nearly as good. The screenshot of example 1 in my original post is zoomed in to a small corner of a map. If this was done with a raster, the map would be an eyesore.
– ryanoceros
Oct 1 '17 at 21:21
A DEM classified by elevation achieves a similar effect, but doesn't look nearly as good. The screenshot of example 1 in my original post is zoomed in to a small corner of a map. If this was done with a raster, the map would be an eyesore.
– ryanoceros
Oct 1 '17 at 21:21
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f257092%2fcreating-polygon-elevation-contours%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f257092%2fcreating-polygon-elevation-contours%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
You are asking for "better" which is a bit subjective. What specific problem (time, reliability, visual appearance of result) are you trying to improve? Also looks like your examples aren't rendering. If you are just looking for quick regular contours, its usual to take a DEM and have the GIS generate the contours as a layer.
– BradHards
Sep 29 '17 at 23:11
Have you tried gdaldem in color-relief mode?
– user30184
Sep 30 '17 at 7:43
Are you certain that you need polygons? Why not color the DEM using discreet color maps?
– underdark♦
Sep 30 '17 at 12:06
A DEM classified by elevation achieves a similar effect, but doesn't look nearly as good. The screenshot of example 1 in my original post is zoomed in to a small corner of a map. If this was done with a raster, the map would be an eyesore.
– ryanoceros
Oct 1 '17 at 21:21