POST
|
The video embeded and linked below is a very simple and quick overview of creating a simple 3D digital twin using ArcGIS CityEngine without needing to source any of your own data! https://youtu.be/-1Tb_0icvUg All this comes from Esri's own datasets and OpenStreetMap! If you want to see something specific let us know in the comments! Please like and subscribe to encourage us to do more content here. If you're looking for more, head over to our GD3D YouTube channel 🙂
... View more
2 weeks ago
|
1
|
0
|
145
|
POST
|
Sorry for the shameless plug here but we at GD3D (okay so just me) have created a YouTube channel which is posting short tutorial videos for ArcGIS CityEngine in addition to 3D related content. I am happy to take requests for those looking for specific help! https://www.youtube.com/@GD3Duk
... View more
3 weeks ago
|
1
|
0
|
107
|
POST
|
Hi I saw this and I think there is a way as I've worked on this before, but it depends on your initial shape (it won't work on all) based on what you've asked here you can use the information stored about edge length and combine it with a split recursion. Basically obtain the edge lengths as an array : edgeLength = scope.sx attr edgesNumber = geometry.nEdges attr egdeLengthArray = comp(e){border:edgeLength} Then in the rule do some kind of split recursion... Footprint--> SplitArray(1,edgesNumber) SplitArray(indx,mx)--> case indx ==mx : NIL else : split(z){~1:SplitArray(indx+2,mx)|edgeLengthArray[indx]: x} You will need to rotatescope to ensure the split works and you might also need to change the indx it starts on (depends on what 0 edge is). Hope this helps! Elliot
... View more
09-08-2022
02:09 AM
|
0
|
1
|
918
|
IDEA
|
You can change the font size though unless I misunderstood the question. I do it all the time for when conducting training sessions! Right-click on CGA editor window and select 'Preferences', then in dialog box click on the 'Colors and fonts' text at the bottom. In the Colors and Fonts settings click on the list text that says 'Text font' and then on the top-right of this dialog click edit, here you can change font (great for when you can't tell between 1 and l) as well as size. Then click Apply and Close.. What would be good though is to not have to jump through so many dialogs...
... View more
09-07-2022
09:01 AM
|
0
|
0
|
1761
|
POST
|
Thanks @TaishaFabricius for the quick response! It doesn't seem to be happening when the OSM server is down, I do check this page Platform Status - OpenStreetMap Wiki. Also we are getting this message when OSM data is not checked so this it should not happen? I wonder, does the Get Map Data tool check OSM regardless of whether the user has checked the OSM boxes? When I have received this message, I will go back (because the tool just closes rather than stays open) and un-check the OSM download and I will still get this gateway timeout message. Perhaps a friendlier message pop-up would help here as well? 🙂
... View more
05-31-2022
01:00 AM
|
1
|
0
|
2763
|
POST
|
Resolution in the interface is dealt with by adjusting size in the dialogue box for snapshots. Resolution for snapshots in python is achieved by using pixel width/height so it code might look like this: imgwidth = 1920 imgheight = 1080 view = ce.get3DViews()[0] view.snapshot(ce.toFSPath('images')+"/filepath/filename.png",imgwidth,imgheight) Hope this helps.
... View more
05-31-2022
12:52 AM
|
0
|
0
|
422
|
POST
|
I am also getting this issue on mine and recent trainee PCs... I have also been reached out to by a couple of Esri distributors who have had the same issue. It seems intermittent so if you keep trying it can work. I had thought the issue was the download for OSM data but unsure of exact reasons. Perhaps @TaishaFabricius can enquire with the CE team to see if the problem is
... View more
05-31-2022
12:33 AM
|
1
|
0
|
2772
|
IDEA
|
This is a really important feature request still, formalising and ensuring stable working over file syncs (onedrive/dropbox/box) is very important for consultancy work especially when teams are spread over different countries. As @DevinLavigne states for workspaces not just projects. Can someone from Esri give us an update on this @ThomasFuchs perhaps?
... View more
03-29-2022
08:42 AM
|
0
|
0
|
970
|
IDEA
|
I would like to see an easy way of submitting feedback and bug reports direct to the development team from inside CityEngine. Perhaps also having a way on seeing progress somewhere on bug fixes etc... so we can see whether issues will be address in the next release. I know there is the early adopter program but that only helps us provide feedback every so often.
... View more
03-29-2022
08:32 AM
|
1
|
2
|
1021
|
POST
|
Hi @KennethLindhardt1 it is possible to work collaboratively using CityEngine (i.e. a shared project), but I would recommend careful backup procedures! I've been using CityEngine and Onedrive/Teams/Sharepoint (all same thing ish really) successfully with a team. Top tips: do not all work on same CEJ file ever. Rules shared seem to work okay although the binary files created (that are often hidden) can get out of sync with multiple users. It is possible to work together in a shared CityEngine project but everyone must understand potential issues because it seems CityEngine has a few hidden files it likes to create. TBH the CityEngine development team could really improve usability of CityEngine for teams here as often larger projects are worked on collaboratively. Start small is my recommendation so create something like a 'rule library' (similar to Esri.lib) that people(or just yourself) can connect to and use, whilst still retaining their own CityEngine workspaces and project directories. If you drag and drop a directory into the Navigator from Explorer you get a choice of copying or linking the folder, I use link for dropbox/onedrive folders. Basically start with simple consistent file management 🙂 Perhaps @TaishaFabricius could provide an idea of the development roadmap for collaborative working in CityEngine? 🙂
... View more
03-29-2022
05:01 AM
|
0
|
0
|
634
|
POST
|
Hi, I'm not 100% sure but have you checked that your CGA is producing geometry with normals in the correct orientation? You may need to share that code on here.
... View more
07-26-2021
02:43 AM
|
0
|
0
|
730
|
POST
|
Hi! The underscore here is sort of an informal way many CityEngine professionals indicate that this is a CGA function rather than an attribute. Functions return a value and can be used multiple times, I for example use them often for metric calculations or to look up data. You can read more here. You'll find that CGA can be formatted in a variety of ways (unlike say python). What some of us CityEngine users have started to do is make it easier to understand code by adopting informal syntax. You'll see most code from Esri starts with what files it requires (rule or assets), then attribution, then the rules. It's good practice to format it like this, but it isn't necessary!
... View more
07-26-2021
02:36 AM
|
1
|
1
|
1731
|
IDEA
|
This would be of great help in a number of projects. I've cobbled together a style creator (for external assets) in python but having a formal way of doing all of this would be nice.
... View more
07-26-2021
02:17 AM
|
0
|
0
|
2476
|
POST
|
Hi, without exploring in detail this maybe a projection thing? If based on existing GIS data, I sometimes have better results ensuring all data is in a WGS Zone projection. All the best (and I've replied to your comment on my blog!) Elliot
... View more
10-30-2019
09:25 AM
|
0
|
1
|
924
|
POST
|
Hi Andrew, I'm not familiar with the UK Data Loader but if it brings the OS data into a FGDB as feature classes and I presume these will be polygons with attribution then it should be very easy to import into CityEngine. Often OS height data is supplied separately as some a table so you may have to join by toid to buildings before importing into CityEngine. Once imported into a CityEngine scene it's relatively easy to write a rule to extrude by height. The trick is to avoid very tall shed and garage polygons Feel free to reach out to me, if you need more guidance, I work with OS MasterMap data a lot. Thanks Elliot
... View more
10-30-2019
09:18 AM
|
0
|
0
|
708
|
Title | Kudos | Posted |
---|---|---|
1 | 2 weeks ago | |
1 | 3 weeks ago | |
1 | 05-31-2022 01:00 AM | |
1 | 05-31-2022 12:33 AM | |
1 | 03-29-2022 08:32 AM |
Online Status |
Offline
|
Date Last Visited |
Friday
|