Reyalino
Members-
Posts
92 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Reyalino
-
Convert CRS from ESRI:102673 to EPSG:4326
Reyalino replied to Zach's topic in Analysis and Geoprocessing
using geopandas reprojection can be done by this gdf.to_crs (epsg:4326) or if you have reference crs from another geodataframe then gdf.to_crs(ref_gdf.crs) -
will it possible for you to illustrate it on a pictures?
-
Yes, I want to add a point in existing Postgres table but via qgis (digitize it) by adding exact coordinates (XY) values. In ArcGIS, I can do that by using Absolute XY (F6). I know how to do it in qgis by using a plugin name LatLon Tools. The issues is those latlon tools cannot be used to add coordinate when when the data is called from the Postgres database.
-
I had never process lidar data, but worth to try QGIS as it is also provide LAStools, similarly to arcgis lastool. It also provide las data conversion to shp and vice versa. You might be want to check this site for references: lidar
-
Look forward to play mario and legend of zelda on those device 😁
-
SELECT *, st_buffer(geom,50) as geom INTO gis_osm_pois_buf FROM gis_osm_pois; add * in your query to include all your fields. As your new geom field is came from the st_buffer named it a geom/geometry/the_geom or as you prefer.
-
This may help you: link
-
woww!!! loved it..thanks @rahmansunbeam
-
This is the real challenges for Huawei how to convince their user to use this new operating system. But nothing is impossible...
-
nice share Bro!! loved with the improvement of this PostgreSQL
-
Inspired by Nokia Communicator
-
Thanks, @Lurker @dexgeo great introduction for a newbie like me. I have been using the trial version of dronedeploy. Not sure why the drone signal is not stable, as I never let the drone fly autonomously so I am bit nervous when the drone is out of my control.
-
I am completely a beginner on Drone. I used it only for capturing video (aerial videography) which in my opinion bit useless for surveying activities. I would love to hear any suggestion on using drone for surveying and could anyone suggest any opensource drone app for surveying? I am using DJI Inspire-2
-
DEMNas - Seamless Digital Elevation Model (DEM) dan Batimetri Nasional
Reyalino replied to Lurker's topic in Indonesian
Gercepp Om...aje gile 140 Gb tapi lebih baik begitu Om jaga-jaga -
I am successfully open the file via ArcGIS, but it could be also the shapefile.
-
If I cut it into small pieces definitely it works. I successfully added it via PostGIS. Let's see if in the new QGIS it works!! anyway, thanks mate!!
-
Dear Fellows, I am trying to add point feature data into QGIS (2.18), the shapefile itself has size around 300 Mb. Sadly QGIS said: "XXXX is not valid or recognize data source", I have yet trying to use the new version of QGIS. Anyone had a similar experience?
-
I still don't get the receipt on putting everything at the same page on ppt. Sometimes it's frustrating with map tables and charts. Leaflet really helps me with offline map on ppt
-
Dear All gisarea Designing a map which gave good interpretation is quite challenging in my opinion, and now I am facing new other challenges. Combining a map and power point :-D it sound easy for many people but not with me. When I am googling I found this interesting blog: geodharma "Quick & Beautiful Maps: Connecting ArcMap & PowerPoint…?" I would be happy to hear from all of you regarding your experiences in presenting map using power point or any other platforms you used.
-
The price could be different in some countries. Not sure if that price is the cheapest one? with all those features and self-learning packaged for me, it's affordable
-
applDear All, Anyone here uses arcgis for personal use? The price in Indonesia is IDR 549.000 around (USD 40)/year (does not include applicable sales Tax or VAT), the price includes as quotes. I am planning to buy, but I would like to hear from any of you who already used it. Thanks in advance.
-
I am working with "layout.mxd". I have tried on another desktop and it works. But not in my desktop.
-
thanks for your fast response yousef233. I have put the dataframelist before the loop it works but after the second trial it only added 1 single feature. I have made several trials by run the code via python window and jupyter notebook. I am just wondering, why the code sometime running properly but not in the other day.
-
Hi All, Using arcpy mapping module I am trying to add multiple shapefiles import arcpy arcpy.env.workspace = "D:/Directory/Map" mxd = arcpy.mapping.MapDocument("D:/Directory/Map/layout.mxd") listFC = arcpy.ListFeatureClasses() for fc in listFC: df = arcpy.mapping.ListDataFrames(mxd)[0] layer = arcpy.mapping.Layer(fc) arcpy.mapping.AddLayer(df,layer,"TOP") When I run those script via jupyter notebook only 1 shapefile is added to the arcgis. But when I run it through Python Window on ArcGIS it adds all the shapefiles but also sometimes only add 1 shapefile. Not sure why this happen. Could someone give me a clue? thanks ( I am using ArcGIS 10.5 Not the original :-D) regards