Re: [Qgis-user] Best Free high resolution DEM for Nepal

2024-06-27 Per discussione Alexei Schwab via QGIS-User
Hi Bibek, 

GPXZ (https://www.gpxz.io/) has good documentation of the best available free 
DEM for different countries and regions.

They use 30m Copernicus DEM for Nepal, you could also use 30m NASA SRTM as an 
alternative. 

Regards, 

Alexei 

On Thu, 27 Jun 2024, at 12:55, Bibek Rana via QGIS-User wrote:
> Hello Team,
> Can you please inform me about the best free downloadable latest high 
> resolution DEM for the country Nepal?
> 
> Regards,
> Bibek
> ___
> QGIS-User mailing list
> QGIS-User@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
> 
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] geojson

2024-04-10 Per discussione Alexei Schwab via QGIS-User
Hi Manuel,

Can you give some more info about your data and how you are trying to use it? 
If you can share a link to a copy or sample of the data, even better.

>From your sample it looks like you're maybe trying to make a webmap - where 
>does QGIS fit in? Are you using the qgis2web plugin?

The more info you can share about your data and workflow the more likely it is 
someone will be able to help.

Regards,

Alexei

On Wed, 10 Apr 2024, at 08:27, Manuel Fernandez wrote:
> Hello Alexei.
> My problem is that I can't put the street name tag. My file is a geojson. And 
> the field es name. I have trid :
> 
> var totcmnosLayer = L.geoJson(null);
> $.getJSON("data/tot_cmnos.geojson", function(data){
> totcmnosLayer.addData(data);
> onEachFeature: function(feature, layer) {
> if (feature.properties && feature.properties.DENOMINACI1) {
> layer.bindPopup(feature.properties.DENOMINACI1);
> }
> }
> or layer.bindLabel, bindTooltip 
> But I doesn't work. :(
> Thanks a lot
> 
> 
> 
> El mié, 10 abr 2024 a las 9:16, Alexei Schwab via QGIS-User 
> () escribió:
>> __
>> Hi Manuel,
>> 
>> You can change the position of the label in the layer label settings: 
>> https://docs.qgis.org/3.34/en/docs/user_manual/style_library/label_settings.html#placement-for-line-layers
>> 
>> Under the Placement tab > General settings section, you can change the text 
>> position from Above line to On line.
>> 
>> You might want to add a buffer or backgroiund to the text to keep it legible 
>> over the line.
>> 
>> Regards,
>> 
>> Alexei
>> 
>> On Tue, 9 Apr 2024, at 15:50, Manuel Fernandez via QGIS-User wrote:
>>> I have a streets layer in geojson. Is it possible to put the name tag on 
>>> the line? Not in a popup.
>>> Thanks a lot
>>> ___
>>> QGIS-User mailing list
>>> QGIS-User@lists.osgeo.org
>>> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
>>> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
>>> 
>> 
>> ___
>> QGIS-User mailing list
>> QGIS-User@lists.osgeo.org
>> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
>> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] geojson

2024-04-10 Per discussione Alexei Schwab via QGIS-User
Hi Manuel, 

You can change the position of the label in the layer label settings: 
https://docs.qgis.org/3.34/en/docs/user_manual/style_library/label_settings.html#placement-for-line-layers

Under the Placement tab > General settings section, you can change the text 
position from Above line to On line. 

You might want to add a buffer or backgroiund to the text to keep it legible 
over the line. 

Regards, 

Alexei

On Tue, 9 Apr 2024, at 15:50, Manuel Fernandez via QGIS-User wrote:
> I have a streets layer in geojson. Is it possible to put the name tag on the 
> line? Not in a popup.
> Thanks a lot
> ___
> QGIS-User mailing list
> QGIS-User@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
> 
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Extracting colours from a vector file

2024-04-09 Per discussione Alexei Schwab via QGIS-User
Hi Grant,

Not sure if this is what you mean but if you want to get the colour of a 
feature's symbol you can use @symbol_color in the expression builder.

So adding a "colour" column to your attributes and using field calculator to 
set the expression to @symbol_color will give you the colour for each feature. 

It will give you a hex colour code. 

If you need the RGB values, you can use  the expression:

colour_part(@symbol_color, 'red'), colour_part(@symbol_color, 'green'), 
colour_part(@symbol_color, 'blue')

Regards,

Alexei

On Tue, 9 Apr 2024, at 08:54, Grant Boxer via QGIS-User wrote:
> I would like to extract colours from a rule-based rendered shp file with the 
> aim of applying these colours to a MapInfo tab file. I have tried the rgb 
> function but that doesn’t seem to work. Anyone have any suggestions to 
> extract the red, green and blue values?
> Cheers Grant, Perth WA
>  
> ___
> QGIS-User mailing list
> QGIS-User@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
> 
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Call for co-maintainers of the QGIS hub

2023-04-04 Per discussione Alexei Schwab via QGIS-User
Hi Tim, 

Could you say a bit more about what reviewing items involves?

Alexei 

On Tue, 4 Apr 2023, at 16:38, Tim Sutton via QGIS-User wrote:
> Dear QGIS enthusiasts
> 
> As some of you may be aware, we have been developing a space for users to 
> share their QML styles, processing models, 3D objects, etc.
> 
> You can find already a rich collection of great resources here:
> 
> https://plugins.qgis.org/ (open the 'Hub' menu up top).
> 
> It would be really great to have co-reviewers help me to deal with the new 
> submissions as they come in. If you are interested to help me, please let me 
> know and I will give you the access needed (I'll need your OSGEO id).
> 
> Thanks!
> 
> Regards
> 
> Tim
> 
> --
> --
> 
> Tim Sutton
> Kartoza Co-Founder
> Visit http://kartoza.com to find out about open source:
>  * Desktop GIS programming services
>  * Geospatial web development
> * GIS Training
> * Consulting Services
> 
> Tim is a member of the QGIS Project Steering Committee
> ---
> ___
> QGIS-User mailing list
> QGIS-User@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
> 
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] What QGIS plugin development should I work on this year?

2023-02-01 Per discussione Alexei Schwab via QGIS-User
Mike, have you looked into Map Themes?
https://docs.qgis.org/3.22/en/docs/user_manual/introduction/general_tools.html#configuring-map-themes

Sounds like it might help with your problem. 

Alexei 

On Wed, 1 Feb 2023, at 13:23, Mike Flannigan via QGIS-User wrote:
> 
> My biggest problem with qgis is handling of layers and groups.
> Copying styles from one layer to another (or 10 other layers)
> should be easier.  Unchecking (hiding) 20 layers at once
> cannot be done by me right now without grouping them.  There
> are likely many other examples I can't think of right now.
> 
> I see quite a few plugins related to layers, and to be honest
> I have not tried them all out.  But so far I have not found the
> layer handler I want.
> 
> 
> Mike
> 
> 
> On 1/26/23 14:00, qgis-user-requ...@lists.osgeo.org wrote:
> > Hi QGIS users,
> >
> > I am looking for ideas for what QGIS development I should be working on
> > this year. My plugin development over the years has focused on capabilities
> > that were missing at the time or algorithms that made QGIS user's lives
> > easier. Here are the plugins I've developed so far.
> >
> > https://plugins.qgis.org/plugins/author/C%2520Hamilton/
> >
> > I am interested in algorithms that may be in commercial software but not in
> > QGIS that people need. I am also interested in different ways to visualize
> > and analyze data. Last year I released the Density Analysis plugin
> > . It added additional
> > density analysis algorithms including a fast H3 histogram of an area. I
> > never got any feedback on the plugin so I don't know whether it is
> > useful or not to users, but it has had 11,608 downloads since last June. I
> > always appreciate feedback as it is what encourages me to continue
> > development.
> >
> > I have been debating on updating the D3 Data Visualization plugin
> >   to use plotly to create the
> > graph and perhaps add additional graphs. That was one of my early plugins
> > where I created my own D3 graph of the data. It could probably be done
> > better.
> >
> > Are there any algorithms that you would like to have developed? It may be
> > that QGIS is getting sufficiently advanced that there is not much that is
> > really needed any more, but if you have any ideas I would appreciate them.
> > Anything I work on needs to benefit a sizable number of users. It can't be
> > too specific. It also needs to be constrained enough that I can complete in
> > a reasonable amount of time.
> >
> > If you have any ideas for improving my existing plugins that could be an
> > option as well.
> >
> > By the way is there a better forum than this qgis-user group to reach out
> > to QGIS users or is this the best way?
> >
> > Thanks for your input!
> >
> > Calvin
> 
> ___
> QGIS-User mailing list
> QGIS-User@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
> 
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Two 'Random Points in Polygons' tools?

2023-01-19 Per discussione Alexei Schwab via QGIS-User
Hi QGIS list,

In my install of QGIS 3.28.1 I have two tools in Vector > Research Tools menu: 
* Random Points in Polygons
* Random Points inside Polygons 

See screenshot here: https://imgur.com/a/FyuPc2p

To me they look very similar but I was wondering if anyone on the list could 
clarify if they do anything different?

Alexei ___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user